Skip to content

Commit 09b62c0

Browse files
authored
fix(package): Fix clean script in non Unix environments (#2110)
1 parent 2f91398 commit 09b62c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"*.js"
3737
],
3838
"scripts": {
39-
"clean": "../../node_modules/.bin/shx rm -rf dist/ && ../../node_modules/.bin/shx mkdir -p dist",
39+
"clean": "shx rm -rf dist/ && shx mkdir -p dist",
4040
"version": "npm run build",
4141
"mocha": "mocha --config ../../.mocharc.json test/ --recursive",
4242
"test": "npm run build && npm run mocha",

0 commit comments

Comments
 (0)