Merge pull request #42 from yurykozhenov/master

Change rm -rf on prestart:prod to rimraf
This commit is contained in:
Kamil Myśliwiec 2018-05-12 22:56:23 +02:00 committed by GitHub
commit c1d0c752f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,7 @@
"format": "prettier --write \"**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"prestart:prod": "rm -rf dist && tsc",
"prestart:prod": "rimraf dist && tsc",
"start:prod": "node dist/main.js",
"test": "jest",
"test:cov": "jest --coverage",
@ -31,6 +31,7 @@
"jest": "^21.2.1",
"nodemon": "^1.14.1",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"supertest": "^3.0.0",
"ts-jest": "^21.2.4",
"ts-node": "^4.1.0",