scripts() fix prestart:prod build

This commit is contained in:
Kamil Myśliwiec 2018-12-18 08:51:49 +01:00
parent 1affdcd598
commit 176d945f28
No known key found for this signature in database
GPG Key ID: 75F02E89A1A1092B
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
"start": "ts-node -r tsconfig-paths/register src/main.ts", "start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon", "start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json", "start:debug": "nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf dist && tsc", "prestart:prod": "rimraf dist && npm run build",
"start:prod": "node dist/main.js", "start:prod": "node dist/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json", "lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest", "test": "jest",