Skip to content

Commit

Permalink
Make CI not fail on file removal
Browse files Browse the repository at this point in the history
  • Loading branch information
steeelydan committed Aug 27, 2024
1 parent 4201037 commit 522cc3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"dev": "npm run parseTypeDocs && concurrently -n esm,cjs -c yellow,green \"npm run watch:esm\" \"npm run watch:cjs\"",
"dist:esm": "tsc -p tsconfig.esm.json",
"dist:cjs": "tsc -p tsconfig.cjs.json",
"removeTempFiles": "rm -r debug_tsoutput.json && rm -r coverage",
"removeTempFiles": "rm -rf debug_tsoutput.json && rm -rf coverage",
"dist": "npm run parseTypeDocs && npm run removeTempFiles && rm -rf ./dist/* && npm run dist:esm && npm run dist:cjs && node ./scripts/setVersionConstant.mjs",
"test": "npm run dist:cjs && c8 mocha './dist/cjs/**/*.spec.js' --reporter-option maxDiffSize=0",
"test:single": "mocha './dist/esm/**/*.spec.js' --reporter-option maxDiffSize=0 --grep",
Expand Down
Loading

0 comments on commit 522cc3f

Please sign in to comment.