From 0d81cc96b3c04dd00c9bd2fa54115abf5230dd01 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Mon, 14 Oct 2024 18:01:12 +0200 Subject: [PATCH] chore: :arrow_up: Upgrade Bun to 1.1.30 --- Dockerfile | 2 +- packages/ui/package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6e14449..50e03a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ COPY . /app COPY --from=install /temp/dev/node_modules /app/node_modules RUN cd /app && bun run build --preset node-server -FROM oven/bun:1.1.27-alpine AS final +FROM oven/bun:1.1.30-alpine AS final COPY --from=builder /app/.output/ /app diff --git a/packages/ui/package.json b/packages/ui/package.json index a180e86..55667a1 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -35,7 +35,7 @@ "categories": ["Other"], "type": "module", "engines": { - "bun": ">=1.1.27" + "bun": ">=1.1.30" }, "exports": { ".": { @@ -48,5 +48,5 @@ } }, "keywords": ["typescript", "vue", "tailwindcss"], - "packageManager": "bun@1.1.27" + "packageManager": "bun@1.1.30" }