Skip to content

Commit

Permalink
fix(package): Fix clean script in non Unix environments (#2110)
Browse files Browse the repository at this point in the history
  • Loading branch information
bwgjoseph authored Nov 8, 2020
1 parent 2f91398 commit 09b62c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"*.js"
],
"scripts": {
"clean": "../../node_modules/.bin/shx rm -rf dist/ && ../../node_modules/.bin/shx mkdir -p dist",
"clean": "shx rm -rf dist/ && shx mkdir -p dist",
"version": "npm run build",
"mocha": "mocha --config ../../.mocharc.json test/ --recursive",
"test": "npm run build && npm run mocha",
Expand Down

0 comments on commit 09b62c0

Please # to comment.