Skip to content

Commit

Permalink
web/satellite: fix npm for windows
Browse files Browse the repository at this point in the history
`NODE_ENV=development xyz` approach does not work with Windows.

Change-Id: I3f0c4a6a2e9566df4923d5e6bc317c7d09573f18
  • Loading branch information
egonelbre committed Jul 20, 2023
1 parent 7d1031f commit a058b7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/satellite/package.json
Expand Up @@ -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",
Expand Down

0 comments on commit a058b7e

Please sign in to comment.