From a2ba9d1c63377e11e82eb1abb090834b14af4bfa Mon Sep 17 00:00:00 2001 From: John Otander Date: Fri, 15 Feb 2019 10:02:33 -0700 Subject: [PATCH] Add rimraf to clean step in tag, closes #287 --- packages/tag/package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/tag/package.json b/packages/tag/package.json index dd073641d..5c36c7385 100644 --- a/packages/tag/package.json +++ b/packages/tag/package.json @@ -32,14 +32,15 @@ "babel-preset-stage-0": "^6.24.1", "jest": "^23.1.0", "react": "^16.3.2", - "react-dom": "^16.3.2" + "react-dom": "^16.3.2", + "rimraf": "^2.6.3" }, "peerDependencies": { "react": "^0.14.x || ^15.x || ^16.x" }, "scripts": { "build": "babel src -d dist", - "clean": "rm -rf dist", + "clean": "rimraf dist", "prepublish": "npm run clean && npm run build", "test": "jest" }