Browse Source

remove dev specs from build process

isundil 1 month ago
parent
commit
1b9fadfd13
1 changed files with 2 additions and 2 deletions
  1. 2 2
      package.json

+ 2 - 2
package.json

@@ -7,10 +7,10 @@
     "dev": "npm run build && npm run run-dev",
     "build": "npm run back && npm run front",
     "back": "tsoa spec-and-routes",
-    "front": "npm run webpack && npm run webpack-devel",
+    "front": "npm run webpack",
     "webpack": "npx webpack -o ./build/ --mode=production -c ./webpack.config.js --env=output=front.min.js",
     "webpack-devel": "npx webpack -o ./build/ --mode=development -c ./webpack.config.js --env=output=front.js",
-    "run": "tsoa spec-and-routes && npx ts-node src/index.ts",
+    "run": "npx ts-node src/index.ts",
     "run-dev": "nodemon src/index.ts",
     "generate-key": "npx ts-node src/index.ts --generate-key"
   },