Skip to content

Commit b9bf054

Browse files
authored
Add rimraf to clean step in tag, closes #287 (#403)
1 parent f4ffb82 commit b9bf054

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/tag/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,15 @@
3232
"babel-preset-stage-0": "^6.24.1",
3333
"jest": "^23.1.0",
3434
"react": "^16.3.2",
35-
"react-dom": "^16.3.2"
35+
"react-dom": "^16.3.2",
36+
"rimraf": "^2.6.3"
3637
},
3738
"peerDependencies": {
3839
"react": "^0.14.x || ^15.x || ^16.x"
3940
},
4041
"scripts": {
4142
"build": "babel src -d dist",
42-
"clean": "rm -rf dist",
43+
"clean": "rimraf dist",
4344
"prepublish": "npm run clean && npm run build",
4445
"test": "jest"
4546
}

0 commit comments

Comments
 (0)