chore: change dev task to start:dev

Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
Jef LeCompte
2020-09-25 18:30:05 -04:00
parent b868d1a483
commit d9dea3d0f2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ At any point you want the program to stop, use <kbd>Ctrl</kbd> + <kbd>C</kbd>.
### Developer notes ### Developer notes
The command `npm run dev` can be used instead of `npm run start` to automatically restart the project when filesystem changes are detected in the `src/` folder or `.env` file. The command `npm run start:dev` can be used instead of `npm run start` to automatically restart the project when filesystem changes are detected in the `src/` folder or `.env` file.
### Customization ### Customization
+1 -1
View File
@@ -5,10 +5,10 @@
"main": "src/index.ts", "main": "src/index.ts",
"scripts": { "scripts": {
"build": "rimraf ./build && tsc", "build": "rimraf ./build && tsc",
"dev": "nodemon --config nodemon.json",
"lint": "xo", "lint": "xo",
"lint:fix": "xo --fix", "lint:fix": "xo --fix",
"start": "npm run build && node build/index.js", "start": "npm run build && node build/index.js",
"start:dev": "nodemon --config nodemon.json",
"test:notification": "npm run build && node build/__test__/notification-test.js" "test:notification": "npm run build && node build/__test__/notification-test.js"
}, },
"repository": { "repository": {