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
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
with:
version: 11.6.0
version: 11.9.0

- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
with:
version: 11.6.0
version: 11.9.0

- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
with:
version: 11.6.0
version: 11.9.0

- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly-gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
with:
version: 11.6.0
version: 11.9.0

- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
Expand Down
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"private": true,
"scripts": {
"clean": "rimraf dist",
"clean": "rimraf .output .nuxt",
"clean:modules": "rimraf node_modules",
"deps:prepare": "nuxt prepare",
"build": "nuxt build",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "module",
"scripts": {
"build": "pnpm -w -r --filter \"./packages/**\" --stream run build",
"clean": "pnpm -w -r --filter \"./packages/**\" --stream run clean",
"clean": "pnpm -w -r --filter \"*\" --stream run clean",
"clean:modules": "pnpm -w -r --filter \"*\" --stream run clean:modules && rimraf node_modules",
"dev:demo": "pnpm --filter demo dev",
"dev:prepare": "pnpm --filter demo deps:prepare",
Expand All @@ -25,7 +25,7 @@
"test:unit:coverage": "pnpm -w -r --filter \"./packages/**\" --stream run test:unit:coverage",
"prepare": "husky"
},
"packageManager": "pnpm@11.6.0",
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=22.18.0"
},
Expand Down
3 changes: 2 additions & 1 deletion scripts/stable-package-stats.mts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ const DEFAULT_INSTALL_TIMEOUT_MS = 120_000;
const SVELTE_BUILD_TIMEOUT_MS = 180_000;
const SVELTE_FALLBACK_VITE_VERSION = '^8.0.0';
const SVELTE_FALLBACK_PLUGIN_VERSION = '^7.0.0';
const SVELTE_FALLBACK_SVELTE_VERSION = '^5.0.0';
// Svelte 5.56.3 leaves TypeScript syntax untransformed in some node_modules .svelte files under this temp build.
const SVELTE_FALLBACK_SVELTE_VERSION = '^5.56.4';
const BUILTIN_EXTERNALS = new Set<string>([...builtinModules, ...builtinModules.map((mod) => `node:${mod}`)]);
const CSS_LOADER_PATH = createRequire(import.meta.url).resolve('css-loader');
const ESCAPE_REGEX = /[.*+?^${}()|[\]\\]/g;
Expand Down