web/satellite: fix npm for windows

`NODE_ENV=development xyz` approach does not work with Windows.

Change-Id: I3f0c4a6a2e9566df4923d5e6bc317c7d09573f18
This commit is contained in:
Egon Elbre 2023-07-19 18:54:29 +03:00
parent 7d1031feda
commit a058b7e982

View File

@ -6,9 +6,9 @@
"preview": "vite preview",
"dev": "vite",
"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-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-ci": "eslint **/*.{js,ts,vue} --no-fix && stylelint . --max-warnings 0 --no-fix",
"wasm": "chmod +x ./scripts/build-wasm.sh && ./scripts/build-wasm.sh",