Skip to content

Commit 8059e8b

Browse files
author
3aa49ec6bfc910647fa1c5a013e48eef
committed
Fixed paths after refactor
1 parent 211c261 commit 8059e8b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

deploy/setup/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1",
99
"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"
1111
},
1212
"keywords": [],
1313
"author": "",

website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
1111
"lint": "prettier --check . && eslint .",
1212
"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"
1414
},
1515
"devDependencies": {
1616
"@sveltejs/adapter-auto": "^3.0.0",

website/svelte.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const config = {
1212
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
1313
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
1414
adapter: adapter({
15-
out: '../../build/website'
15+
out: '../build/website'
1616
})
1717
}
1818
};

worker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1",
99
"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"
1111
},
1212
"keywords": [],
1313
"author": "",

worker/tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ export default defineConfig({
44
entry: ['src/**/*.ts'],
55
target: 'es2022',
66
format: ['esm'],
7-
outDir: '../../build/worker',
7+
outDir: '../build/worker',
88
// Other options...
99
});

0 commit comments

Comments
 (0)