Skip to content

Commit

Permalink
Ensure NODE_ENV=development in build-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
sidoh committed Oct 19, 2024
1 parent eb06c6f commit d7f21d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_ENV=production node build.mjs && cross-env NODE_ENV=production node inline.js",
"build-dev": "node build.mjs && node inline.js",
"build-dev": "cross-env NODE_ENV=development node build.mjs && cross-env NODE_ENV=development node inline.js",
"watch": "nodemon -w src -w components -w api -w inline.js -e js,jsx,ts,tsx --exec \"npm run build-dev\"",
"serve": "http-server dist"
},
Expand Down

0 comments on commit d7f21d6

Please sign in to comment.