Update vercel.json and package.json file

This commit is contained in:
2023-07-03 17:18:51 +07:00
parent 21a8ed8edf
commit f26b0a713f
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
{ {
"name": "practice-01", "name": "practice-01",
"version": "1.0.0", "version": "1.0.0",
"description": "Practice html-css-training-one", "description": "Practice html-css-t",
"scripts": { "scripts": {
"start": "rm -rf dist && rm -rf .parcel-cache && parcel ./src/pages/*.html --no-cache --no-source-maps", "start": "rm -rf dist && rm -rf .parcel-cache && parcel ./src/*.html --no-cache --no-source-maps",
"build": "rm -rf build && rm -rf .parcel-cache && parcel build ./src/pages/*.html --no-cache --no-source-maps --dist-dir build", "build": "rm -rf build && rm -rf .parcel-cache && parcel build ./src/*.html --no-cache --no-source-maps --dist-dir dist",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"keywords": [], "keywords": [],
+1 -1
View File
@@ -1,5 +1,5 @@
{ {
"buildCommand": "yarn build", "buildCommand": "yarn build",
"outputDirectory": "build", "outputDirectory": "dist",
"installCommand": "yarn install" "installCommand": "yarn install"
} }