Skip to content

Commit

Permalink
rework deps
Browse files Browse the repository at this point in the history
  • Loading branch information
inetol committed Nov 19, 2024
1 parent bf0cfda commit 785c44c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ jobs:
with:
persist-credentials: false

- name: Setup production dependencies
run: bun install --frozen-lockfile --production
- name: Setup dependencies
run: bun install --frozen-lockfile

- name: Build artifact
run: |
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,11 @@ jobs:
with:
persist-credentials: false

- name: Setup production dependencies
run: bun install --frozen-lockfile --production
- name: Setup dependencies
run: bun install --frozen-lockfile

- name: Run build:server
run: bun run build:server

- name: Setup development dependencies
run: bun install --frozen-lockfile

- name: Run lint
run: bun run lint
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ WORKDIR /build/

COPY . ./

RUN bun install --frozen-lockfile --production && \
RUN bun install --frozen-lockfile && \
bun run build:standalone

FROM cgr.dev/chainguard/cc-dynamic:latest
Expand Down
Binary file modified bun.lockb
Binary file not shown.
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,18 @@
},
"dependencies": {
"@hono/swagger-ui": "~0.4.1",
"@hono/zod-openapi": "~0.17.0",
"@types/bun": "~1.1.13",
"@types/node": "~22.9.0",
"@hono/zod-openapi": "~0.18.0",
"env-var": "~7.5.0",
"hono": "~4.6.9",
"typescript": "~5.6.3"
"hono": "~4.6.10"
},
"devDependencies": {
"@biomejs/biome": "~1.9.4",
"lefthook": "~1.8.2",
"sort-package-json": "~2.10.1"
"@types/bun": "^1.1.13",
"lefthook": "~1.8.4",
"sort-package-json": "~2.11.0"
},
"peerDependencies": {
"typescript": "5.5.4"
},
"trustedDependencies": [
"@biomejs/biome",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true,
"noUncheckedSideEffectImports": true,
//"noUncheckedSideEffectImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"verbatimModuleSyntax": true,
Expand Down

0 comments on commit 785c44c

Please sign in to comment.