fix: Use nodemon in dev script instead of start

Signed-off-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
Richie Bendall 2019-06-21 15:34:01 +12:00
parent 24d6d10a0d
commit ab31d6f724
No known key found for this signature in database
GPG key ID: 1C6A99DFA9D306FC
3 changed files with 3 additions and 6 deletions

4
.gitignore vendored
View file

@ -135,10 +135,6 @@ typings/
### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
### VisualStudioCode Patch ###
# Ignore all local history of files

View file

@ -1 +1 @@
web: yarn serve
web: yarn start

View file

@ -13,7 +13,8 @@
"node": ">=10.x.x"
},
"scripts": {
"start": "nodemon .",
"start": "node .",
"dev": "nodemon .",
"serve": "node server.js",
"test": "node test.js",
"lint": "eslint server.js middleware/*.js routes/*.js --color"