From 0a8bdbf1b4c1ba8bc338d681e8d51d185893d5f5 Mon Sep 17 00:00:00 2001 From: Renan GEHAN Date: Fri, 5 Jan 2024 12:20:27 +0100 Subject: [PATCH] Fix build script to avoid weird parcel issues --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b0cf0da..89ba79a 100644 --- a/package.json +++ b/package.json @@ -79,7 +79,7 @@ "typescript": "^3.8.3" }, "scripts": { - "clean": "rimraf dist/", + "clean": "rimraf dist/ .parcel-cache", "start": "parcel serve --no-hmr --no-autoinstall src/index.html", "copyManifest": "cp manifest.json dist/manifest.json", "copyIcons": "cp -r icons/ dist/icons/", @@ -93,4 +93,4 @@ "e2e": "cypress open", "lint": "eslint --ext ts,tsx src/" } -} \ No newline at end of file +}