Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,13 @@ jobs:
# NOTE: We can stop pinning the version of puppeteer when the version that the mac atttempts to use
# syncs up (right now newest is 148.0.7778.178, but puppeteer will attempt to use 148.0.7778.97)
- name: Install puppeteer (pinned)
if: ${{ startsWith(runner.os, 'macos') && matrix.node == 'latest' }}
if: ${{ matrix.node == 'latest' }}
run: |
export PUPPETEER_VERSION=148.0.7778.97
pnpm run test:setup:puppeteer

- name: Install puppeteer
if: ${{ !startsWith(runner.os, 'macos') || matrix.node != 'latest' }}
if: ${{ matrix.node != 'latest' }}
run: |
pnpm run test:setup:puppeteer

Expand Down
2 changes: 1 addition & 1 deletion packages/jco-std/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"prepack": "pnpm run build"
},
"devDependencies": {
"@bytecodealliance/componentize-js": "^0.20.0",
"@bytecodealliance/componentize-js": "^0.21.0",
"@bytecodealliance/componentize-js-0-19-3": "npm:@bytecodealliance/componentize-js@^0.19.3",
"@bytecodealliance/jco-transpile": "^0.1.1",
"@bytecodealliance/preview2-shim": "^0.17.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/jco/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"prepack": "cargo xtask build release"
},
"dependencies": {
"@bytecodealliance/componentize-js": "^0.20.0",
"@bytecodealliance/componentize-js": "^0.21.0",
"@bytecodealliance/componentize-js-0-19-3": "npm:@bytecodealliance/componentize-js@^0.19.3",
"@bytecodealliance/preview2-shim": "^0.17.9",
"@bytecodealliance/preview3-shim": "workspace:^0.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/preview2-shim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"test": "vitest run -c test/vitest.ts"
},
"devDependencies": {
"@bytecodealliance/componentize-js": "0.20.0",
"@bytecodealliance/componentize-js": "0.21.0",
"@bytecodealliance/jco": "1.15.2",
"mime": "^4.0.7",
"puppeteer": "^24.43.1"
Expand Down
29 changes: 22 additions & 7 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ packages:
- examples/components/ts-resource-import
- examples/components/typegen-async-export
- examples/components/webidl-book-library

minimumReleaseAgeExclude:
- '@bytecodealliance/componentize-js@0.21.0'
Loading