From 9e2bd5a3fb481a0391b108aa3180e8c476c403a1 Mon Sep 17 00:00:00 2001 From: Miodec Date: Thu, 5 May 2022 23:25:03 +0200 Subject: [PATCH] fixed script names --- frontend/package.json | 4 ++-- package.json | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 5e8d7883d..e2007be0a 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -8,9 +8,9 @@ "audit": "npx webpack --config ./webpack/config.audit.js", "dep-graph": "madge -c -i \"dep-graph.png\" ./src/ts", "build": "npx gulp build", - "build:live": "npx gulp build-production", + "build-live": "npx gulp build-production", "dev": "concurrently \"webpack serve --config=./webpack/config.dev.js\" \"npx gulp watch\"", - "deploy:live": "npm run build:live && firebase deploy -P live --only hosting", + "deploy-live": "npm run build:live && firebase deploy -P live --only hosting", "tsc": "tsc" }, "engines": { diff --git a/package.json b/package.json index 149c24cd3..fa818f650 100644 --- a/package.json +++ b/package.json @@ -9,13 +9,13 @@ "install-windows": ".\\bin\\install.cmd", "docker": "cd backend && docker-compose up", "test-backend": "cd backend && npm run test", - "dev": "concurrently --kill-others \"npm run dev:fe\" \"npm run dev:be\"", + "dev": "concurrently --kill-others \"npm run dev-fe\" \"npm run dev-be\"", "dev-be": "cd backend && npm run dev", "dev-fe": "cd frontend && npm run dev", "live": "concurrently --kill-others \"cd frontend && npm run live\" \"cd backend && npm run start\"", "audit-fe": "cd frontend && npm run audit", - "deploy-live": "cd frontend && npm run deploy:live", - "build-fe": "cd ./frontend && npm run build:live", + "deploy-live": "cd frontend && npm run deploy-live", + "build-fe": "cd ./frontend && npm run build-live", "pretty": "prettier --check './backend/**/*.ts' './frontend/src/**/*.{ts,scss}' './frontend/static/**/*.{json,html}'", "pr-check-lint-json": "cd frontend && npx gulp pr-check-lint-json", "pr-check-quote-json": "cd frontend && npx gulp pr-check-quote-json",