Skip to content

Commit

Permalink
npm run start command should use the built main.js in dist/. (#81)
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Kennedy <[email protected]>
  • Loading branch information
Jeff Kennedy authored Jul 15, 2021
1 parent 0933cbb commit 0d689f3
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 @@ -12,7 +12,7 @@
"scripts": {
"build": "rm -rf dist/ && tsc",
"format": "prettier --write \"src/**/*.ts\"",
"start": "rm -rf dist/ && tsc && node -r dotenv/config src/main.js",
"start": "rm -rf dist/ && tsc && node -r dotenv/config dist/main.js",
"start:debug": "nodemon --legacy-watch",
"lint": "tslint -p tsconfig-lint.json -c tslint.json",
"lint:fix": "tslint -p tsconfig-lint.json -c tslint.json --fix",
Expand Down

0 comments on commit 0d689f3

Please sign in to comment.