Update package.json
Browse files- package.json +1 -1
package.json
CHANGED
@@ -13,7 +13,7 @@
|
|
13 |
"test:watch": "vitest",
|
14 |
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint app",
|
15 |
"lint:fix": "npm run lint -- --fix && prettier app --write",
|
16 |
-
|
17 |
"start:unix": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings",
|
18 |
"start": "node -e \"const { spawn } = require('child_process'); const isWindows = process.platform === 'win32'; const cmd = isWindows ? 'npm run start:windows' : 'npm run start:unix'; const child = spawn(cmd, { shell: true, stdio: 'inherit' }); child.on('exit', code => process.exit(code));\"",
|
19 |
"dockerstart": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings --ip 0.0.0.0 --port 5173 --no-show-interactive-dev-session",
|
|
|
13 |
"test:watch": "vitest",
|
14 |
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint app",
|
15 |
"lint:fix": "npm run lint -- --fix && prettier app --write",
|
16 |
+
"start:windows": "wrangler pages dev ./build/client",
|
17 |
"start:unix": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings",
|
18 |
"start": "node -e \"const { spawn } = require('child_process'); const isWindows = process.platform === 'win32'; const cmd = isWindows ? 'npm run start:windows' : 'npm run start:unix'; const child = spawn(cmd, { shell: true, stdio: 'inherit' }); child.on('exit', code => process.exit(code));\"",
|
19 |
"dockerstart": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings --ip 0.0.0.0 --port 5173 --no-show-interactive-dev-session",
|