From 3602f030322eb6135ca0862c53e5e2ce469d9f9d Mon Sep 17 00:00:00 2001 From: Fabien Quatravaux Date: Fri, 15 Jan 2021 15:32:40 +0100 Subject: [PATCH] feature: Remove cached compiled code when starting the watch command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 91443f6..f61f530 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "scripts": { "prebuild": "rimraf build", "build": "NODE_ENV='production' node internal/parcel.js", - "watch": "rimraf build && node internal/parcel.js", + "watch": "rimraf build .cache && node internal/parcel.js", "cypress:open": "cypress open", "cypress:verify": "cypress verify", "cypress:info": "cypress info",