Skip to content

Commit 4cac7e5

Browse files
committed
chore: switch to pnpm
1 parent 60e356f commit 4cac7e5

File tree

3 files changed

+758
-8
lines changed

3 files changed

+758
-8
lines changed

.github/workflows/pipeline.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,17 @@ jobs:
2525
steps:
2626
- name: Checkout
2727
uses: actions/checkout@v5
28+
- name: Install pnpm
29+
uses: pnpm/action-setup@v4
30+
with:
31+
version: 10
2832
- name: Setup Node
2933
uses: actions/setup-node@v6
3034
with:
3135
node-version: 25
36+
cache: "pnpm"
3237
- name: Install dependencies
33-
run: npm ci
38+
run: pnpm install
3439
- name: Build
3540
run: node --run build
3641
- name: Setup GitHub Pages

package.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"dependencies": {
1515
"@andreasphil/command-bar": "github:andreasphil/command-bar#v0.14.0",
16-
"@andreasphil/design-system": "github:andreasphil/design-system#v0.54.0",
16+
"@andreasphil/design-system": "github:andreasphil/design-system#v0.53.0",
1717
"@andreasphil/textarea2": "github:andreasphil/textarea2#v0.6.0",
1818
"browser-fs-access": "^0.38.0",
1919
"memize": "^2.1.1",
@@ -25,11 +25,5 @@
2525
"@types/node": "^24.10.0",
2626
"rolldown-vite": "^7.2.2",
2727
"typescript": "^5.9.3"
28-
},
29-
"devEngines": {
30-
"packageManager": {
31-
"name": "npm",
32-
"onFail": "warn"
33-
}
3428
}
3529
}

0 commit comments

Comments
 (0)