Skip to content

Commit

Permalink
🆙bump: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Marukome0743 committed Dec 20, 2024
1 parent 3ecb02d commit 0164b42
Show file tree
Hide file tree
Showing 11 changed files with 319 additions and 11 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,3 @@ Dockerfile text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,t
LICENSE text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2

.vscode/launch.json linguist-generated
*.lockb binary diff=lockb
2 changes: 1 addition & 1 deletion .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- any-glob-to-any-file: '*config.*'
📦dependencies:
- changed-files:
- any-glob-to-any-file: ['bun.lockb', 'package.json']
- any-glob-to-any-file: ['bun.lock', 'package.json']
docker:
- changed-files:
- any-glob-to-any-file: ['.dockerignore', 'Dockerfile']
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup-cashes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- "public/**"
- "test/**"
- ".dockerignore"
- "bun.lockb"
- "bun.lock"
- "Dockerfile"
- "package.json"
- "*config.*"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- "public/**"
- "test/**"
- ".dockerignore"
- "bun.lockb"
- "bun.lock"
- "Dockerfile"
- "package.json"
- "*config.*"
Expand All @@ -22,7 +22,7 @@ on:
- "public/**"
- "test/**"
- ".dockerignore"
- "bun.lockb"
- "bun.lock"
- "Dockerfile"
- "package.json"
- "*config.*"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lambda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- "public/**"
- "test/**"
- ".dockerignore"
- "bun.lockb"
- "bun.lock"
- "Dockerfile"
- "package.json"
- "*config.*"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- "public/**"
- "test/**"
- ".dockerignore"
- "bun.lockb"
- "bun.lock"
- "Dockerfile"
- "package.json"
- "*config.*"
Expand All @@ -21,7 +21,7 @@ on:
- "public/**"
- "test/**"
- ".dockerignore"
- "bun.lockb"
- "bun.lock"
- "Dockerfile"
- "package.json"
- "*config.*"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- "public/**"
- "test/**"
- ".dockerignore"
- "bun.lockb"
- "bun.lock"
- "Dockerfile"
- "package.json"
- "*config.*"
Expand All @@ -21,7 +21,7 @@ on:
- "public/**"
- "test/**"
- ".dockerignore"
- "bun.lockb"
- "bun.lock"
- "Dockerfile"
- "package.json"
- "*config.*"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM oven/bun:canary AS builder
WORKDIR /usr/src/app
RUN --mount=type=bind,source=package.json,target=package.json \
--mount=type=bind,source=bun.lockb,target=bun.lockb \
--mount=type=bind,source=bun.lock,target=bun.lock \
--mount=type=cache,target=/root/.bun \
bun i --frozen-lockfile
COPY . .
Expand Down
306 changes: 306 additions & 0 deletions bun.lock

Large diffs are not rendered by default.

Binary file removed bun.lockb
Binary file not shown.
3 changes: 3 additions & 0 deletions bunfig.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[install]
saveTextLockfile = true

[test]
preload = "./happydom.tsx"

0 comments on commit 0164b42

Please sign in to comment.