File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 7
7
"scripts" : {
8
8
"test" : " echo \" Error: no test specified\" && exit 1" ,
9
9
"build" : " tsup && npm run copy-package-json" ,
10
- "copy-package-json" : " cp package.json ../../ build/setup/package.json"
10
+ "copy-package-json" : " cp package.json ../build/setup/package.json"
11
11
},
12
12
"keywords" : [],
13
13
"author" : " " ,
Original file line number Diff line number Diff line change 10
10
"check:watch" : " svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" ,
11
11
"lint" : " prettier --check . && eslint ." ,
12
12
"format" : " prettier --write ." ,
13
- "copy-package-json" : " cp package.json ../../ build/website/package.json"
13
+ "copy-package-json" : " cp package.json ../build/website/package.json"
14
14
},
15
15
"devDependencies" : {
16
16
"@sveltejs/adapter-auto" : " ^3.0.0" ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const config = {
12
12
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
13
13
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
14
14
adapter : adapter ( {
15
- out : '../../ build/website'
15
+ out : '../build/website'
16
16
} )
17
17
}
18
18
} ;
Original file line number Diff line number Diff line change 7
7
"scripts" : {
8
8
"test" : " echo \" Error: no test specified\" && exit 1" ,
9
9
"build" : " tsup && npm run copy-package-json" ,
10
- "copy-package-json" : " cp package.json ../../ build/worker/package.json"
10
+ "copy-package-json" : " cp package.json ../build/worker/package.json"
11
11
},
12
12
"keywords" : [],
13
13
"author" : " " ,
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ export default defineConfig({
4
4
entry : [ 'src/**/*.ts' ] ,
5
5
target : 'es2022' ,
6
6
format : [ 'esm' ] ,
7
- outDir : '../../ build/worker' ,
7
+ outDir : '../build/worker' ,
8
8
// Other options...
9
9
} ) ;
You can’t perform that action at this time.
0 commit comments