Skip to content

Commit

Permalink
Upgrade to pnpm v9 and update package deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbrianevans committed May 18, 2024
1 parent c8752d6 commit 6325161
Show file tree
Hide file tree
Showing 10 changed files with 2,380 additions and 1,584 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
with:
version: 7
version: 9.1.1
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lighthouse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
with:
version: 7
version: 9.1.1
- uses: actions/setup-node@v3
with:
node-version: "18"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on: # rebuild any PRs and any branch changes
jobs:
server-component:
runs-on: ubuntu-latest
container: node:18
container: node:19
services:
loki:
# todo: ideally, there would be some way of outputting all logs to the github action summary
Expand All @@ -37,11 +37,11 @@ jobs:
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
with:
version: 7
version: 9.1.1
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
node-version: "19"
cache: pnpm
cache-dependency-path: 'pnpm-lock.yaml'
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions Backend.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:19 AS builder

RUN corepack enable && corepack prepare pnpm@8.4.0 --activate && pnpm store path
RUN corepack enable && corepack prepare pnpm@9.1.1 --activate && pnpm store path
WORKDIR /filing-deadlines
COPY pnpm-*.yaml ./
RUN pnpm fetch
Expand All @@ -24,7 +24,7 @@ RUN pnpm run build

FROM node:19-alpine

RUN corepack enable && corepack prepare pnpm@8.4.0 --activate && pnpm store path
RUN corepack enable && corepack prepare pnpm@9.1.1 --activate && pnpm store path
WORKDIR /filing-deadlines
COPY pnpm-*.yaml ./
RUN pnpm fetch --prod
Expand Down
4 changes: 2 additions & 2 deletions Frontend.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:18 as build_ui
FROM node:22 as build_ui

RUN corepack enable && corepack prepare pnpm@8.4.0 --activate && pnpm store path
RUN corepack enable && corepack prepare pnpm@9.1.1 --activate && pnpm store path
WORKDIR /filing-deadlines
COPY pnpm-*.yaml ./
RUN pnpm fetch
Expand Down
22 changes: 11 additions & 11 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.1.1",
"@sveltejs/vite-plugin-svelte": "^2.5.3",
"@tsconfig/svelte": "^4.0.1",
"@types/papaparse": "^5.3.7",
"@types/papaparse": "^5.3.14",
"mdsvex": "^0.10.6",
"sass": "^1.62.1",
"sass": "^1.77.2",
"svelte": "3.58.0",
"svelte-check": "^3.2.0",
"svelte-preprocess": "^5.0.3",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"vite": "^4.3.4"
"svelte-check": "^3.7.1",
"svelte-preprocess": "^5.1.4",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^4.5.3"
},
"dependencies": {
"@js-temporal/polyfill": "^0.4.3",
"@stripe/stripe-js": "^1.52.1",
"@js-temporal/polyfill": "^0.4.4",
"@stripe/stripe-js": "^1.54.2",
"@svelte-drama/suspense": "^0.3.10",
"@svelte-drama/swr": "^0.2.8",
"@svelteuidev/composables": "^0.11.1",
Expand All @@ -34,7 +34,7 @@
"papaparse": "^5.4.1",
"radix-icons-svelte": "^1.2.1",
"svelte-navigator": "^3.2.2",
"svelte-table": "^0.5.10",
"svelte-table": "^0.5.11",
"sveltefileuploadcomponent": "^0.1.0",
"title-case": "^3.0.3",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.18.12/xlsx-0.18.12.tgz"
Expand Down
Loading

0 comments on commit 6325161

Please sign in to comment.