chore: ⬆️ Upgrade Bun to 1.1.27

This commit is contained in:
Jesse Wierzbinski 2024-09-14 13:19:18 +02:00
parent 35dcf4d10e
commit 84f2d8573e
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ COPY . /app
COPY --from=install /temp/dev/node_modules /app/node_modules COPY --from=install /temp/dev/node_modules /app/node_modules
RUN cd /app && bun run build --preset node-server RUN cd /app && bun run build --preset node-server
FROM oven/bun:1.1.24-alpine AS final FROM oven/bun:1.1.27-alpine AS final
COPY --from=builder /app/.output/ /app COPY --from=builder /app/.output/ /app

View file

@ -35,7 +35,7 @@
"categories": ["Other"], "categories": ["Other"],
"type": "module", "type": "module",
"engines": { "engines": {
"bun": ">=1.1.20" "bun": ">=1.1.27"
}, },
"exports": { "exports": {
".": { ".": {
@ -48,5 +48,5 @@
} }
}, },
"keywords": ["typescript", "vue", "tailwindcss"], "keywords": ["typescript", "vue", "tailwindcss"],
"packageManager": "bun@1.1.20" "packageManager": "bun@1.1.27"
} }