From 36bf30a64a6a355b00a173dfc64cc5da1f898e4f Mon Sep 17 00:00:00 2001 From: Jonathan Barrow Date: Thu, 27 Apr 2023 14:38:28 -0400 Subject: [PATCH] Replace rm -rf with rimraf --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e0c005f..7128e53 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "scripts": { "lint": "npx eslint .", "build": "npm run lint && npm run clean && tsc && tsc-alias && npm run copy-static", - "clean": "rm -rf ./dist", + "clean": "rimraf ./dist", "copy-static": "npm run copy-assets && npm run copy-timezones", "copy-assets": "cp -r ./src/assets ./dist/assets", "copy-timezones": "cp ./src/services/nnid/timezones.json ./dist/services/nnid/timezones.json",