Merge pull request #69 from Joe-Dowd/refactor

&& in npm run dev
This commit is contained in:
Ajay Ramachandran
2020-04-04 23:40:44 -04:00
committed by GitHub

View File

@@ -5,7 +5,7 @@
"main": "index.js",
"scripts": {
"test": "node test.js",
"dev": "nodemon -x \"(npm test || echo test failed) & npm start\"",
"dev": "nodemon -x \"(npm test || echo test failed) && npm start\"",
"start": "node index.js"
},
"author": "Ajay Ramachandran",