Skip to content

Commit

Permalink
fix: scripts compatibility under windows
Browse files Browse the repository at this point in the history
  • Loading branch information
waitingsong authored and czy88840616 committed Sep 4, 2019
1 parent b67ce1b commit 78850d1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"node-ab": "0.0.6",
"opencollective": "^1.0.3",
"opencollective-postinstall": "^2.0.2",
"rimraf": "^3.0.0",
"tree-kill": "^1.2.0",
"tslint": "^5.17.0",
"tslint-no-unused-expression-chai": "^0.1.4",
Expand All @@ -33,9 +34,9 @@
"canary": "sh scripts/publish.sh --canary",
"beta": "sh scripts/publish.sh --npm-tag beta --force-publish=*",
"next": "sh scripts/publish.sh --npm-tag next",
"publish": "rm -f ./packages/.DS*; sh scripts/publish.sh",
"bootstrap": "rm -f ./packages/.DS*; lerna bootstrap --hoist --no-ci",
"clean": "lerna clean --yes; rm -rf ./packages/**/package-lock.json",
"publish": "rm -f ./packages/.DS* && sh scripts/publish.sh",
"bootstrap": "rm -f ./packages/.DS* && lerna bootstrap --hoist --no-ci",
"clean": "lerna clean --yes && rm -rf ./packages/**/package-lock.json",
"build": "sh scripts/build.sh",
"authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS",
"docs:dev": "vuepress dev docs",
Expand Down

0 comments on commit 78850d1

Please sign in to comment.