Skip to content

Commit

Permalink
fix: remove extracted binary folders on clean to avoid false positives
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Feb 28, 2020
1 parent f6d8da0 commit 7e8f76b
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 @@ -120,7 +120,7 @@
"install:win": "cross-env PACT_DO_NOT_TRACK=true node postinstall.js win32",
"install:linux32": "cross-env PACT_DO_NOT_TRACK=true node postinstall.js linux ia32",
"install:linux64": "cross-env PACT_DO_NOT_TRACK=true node postinstall.js linux x64",
"clean": "rimraf '{src,test,bin,standalone}/**/*.{js,map,d.ts}' 'package.zip' '.tmp' 'tmp'",
"clean": "rimraf '{src,test,bin,standalone}/**/*.{js,map,d.ts}' 'package.zip' '.tmp' 'tmp', 'standalone/{darwin,linux,win}*'",
"lint": "eslint '**/*.ts'",
"pretest": "npm run build && npm run download-checksums && npm run install:current",
"test": "cross-env LOGLEVEL=debug PACT_DO_NOT_TRACK=true mocha -r ts-node/register -R mocha-unfunk-reporter -t 15000 -s 5000 -b --check-leaks --exit \"{src,test,bin,standalone}/**/*.spec.ts\"",
Expand Down

0 comments on commit 7e8f76b

Please sign in to comment.