Switch start script to use /bin

This commit is contained in:
Rene Saarsoo 2020-10-01 20:28:08 +03:00
parent cd1671fa20
commit dd9baffb8d
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
"lint:js": "eslint 'src/**/*'", "lint:js": "eslint 'src/**/*'",
"test": "jest", "test": "jest",
"test:watch": "jest --watch", "test:watch": "jest --watch",
"start": "ts-node src/index.ts", "start": "node bin/make-workout.js",
"format:js": "prettier --write src/", "format:js": "prettier --write src/",
"build": "tsc" "build": "tsc"
}, },