From e70f25b8efc7f74284f2f5e8b4e489600f5976de Mon Sep 17 00:00:00 2001 From: Tobias P Date: Sat, 23 Sep 2023 22:40:03 +0200 Subject: [PATCH] added expicit value for --dist-dir --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a12be80..2a7ce8e 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "scripts": { "start": "npx parcel serve src/index.html --public-url / --dist-dir dist", "clean": "rm -rf dist/ && rm -rf .parcel-cache/", - "build": "npx parcel build --no-optimize --public-url ./", + "build": "npx parcel build --no-optimize --public-url ./ --dist-dir dist", "test": "jest --coverage --env=jsdom", "webhint": "hint http://localhost:1234" },