Skip to content

Commit d936d2e

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/repost
2 parents c143fc8 + 92199d0 commit d936d2e

File tree

21 files changed

+487
-430
lines changed

21 files changed

+487
-430
lines changed

.github/workflows/frontend-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup Bun
3636
uses: oven-sh/setup-bun@v2
3737
with:
38-
bun-version: 1.3.2
38+
bun-version: 1.3.6
3939

4040
- name: Install dependencies
4141
run: bun install

.github/workflows/frontend-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Setup Bun
3939
uses: oven-sh/setup-bun@v2
4040
with:
41-
bun-version: 1.3.2
41+
bun-version: 1.3.6
4242

4343
- name: Install dependencies
4444
run: bun install

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Bun
1818
uses: oven-sh/setup-bun@v2
1919
with:
20-
bun-version: 1.3.2
20+
bun-version: 1.3.6
2121

2222
- name: Install dependencies
2323
run: bun install

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Bun
2222
uses: oven-sh/setup-bun@v2
2323
with:
24-
bun-version: 1.3.2
24+
bun-version: 1.3.6
2525

2626
- name: Set up Node.js for NPM publish
2727
uses: actions/setup-node@v4

.github/workflows/smoke-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Bun
1818
uses: oven-sh/setup-bun@v2
1919
with:
20-
bun-version: 1.3.2
20+
bun-version: 1.3.6
2121

2222
- name: Install dependencies
2323
run: bun install

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Setup Bun
3535
uses: oven-sh/setup-bun@v2
3636
with:
37-
bun-version: 1.3.2
37+
bun-version: 1.3.6
3838

3939
- name: Install dependencies
4040
run: bun install

.github/workflows/testnet-api-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Setup Bun
3838
uses: oven-sh/setup-bun@v2
3939
with:
40-
bun-version: 1.3.2
40+
bun-version: 1.3.6
4141

4242
- name: Create Directory
4343
run: mkdir -p ./packages/api-main/data/postgres_data

bun.lock

Lines changed: 304 additions & 296 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@
2020
"retypeapp": "^3.11.0"
2121
},
2222
"devDependencies": {
23-
"@antfu/eslint-config": "^6.0.0",
24-
"@playwright/test": "^1.56.1",
23+
"@antfu/eslint-config": "^6.7.3",
24+
"@playwright/test": "^1.57.0",
2525
"@types/deno": "^2.5.0",
26-
"@types/node": "^22.18.10",
27-
"eslint": "^9.37.0",
28-
"eslint-plugin-format": "^1.0.2",
26+
"@types/node": "^22.19.3",
27+
"eslint": "^9.39.2",
28+
"eslint-plugin-format": "^1.2.0",
2929
"husky": "^9.1.7",
30-
"lint-staged": "^16.2.6",
31-
"tailwindcss": "^4.1.14",
30+
"lint-staged": "^16.2.7",
31+
"tailwindcss": "^4.1.18",
3232
"typescript": "^5.9.3"
3333
},
3434
"lint-staged": {
3535
"*.{js,jsx,ts,tsx,mjs,cjs,vue}": "eslint --fix",
3636
"*.{json,yml,yaml,md}": "eslint --fix"
3737
},
38-
"packageManager": "bun@1.3.2"
38+
"packageManager": "bun@1.3.6"
3939
}

packages/api-main/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Dependencies installation
2-
FROM oven/bun:1.3.2-slim AS deps
2+
FROM oven/bun:1.3.6-slim AS deps
33
WORKDIR /app
44

55
# Copy all monorepo files, excluding the ones ignored by dockerignore.
@@ -11,7 +11,7 @@ RUN --mount=type=cache,id=bun-cache,target=/root/.bun/install/cache \
1111
bun install --frozen-lockfile
1212

1313
# Stage 2: Runtime
14-
FROM oven/bun:1.3.2-slim AS runtime
14+
FROM oven/bun:1.3.6-slim AS runtime
1515
WORKDIR /app
1616

1717
# Copy installed dependencies from deps stage (only root node_modules, bun hoists workspace deps)

0 commit comments

Comments
 (0)