Skip to content

Commit b9b5a95

Browse files
committed
Move to pnpm 11, fix for unused node version var
1 parent b5fb449 commit b9b5a95

10 files changed

Lines changed: 25 additions & 14 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
AGENTS.md
2+
ROADMAP.md
3+
actions-ext
4+

cppjswasm/.github/workflows/build.yaml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
os: [ubuntu-latest, macos-latest, windows-latest]
3333
python-version: ["{{ python_version_primary }}"]
3434
cibuildwheel: ["cp{{python_version_primary.replace('.', '')}}"]
35-
node-version: [20.x]
35+
node-version: [22.x]
3636

3737
steps:
3838
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
@@ -43,7 +43,7 @@ jobs:
4343

4444
- uses: actions-ext/node/setup@main
4545
with:
46-
version: 22.x
46+
version: {% raw %}${{ matrix.node-version }}{% endraw %}
4747

4848
- uses: mymindstorm/setup-emsdk@v16
4949

cppjswasm/js/pnpm-workspace.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
allowBuilds:
2+
esbuild: true

js/.github/workflows/build.yaml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
os: [ubuntu-latest]
3333
python-version: ["{{ python_version_primary }}"]
34-
node-version: [20.x]
34+
node-version: [22.x]
3535

3636
steps:
3737
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
@@ -42,7 +42,7 @@ jobs:
4242

4343
- uses: actions-ext/node/setup@main
4444
with:
45-
version: 22.x
45+
version: {% raw %}${{ matrix.node-version }}{% endraw %}
4646

4747
- name: Install dependencies
4848
run: make develop

js/js/pnpm-workspace.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
allowBuilds:
2+
esbuild: true

jupyter/.github/workflows/build.yaml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
os: [ubuntu-latest]
3333
python-version: ["{{ python_version_primary }}"]
34-
node-version: [20.x]
34+
node-version: [22.x]
3535

3636
steps:
3737
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
@@ -42,7 +42,7 @@ jobs:
4242

4343
- uses: actions-ext/node/setup@main
4444
with:
45-
version: 22.x
45+
version: {% raw %}${{ matrix.node-version }}{% endraw %}
4646

4747
- name: Install dependencies
4848
run: make develop

jupyter/js/package.json.jinja

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,5 @@
7373
"mkdirp": "^3.0.1",
7474
"prettier": "^3.8.1",
7575
"rimraf": "^6.1.3"
76-
},
77-
"pnpm": {
78-
"overrides": {
79-
"webpack": "5.76.1"
80-
}
8176
}
82-
}
77+
}

jupyter/js/pnpm-workspace.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
allowBuilds:
2+
"@fortawesome/fontawesome-free": true
3+
unrs-resolver: true
4+
5+
6+
overrides:
7+
webpack: "5.76.1"

rustjswasm/.github/workflows/build.yaml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
os: [ubuntu-latest, macos-latest, windows-latest]
3333
python-version: ["{{ python_version_primary }}"]
3434
cibuildwheel: ["cp{{python_version_primary.replace('.', '')}}"]
35-
node-version: [20.x]
35+
node-version: [22.x]
3636

3737
steps:
3838
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
@@ -45,7 +45,7 @@ jobs:
4545

4646
- uses: actions-ext/node/setup@main
4747
with:
48-
version: 22.x
48+
version: {% raw %}${{ matrix.node-version }}{% endraw %}
4949

5050
- name: Install dependencies
5151
run: make develop

rustjswasm/js/pnpm-workspace.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
allowBuilds:
2+
esbuild: true

0 commit comments

Comments
 (0)