Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ permissions:
contents: read

env:
NODE_VERSION: 24.8.0
YARN_VERSION: 4.10.2
NODE_VERSION: 24.11.0
YARN_VERSION: 4.12.0

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ permissions:
contents: read

env:
NODE_VERSION: 24.8.0
YARN_VERSION: 4.10.2
NODE_VERSION: 24.11.0
YARN_VERSION: 4.12.0

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
"formatter": {
"enabled": true,
"formatWithErrors": false,
Expand Down
12 changes: 6 additions & 6 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM node:24.8.0-bookworm-slim AS builder
FROM node:24.11.0-bookworm-slim AS builder

RUN corepack enable && \
corepack prepare yarn@4.10.2 --activate && \
yarn set version 4.10.2
corepack prepare yarn@4.12.0 --activate && \
yarn set version 4.12.0

RUN apt-get update && apt-get install -y \
python3 \
Expand Down Expand Up @@ -36,7 +36,7 @@ RUN mkdir -p /tmp/packages && \
find /tmp/packages/$pkg_name -type d -empty -delete; \
done

FROM node:24.8.0-bookworm-slim AS production
FROM node:24.11.0-bookworm-slim AS production

ENV NODE_ENV=production
ENV NODE_OPTIONS="\
Expand All @@ -46,8 +46,8 @@ ENV NODE_OPTIONS="\
--zero-fill-buffers"

RUN corepack enable && \
corepack prepare yarn@4.10.2 --activate && \
yarn set version 4.10.2
corepack prepare yarn@4.12.0 --activate && \
yarn set version 4.12.0

RUN apt-get update && \
apt-get install -y --no-install-recommends \
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"layer2"
],
"engines": {
"node": ">=22.0.0",
"node": ">=24.0.0",
"yarn": ">=4.0.0"
},
"workspaces": [
Expand All @@ -38,15 +38,15 @@
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/node": "^24.5.2",
"@biomejs/biome": "2.3.8",
"@types/node": "^25.0.1",
"@vitest/coverage-v8": "3.2.4",
"typescript": "^5.9.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"packageManager": "yarn@4.10.2",
"packageManager": "yarn@4.12.0",
"volta": {
"node": "24.8.0",
"yarn": "4.10.2"
"node": "24.11.0",
"yarn": "4.12.0"
}
}
14 changes: 7 additions & 7 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"name": "api",
"version": "1.0.0",
"dependencies": {
"@hono/node-server": "^1.19.4",
"@hono/node-server": "^1.19.7",
"@intmax2-explorer-api/shared": "workspace:*",
"axios": "^1.12.2",
"hono": "^4.9.8",
"axios": "^1.13.2",
"hono": "^4.10.8",
"hono-rate-limiter": "^0.4.2",
"ioredis": "^5.7.0",
"ioredis": "^5.8.2",
"node-cache": "^5.1.2",
"viem": "^2.37.8"
"viem": "^2.41.2"
},
"scripts": {
"start": "node dist/index.js",
Expand All @@ -19,8 +19,8 @@
"test": "vitest"
},
"devDependencies": {
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}
10 changes: 5 additions & 5 deletions packages/finalizer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "finalizer",
"version": "1.0.0",
"dependencies": {
"@google-cloud/firestore": "^7.11.5",
"@google-cloud/firestore": "^8.0.0",
"@intmax2-explorer-api/shared": "workspace:*",
"abitype": "^1.1.1",
"viem": "^2.37.8"
"abitype": "^1.2.2",
"viem": "^2.41.2"
},
"scripts": {
"start": "node dist/index.js",
Expand All @@ -14,8 +14,8 @@
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}
20 changes: 10 additions & 10 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@
"version": "1.0.0",
"main": "dist/index.js",
"dependencies": {
"@google-cloud/firestore": "^7.11.5",
"abitype": "^1.1.1",
"axios": "^1.12.2",
"envalid": "^8.1.0",
"hono": "^4.9.8",
"pino": "^9.11.0",
"pino-pretty": "^13.1.1",
"viem": "^2.37.8",
"zod": "4.1.11"
"@google-cloud/firestore": "^8.0.0",
"abitype": "^1.2.2",
"axios": "^1.13.2",
"envalid": "^8.1.1",
"hono": "^4.10.8",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"viem": "^2.41.2",
"zod": "4.1.13"
},
"scripts": {
"build": "rm -rf dist tsconfig.tsbuildinfo && tsc",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"typescript": "^5.9.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}
10 changes: 5 additions & 5 deletions packages/watcher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"name": "watcher",
"version": "1.0.0",
"dependencies": {
"@google-cloud/firestore": "^7.11.5",
"@google-cloud/firestore": "^8.0.0",
"@intmax2-explorer-api/shared": "workspace:*",
"abitype": "^1.1.1",
"viem": "^2.37.8"
"abitype": "^1.2.2",
"viem": "^2.41.2"
},
"scripts": {
"start": "node dist/index.js",
Expand All @@ -14,8 +14,8 @@
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}
2 changes: 1 addition & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineConfig } from "vitest/config";

export default defineConfig({
test: {
workspace: ["packages/*"],
projects: ["packages/*"],
coverage: {
reporter: ["text", "lcov", "html"],
reportsDirectory: "./coverage",
Expand Down
Loading
Loading