Skip to content

Commit 24e4c96

Browse files
committed
Switch to pnpm, upgrade to react 19
1 parent 2a14229 commit 24e4c96

4,455 files changed

Lines changed: 12407 additions & 226111 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build-prod.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ jobs:
4646
- name: Install Node.js
4747
uses: actions/setup-node@v1
4848
with:
49-
node-version: "23"
49+
node-version: "22"
5050

5151
- name: Install Project Dependencies
52-
run: npm ci --legacy-peer-deps
52+
run: pnpm install --frozen-lockfile
5353
working-directory: web
5454

5555
- name: Build 11ty
5656
id: build
57-
run: npx @11ty/eleventy
57+
run: pnpm exec @11ty/eleventy
5858
working-directory: web
5959
env:
6060
NODE_ENV: production

.github/workflows/build-studio.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,22 @@ jobs:
1919
- name: Install Node.js
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: '23'
22+
node-version: '22'
2323

2424
- name: Install Project Dependencies
25-
run: npm ci --legacy-peer-deps
25+
run: pnpm install --frozen-lockfile
2626
working-directory: studio
2727

2828
- name: Build Studio
29-
run: npx sanity build --no-auto-updates
29+
run: pnpm exec sanity build --no-auto-updates
3030
working-directory: studio
3131

3232
- name: Extract Studio Manifest
33-
run: npx sanity manifest extract --output studio/dist/static
33+
run: pnpm exec sanity manifest extract --output studio/dist/static
3434
working-directory: studio
3535

3636
- name: Deploy Schema
37-
run: SANITY_AUTH_TOKEN=${{ secrets.SANITY_SCHEMA_DEPLOY_AUTH }} npx sanity schema deploy
37+
run: SANITY_AUTH_TOKEN=${{ secrets.SANITY_SCHEMA_DEPLOY_AUTH }} pnpm exec sanity schema deploy
3838
working-directory: studio
3939

4040
- name: Set Up SSH

0 commit comments

Comments
 (0)