Skip to content

Commit

Permalink
Merge pull request #1002 from thesandboxgame/feat/monorepo_coverage_fix
Browse files Browse the repository at this point in the history
feat: fix an error when there is no coverage report
  • Loading branch information
adjisb authored Jun 9, 2023
2 parents 0419d7c + 399bc13 commit 406114d
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 @@ -10,13 +10,13 @@
"description": "The Sandbox smart contracts",
"scripts": {
"test": "nx run-many --target=test",
"coverage": "nx run-many --target=coverage && istanbul-combine -r lcov -r html packages/*/coverage.json",
"coverage": "nx run-many --target=coverage && istanbul-combine -r lcov -r html 'packages/*/coverage.json'",
"lint": "nx run-many --target=lint",
"format": "nx run-many --target=format",
"deploy": "nx run-many --target=deploy",
"all": "nx run-many --all --parallel --targets=lint,format,test,deploy && nx run-many --all --targets=coverage",
"test:ci": "nx affected --target=test",
"coverage:ci": "nx affected --target=coverage && istanbul-combine -r lcov -r html packages/*/coverage.json",
"coverage:ci": "nx affected --target=coverage && istanbul-combine -r lcov -r html 'packages/*/coverage.json'",
"lint:ci": "nx affected --target=lint",
"format:ci": "nx affected --target=format",
"deploy:ci": "nx affected --target=deploy",
Expand Down

0 comments on commit 406114d

Please sign in to comment.