web/satellite: fix npm for windows
`NODE_ENV=development xyz` approach does not work with Windows. Change-Id: I3f0c4a6a2e9566df4923d5e6bc317c7d09573f18
This commit is contained in:
parent
7d1031feda
commit
a058b7e982
@ -6,9 +6,9 @@
|
|||||||
"preview": "vite preview",
|
"preview": "vite preview",
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"build": "vite build -c vite.config.js",
|
"build": "vite build -c vite.config.js",
|
||||||
"build-watch": "NODE_ENV=development vite build -c vite.config.js --watch",
|
"build-watch": "vite build --mode=development -c vite.config.js --watch",
|
||||||
"build-vuetify": "vite build -c vite.config-vuetify.js",
|
"build-vuetify": "vite build -c vite.config-vuetify.js",
|
||||||
"build-vuetify-watch": "NODE_ENV=development vite build -c vite.config-vuetify.js --watch",
|
"build-vuetify-watch": "vite build --mode=development -c vite.config-vuetify.js --watch",
|
||||||
"lint": "eslint **/*.{js,ts,vue} --fix && stylelint . --max-warnings 0 --fix",
|
"lint": "eslint **/*.{js,ts,vue} --fix && stylelint . --max-warnings 0 --fix",
|
||||||
"lint-ci": "eslint **/*.{js,ts,vue} --no-fix && stylelint . --max-warnings 0 --no-fix",
|
"lint-ci": "eslint **/*.{js,ts,vue} --no-fix && stylelint . --max-warnings 0 --no-fix",
|
||||||
"wasm": "chmod +x ./scripts/build-wasm.sh && ./scripts/build-wasm.sh",
|
"wasm": "chmod +x ./scripts/build-wasm.sh && ./scripts/build-wasm.sh",
|
||||||
|
Loading…
Reference in New Issue
Block a user