Skip to content

Commit

Permalink
Update package.json dependencies and package manager version
Browse files Browse the repository at this point in the history
  • Loading branch information
robertying committed Apr 26, 2024
1 parent e41ab0d commit d328cd6
Show file tree
Hide file tree
Showing 4 changed files with 2,466 additions and 2,005 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
- uses: pnpm/action-setup@v3
with:
version: 8
version: 9
- id: get-store-path
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM node:20-alpine AS base
FROM node:22-alpine AS base

FROM base AS deps
WORKDIR /app

RUN corepack enable && corepack prepare pnpm@latest --activate
RUN corepack install
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile

Expand All @@ -14,7 +14,7 @@ COPY --from=deps /app/node_modules ./node_modules
COPY . .

ENV NEXT_TELEMETRY_DISABLED 1
RUN corepack enable && corepack prepare pnpm@latest --activate
RUN corepack install
RUN pnpm build

FROM base AS runner
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "visualization",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@8.15.6+sha256.01c01eeb990e379b31ef19c03e9d06a14afa5250b82e81303f88721c99ff2e6f",
"packageManager": "pnpm@9.0.6+sha512.f6d863130973207cb7a336d6b439a242a26ac8068077df530d6a86069419853dc1ffe64029ec594a9c505a3a410d19643c870aba6776330f5cfddcf10a9c1617",
"scripts": {
"dev": "next dev",
"build": "next build",
Expand All @@ -17,23 +17,23 @@
"@types/d3": "7.4.3",
"@types/lodash-es": "4.17.12",
"@types/node": "20.12.7",
"@types/react": "18.2.77",
"@types/react-dom": "18.2.25",
"@types/react": "18.3.0",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.19",
"csv-parse": "5.5.5",
"d3": "7.9.0",
"dayjs": "1.11.10",
"eslint": "8.57.0",
"eslint-config-next": "14.2.1",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.1.0",
"fs-extra": "11.2.0",
"fuse.js": "7.0.0",
"lodash-es": "4.17.21",
"next": "14.2.1",
"next": "14.2.3",
"postcss": "8.4.38",
"prettier": "3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react": "18.3.0",
"react-dom": "18.3.0",
"react-popper": "2.3.0",
"tailwindcss": "3.4.3",
"typescript": "5.4.5"
Expand Down
Loading

0 comments on commit d328cd6

Please sign in to comment.