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
7 changes: 1 addition & 6 deletions .github/workflows/security-supply-chain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,23 +65,18 @@ jobs:
run: |
rm -rf node_modules

npm install -g pnpm@10.33.0
npm install -g pnpm@11.0.8

cat > pnpm-workspace.yaml <<'YAML'

blockExoticSubdeps: true

strictDepBuilds: true
allowBuilds:
'@swc/core': true
core-js-pure: true
core-js: true

trustPolicy: no-downgrade
trustPolicyExclude:
- 'detect-port@1.6.1'
- 'semver@6.3.1'

YAML

sfw pnpm install || sfw pnpm install || sfw pnpm install
12 changes: 10 additions & 2 deletions .github/workflows/tests-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['24.14', '25']
node: ['24.14', '26']
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down Expand Up @@ -250,10 +250,18 @@ jobs:
- name: Install test-website project with pnpm
run: |
npm install -g pnpm

cat > pnpm-workspace.yaml <<'YAML'
strictDepBuilds: true
allowBuilds:
'@swc/core': true
core-js: true
YAML

pnpm install
working-directory: ../test-website
env:
npm_config_registry: http://localhost:4873
pnpm_config_registry: http://localhost:4873
- name: TypeCheck website
working-directory: ../test-website
run: yarn typecheck
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
node: ['24.14', '25']
node: ['24.14', '26']
steps:
- name: Support longpaths
run: git config --system core.longpaths true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['24.14', '25']
node: ['24.14', '26']
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24
26
6 changes: 3 additions & 3 deletions packages/docusaurus-plugin-pwa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
"tslib": "^2.6.0",
"webpack": "^5.106.2",
"webpack-merge": "^6.0.1",
"workbox-build": "^7.4.0",
"workbox-precaching": "^7.4.0",
"workbox-window": "^7.4.0"
"workbox-build": "^7.4.1",
"workbox-precaching": "^7.4.1",
"workbox-window": "^7.4.1"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.10.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function getFallbackEmojiIcon(
item: PropSidebarItemLink | PropSidebarItemCategory,
): string {
if (item.type === 'category') {
return '🗃';
return '🗃';
}
return isInternalUrl(item.href) ? '📄️' : '🔗';
}
Expand Down
1,174 changes: 690 additions & 484 deletions yarn.lock

Large diffs are not rendered by default.

Loading