[FIX] devtools: Fix build commands for windows users

This commit adapts the commands used and the rollup file to be
compatible with windows console commands syntax.
This commit is contained in:
Julien Carion (juca)
2023-04-13 10:04:07 +02:00
committed by Géry Debongnie
parent afd7f957df
commit aa19897031
2 changed files with 18 additions and 10 deletions
+2 -2
View File
@@ -19,8 +19,8 @@
"build:devtools": "rollup -c ./tools/devtools/rollup.config.js",
"dev:devtools-chrome": "npm run build:devtools -- --config-browser=chrome",
"dev:devtools-firefox": "npm run build:devtools -- --config-browser=firefox",
"build:devtools-chrome": "NODE_ENV=production npm run dev:devtools-chrome",
"build:devtools-firefox": "NODE_ENV=production npm run dev:devtools-firefox",
"build:devtools-chrome": "npm run dev:devtools-chrome -- --config-env=production",
"build:devtools-firefox": "npm run dev:devtools-firefox -- --config-env=production",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --watch --testTimeout=5000000",
"test:watch": "jest --watch",