Skip to content

Commit

Permalink
Fix build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcconechy committed Sep 4, 2024
1 parent 632294a commit 711010c
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 @@ -67,7 +67,7 @@
"test:visual": "PERCY_LOGLEVEL=silent npx percy exec -- npx playwright test --reporter=list",
"test:coverage": "npx rimraf .nyc_output && npm run build:coverage && npm run test && npx nyc report && open coverage/index.html",
"test:coverage:no-build": "npx rimraf .nyc_output && npm run test && npx nyc report && open coverage/index.html",
"test:ci": "npx rimraf .nyc_output && npm run build:coverage && npx playwright test --reporter=list --workers=1 --inverse-grep 'percy' && npx nyc report",
"test:ci": "npx rimraf .nyc_output && npm run build:coverage && npx playwright test --reporter=list --workers=1 --grep-invert 'percy' && npx nyc report",
"test:ci:percy": "PERCY_LOGLEVEL=silent npx rimraf .nyc_output && npm run build:coverage && npx playwright test --reporter=list --workers=1 --grep 'percy' && npx nyc report",
"watch": "npm run watch:js & npm run watch:scss",
"watch:js": "nodemon --watch \"src/\" -e js --ignore dist/ --ignore app/ -x \"npm run build:js\" --on-change-only",
Expand Down

0 comments on commit 711010c

Please sign in to comment.