File tree 6 files changed +1034
-276
lines changed
6 files changed +1034
-276
lines changed Original file line number Diff line number Diff line change 14
14
},
15
15
"devDependencies" : {
16
16
"@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" ,
19
20
"@typescript-eslint/eslint-plugin" : " ^6.13.1" ,
20
21
"@typescript-eslint/parser" : " ^6.17.0" ,
21
22
"eslint" : " ^8.53.0" ,
28
29
"svelte-markdoc-preprocess" : " *" ,
29
30
"tslib" : " ^2.4.1" ,
30
31
"typescript" : " ^5.0.0" ,
31
- "vite" : " ^4.5.1 "
32
+ "vite" : " ^5.0.0 "
32
33
},
33
34
"type" : " module" ,
34
35
"dependencies" : {
Original file line number Diff line number Diff line change 1
1
import { redirect } from '@sveltejs/kit' ;
2
2
3
3
export function load ( ) {
4
- throw redirect ( 307 , '/playground/tags' ) ;
4
+ redirect ( 307 , '/playground/tags' ) ;
5
5
}
Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ export async function load({ params }) {
9
9
frontmatter : post . frontmatter ,
10
10
} ;
11
11
} catch ( e ) {
12
- throw error ( 404 , `Could not find ${ params . slug } ` ) ;
12
+ error ( 404 , `Could not find ${ params . slug } ` ) ;
13
13
}
14
14
}
Original file line number Diff line number Diff line change 1
1
import adapter from '@sveltejs/adapter-auto' ;
2
- import { vitePreprocess } from '@sveltejs/kit/ vite' ;
2
+ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte ' ;
3
3
import { dirname , join } from 'path' ;
4
4
import { fileURLToPath } from 'url' ;
5
5
import { markdoc } from 'svelte-markdoc-preprocess' ;
6
6
7
+ /**
8
+ * @param {string } file
9
+ * @returns {string }
10
+ */
7
11
function absoulute ( file ) {
8
12
return join ( dirname ( fileURLToPath ( import . meta. url ) ) , file ) ;
9
13
}
You can’t perform that action at this time.
0 commit comments