Skip to content

Commit

Permalink
remove 'npm run build' from 'start' script (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinMinkov authored Apr 18, 2024
1 parent 65dbe94 commit 3b203d0
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 @@ -11,7 +11,7 @@
"type": "module",
"scripts": {
"build": "npm run clean && npx tsc",
"start": "npm run build && node build/src/index.js",
"start": "node build/src/index.js",
"dev": "cross-env NODE_NO_WARNINGS=1 npx nodemon src/index.ts",
"test": "npx tsc && for testfile in $(find build/tests -type f -name '*.test.js'); do node $testfile; done",
"clean": "rimraf ./build",
Expand Down

0 comments on commit 3b203d0

Please sign in to comment.