From 6f117333986b12e0b218cfbc15714ef394d498cf Mon Sep 17 00:00:00 2001 From: Aurelius Wendelken Date: Wed, 4 Oct 2023 18:32:52 +0200 Subject: [PATCH] add flag force to npm clean script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fced0fa..7a9b53b 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "source": "src/index.html", "browserslist": "> 0.5%, last 2 versions, not dead", "scripts": { - "clean": "rm -r dist .parcel-cache", + "clean": "rm -rf dist .parcel-cache", "start": "pnpm run clean && parcel serve --no-cache", "build": "pnpm run clean && parcel build --public-url '.'", "htmlhint": "htmlhint \"**/*.html\" --ignore \"dist/**/*.html\" --format unix",