Skip to content

Commit 34d794b

Browse files
fix: partial configuration type
1 parent fe7e379 commit 34d794b

File tree

6 files changed

+1034
-276
lines changed

6 files changed

+1034
-276
lines changed

apps/demo/package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@
1414
},
1515
"devDependencies": {
1616
"@playwright/test": "^1.28.1",
17-
"@sveltejs/adapter-auto": "^2.0.0",
18-
"@sveltejs/kit": "*",
17+
"@sveltejs/adapter-auto": "^3.0.0",
18+
"@sveltejs/kit": "^2.0.0",
19+
"@sveltejs/vite-plugin-svelte": "^3.0.0",
1920
"@typescript-eslint/eslint-plugin": "^6.13.1",
2021
"@typescript-eslint/parser": "^6.17.0",
2122
"eslint": "^8.53.0",
@@ -28,7 +29,7 @@
2829
"svelte-markdoc-preprocess": "*",
2930
"tslib": "^2.4.1",
3031
"typescript": "^5.0.0",
31-
"vite": "^4.5.1"
32+
"vite": "^5.0.0"
3233
},
3334
"type": "module",
3435
"dependencies": {
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { redirect } from '@sveltejs/kit';
22

33
export function load() {
4-
throw redirect(307, '/playground/tags');
4+
redirect(307, '/playground/tags');
55
}

apps/demo/src/routes/playground/glob/[slug]/+page.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ export async function load({ params }) {
99
frontmatter: post.frontmatter,
1010
};
1111
} catch (e) {
12-
throw error(404, `Could not find ${params.slug}`);
12+
error(404, `Could not find ${params.slug}`);
1313
}
1414
}

apps/demo/svelte.config.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
import adapter from '@sveltejs/adapter-auto';
2-
import { vitePreprocess } from '@sveltejs/kit/vite';
2+
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
33
import { dirname, join } from 'path';
44
import { fileURLToPath } from 'url';
55
import { markdoc } from 'svelte-markdoc-preprocess';
66

7+
/**
8+
* @param {string} file
9+
* @returns {string}
10+
*/
711
function absoulute(file) {
812
return join(dirname(fileURLToPath(import.meta.url)), file);
913
}

0 commit comments

Comments
 (0)