Skip to content

Commit

Permalink
scripts() fix prestart:prod build
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Dec 18, 2018
1 parent 1affdcd commit 176d945
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"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",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
Expand Down

1 comment on commit 176d945

@EddyVerbruggen
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was about to send a PR doing the same, THANKS!

Please sign in to comment.