Skip to content

Commit

Permalink
improve yarn scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mifi committed Nov 15, 2024
1 parent 991665b commit 5524e26
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
"build:frontend": "(cd frontend && yarn build) && rm -rf dist/frontend && mkdir -p dist && mv frontend/dist dist/frontend",
"watch": "yarn build --watch",
"prepack": "yarn build",
"dev": "yarn build && concurrently -k \"cd frontend && yarn dev\" \"yarn watch\" \"node --enable-source-maps --watch . --dev-mode\""
"dev:frontend": "cd frontend && yarn dev",
"start:dev": "node --enable-source-maps --watch . --dev-mode",
"dev": "yarn build && concurrently -k \"yarn dev:frontend\" \"yarn watch\" \"yarn start:dev\""
},
"files": [
"/dist/**"
Expand Down

0 comments on commit 5524e26

Please sign in to comment.