Fixed npm run dev to work on Windows

This commit is contained in:
Ajay Ramachandran 2020-04-04 11:33:22 -04:00
parent 73599be5b8
commit d94c81ed23

View file

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