Skip to content

Commit

Permalink
NODE_ENV is production by default
Browse files Browse the repository at this point in the history
  • Loading branch information
baptistecdr committed Dec 31, 2024
1 parent 97709ec commit 534ff90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"scripts": {
"lint": "biome check",
"lint:fix": "biome check --fix --unsafe",
"build:firefox": "tsc && NODE_ENV=production vite build --emptyOutDir && BROWSER=firefox node scripts/generate-manifest.js",
"build:firefox": "tsc && vite build --emptyOutDir && BROWSER=firefox node scripts/generate-manifest.js",
"build:firefox:debug": "tsc && NODE_ENV=development vite build --mode development --emptyOutDir && BROWSER=firefox node scripts/generate-manifest.js",
"build:firefox:watch": "nodemon --watch . --exec npm run build:firefox:debug",
"start:firefox": "web-ext run --source-dir ./dist/ --devtools",
"build:chromium": "tsc && NODE_ENV=production vite build --emptyOutDir && BROWSER=chromium node scripts/generate-manifest.js",
"build:chromium": "tsc && vite build --emptyOutDir && BROWSER=chromium node scripts/generate-manifest.js",
"build:chromium:debug": "tsc && NODE_ENV=development vite build --mode development --emptyOutDir && BROWSER=chromium node scripts/generate-manifest.js",
"build:chromium:watch": "nodemon --watch . --exec npm run build:chromium:debug",
"start:chromium": "web-ext run --source-dir ./dist/ -t chromium --devtools"
Expand Down

0 comments on commit 534ff90

Please sign in to comment.