From e783de36754170210c36497261d8e83c0ba5b533 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Sun, 8 Apr 2018 12:59:10 +0200 Subject: [PATCH] [packages.json] 'npm run clean' does not fail anymore --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 13df664..bfa532d 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "license": "MIT", "private": true, "scripts": { - "clean": "rm ./public_html/*.{js,css,html,svg,map}", + "clean": "rm ./public_html/*.html; rm ./public_html/*.js; rm ./public_html/*.css; rm ./public_html/*svg; rm ./public_html/*.map; exit 0", "dev": "parcel watch ./parcel/index.html --out-dir ./public_html --no-hmr", "build:alternative": "cross-env NODE_ENV=production parcel watch ./parcel/index.html --out-dir ./public_html --no-hmr", "build": "parcel build ./parcel/index.html --out-dir ./public_html --no-source-maps --no-minify",