Skip to content

Commit

Permalink
turn off unit testing in npm run build:dev (#45)
Browse files Browse the repository at this point in the history
unit testing should be done in continuous integration, not during development builds.

doing it during development builds is inconvenient. for example, adding a `debugger;` statement breaks the build, making it hard to do debugging in localhost.
  • Loading branch information
NovemLinguae authored Jun 2, 2024
1 parent a218eca commit 9e1110e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"build:concat": "concat-cli -f \"core-comment-top.js\" dist/core.min.js \"core-comment-bottom.js\" -o dist/core-gadget.js",
"build:css": "node bin/concatCss",
"build": "npm run globals:window && npm run build:loader && npm run lint && npm run test:all && npm run build:css && npm run build:bundle && npm run build:minify && npm run build:concat",
"build:dev": "npm run globals:window && npm run build:loader:dev && npm run lint:dev && npm run test:all && npm run build:css && npm run build:bundle ",
"build:dev": "npm run globals:window && npm run build:loader:dev && npm run build:css && npm run build:bundle",
"build:quickdev": "npm run globals:window && npm run build:loader:dev && npm run build:bundle "
},
"author": {
Expand Down

0 comments on commit 9e1110e

Please sign in to comment.