Skip to content
Open
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
15 changes: 4 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ jobs:
os: ubuntu-latest
e2e-browser: 'chromium'
vite: 'current'
- node-version: 24
os: ubuntu-latest
e2e-browser: 'chromium'
vite: 'beta'
# - node-version: 24
# os: ubuntu-latest
# e2e-browser: 'chromium'
# vite: 'beta'
env:
KIT_E2E_BROWSER: ${{matrix.e2e-browser}}
MATRIX_VITE: ${{matrix.vite}}
Expand Down Expand Up @@ -243,13 +243,6 @@ jobs:
with:
deno-version: ^2.2.4
- run: pnpm install --frozen-lockfile
- name: setup overrides for matrix.node
if: matrix.node-version == 18
run: | # copies catalogs.node-xx to overrides in pnpm-workspace.yaml so the subsequent `pnpm install` enforces them
yq -i '.overrides =.catalogs."node-18"' pnpm-workspace.yaml
pnpm install --no-frozen-lockfile
git checkout pnpm-lock.yaml pnpm-workspace.yaml # revert changes to pnpm files to avoid cache key changes
pnpm --dir packages/kit ls vite @sveltejs/vite-plugin-svelte
- run: pnpm playwright install chromium --no-shell
- run: cd packages/kit && pnpm prepublishOnly
- run: pnpm run test:others
1 change: 1 addition & 0 deletions packages/adapter-auto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"@sveltejs/vite-plugin-svelte": "catalog:",
"@types/node": "catalog:",
"typescript": "^5.3.3",
"vite": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
Expand Down
1 change: 1 addition & 0 deletions packages/adapter-cloudflare/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"@types/node": "catalog:",
"esbuild": "catalog:",
"typescript": "^5.3.3",
"vite": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
Expand Down
1 change: 1 addition & 0 deletions packages/adapter-netlify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"@types/node": "catalog:",
"rollup": "^4.14.2",
"typescript": "^5.3.3",
"vite": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
Expand Down
1 change: 1 addition & 0 deletions packages/adapter-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"polka": "catalog:",
"sirv": "^3.0.2",
"typescript": "^5.3.3",
"vite": "catalog:",
"vitest": "catalog:"
},
"dependencies": {
Expand Down
1 change: 1 addition & 0 deletions packages/adapter-vercel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"@sveltejs/vite-plugin-svelte": "catalog:",
"@types/node": "catalog:",
"typescript": "^5.3.3",
"vite": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/enhanced-img/test/markup-plugin.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ it('Image preprocess snapshot test', async () => {
if (!transformed.code) throw new Error('transform did not return any code');

// Make imports readable
const ouput = transformed.code.replace(/import/g, '\n\timport');
const ouput = transformed.code.toString().replace(/import/g, '\n\timport');

await expect(ouput).toMatchFileSnapshot('./Output.svelte');
});
Expand Down
1 change: 1 addition & 0 deletions packages/package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"svelte": "catalog:",
"svelte-preprocess": "catalog:",
"typescript": "^5.3.3",
"vite": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
Expand Down
Loading
Loading