From d8f239007c243a053d8abfca7ade045fa823832c Mon Sep 17 00:00:00 2001 From: phatpham9 Date: Thu, 11 Feb 2021 01:25:11 +0700 Subject: [PATCH] chore: replace rm -rf with rimraf --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 587b8c7..2830428 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "repository": "https://github.com/boringcodes/eslint-config-typescript-react.git", "main": "index.js", "scripts": { - "purge": "rm -rf node_modules", + "purge": "rimraf node_modules", "format": "prettier --write --ignore-path .gitignore .", "format:check": "prettier --check --ignore-path .gitignore .", "lint": "eslint --quiet --ignore-path .gitignore .", @@ -35,6 +35,7 @@ "husky": "^4.3.8", "lint-staged": "^10.5.3", "prettier": "^2.2.1", + "rimraf": "^3.0.2", "standard-version": "^9.1.0", "typescript": "^4.1.3" },