From 018df228dfc75a71e9ed9bbf66ef4098f71bc89a Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Thu, 4 Jun 2026 17:19:10 +0100 Subject: [PATCH] Rename start to dev --- backend/package.json | 2 +- frontend/package.json | 2 +- package.json | 2 +- shared/package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/package.json b/backend/package.json index ded05b8..13704eb 100644 --- a/backend/package.json +++ b/backend/package.json @@ -10,7 +10,7 @@ }, "scripts": { "build": "npx webpack --mode production", - "start": "concurrently --kill-others-on-fail \"webpack --mode development -w\" \"nodemon --legacy-watch dist/main.js\"", + "dev": "concurrently --kill-others-on-fail \"webpack --mode development -w\" \"nodemon --legacy-watch dist/main.js\"", "try-build": "npm run build && cd dist && node main.js && cd -" }, "dependencies": { diff --git a/frontend/package.json b/frontend/package.json index a819ba1..8ece34b 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -10,7 +10,7 @@ "main": "index.js", "scripts": { "build": "npx webpack --mode production", - "start": "npx webpack-dev-server --mode development", + "dev": "npx webpack-dev-server --mode development", "try-build": "npm run build && cd dist && python3 -m http.server 8080" }, "browserslist": [ diff --git a/package.json b/package.json index 5f012b9..81035e4 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,6 @@ "build": "cd shared && npm run build && cd ../frontend && npm run build && cd ../backend && npm run build", "lint": "eslint ./**/src/**/*.{js,ts,json} --fix && prettier --write ./**/src/**/*.{js,ts,json}", "init": "cd shared && npm install && cd ../frontend && npm install && cd ../backend && npm install", - "start": "concurrently --kill-others-on-fail \"cd shared && npm start\" \"cd backend && npm start\" \"cd frontend && npm start\"" + "dev": "concurrently --kill-others-on-fail \"cd shared && npm dev\" \"cd backend && npm dev\" \"cd frontend && npm dev\"" } } diff --git a/shared/package.json b/shared/package.json index e03d76c..92b7710 100644 --- a/shared/package.json +++ b/shared/package.json @@ -9,7 +9,7 @@ ], "scripts": { "build": "npx webpack --mode production", - "start": "npx webpack --mode development --watch", + "dev": "npx webpack --mode development --watch", "try-build-before": "npx webpack --mode production" }, "devDependencies": {