From e36b2ab6bcc758a2c2ddd999111dd0d4086b0bcc Mon Sep 17 00:00:00 2001 From: Michael Kochell <6913320+mickmister@users.noreply.github.com> Date: Sun, 23 Jun 2024 19:04:51 -0400 Subject: [PATCH] move dist folder to build instead --- .gitignore | 1 - package.json | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0e961ea..8638ea8 100644 --- a/.gitignore +++ b/.gitignore @@ -25,4 +25,3 @@ yarn-error.log* _ignore .parcel-cache -dist diff --git a/package.json b/package.json index 8722e87..2dc45a1 100644 --- a/package.json +++ b/package.json @@ -22,8 +22,8 @@ "web-vitals": "^2.1.4" }, "scripts": { - "start": "parcel src/index.html", - "build": "parcel build src/index.html", + "start": "parcel src/index.html --dist-dir build", + "build": "parcel build src/index.html --dist-dir build", "test": "jest", "test:ci": "jest --watchAll=false", "lint": "eslint src/**/*.ts src/**/*.tsx",