mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-04-27 15:07:42 +00:00
fix: Use nodemon in dev script instead of start
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
parent
24d6d10a0d
commit
ab31d6f724
3 changed files with 3 additions and 6 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -135,10 +135,6 @@ typings/
|
||||||
|
|
||||||
### VisualStudioCode ###
|
### VisualStudioCode ###
|
||||||
.vscode/*
|
.vscode/*
|
||||||
!.vscode/settings.json
|
|
||||||
!.vscode/tasks.json
|
|
||||||
!.vscode/launch.json
|
|
||||||
!.vscode/extensions.json
|
|
||||||
|
|
||||||
### VisualStudioCode Patch ###
|
### VisualStudioCode Patch ###
|
||||||
# Ignore all local history of files
|
# Ignore all local history of files
|
||||||
|
|
|
||||||
2
Procfile
2
Procfile
|
|
@ -1 +1 @@
|
||||||
web: yarn serve
|
web: yarn start
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,8 @@
|
||||||
"node": ">=10.x.x"
|
"node": ">=10.x.x"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "nodemon .",
|
"start": "node .",
|
||||||
|
"dev": "nodemon .",
|
||||||
"serve": "node server.js",
|
"serve": "node server.js",
|
||||||
"test": "node test.js",
|
"test": "node test.js",
|
||||||
"lint": "eslint server.js middleware/*.js routes/*.js --color"
|
"lint": "eslint server.js middleware/*.js routes/*.js --color"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue