Skip to content

Instantly share code, notes, and snippets.

@angeal185
Created May 6, 2017 17:57
Show Gist options
  • Save angeal185/998f24756164bd556ff27052e3ef602e to your computer and use it in GitHub Desktop.
Save angeal185/998f24756164bd556ff27052e3ef602e to your computer and use it in GitHub Desktop.
nodemon.json
{
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": true,
"execMap": {
"js": "node --harmony"
},
"events": {
"restart": "osascript -e 'display notification \"App restarted due to:\n'$FILENAME'\" with title \"nodemon\"'"
},
"watch": [
"test/fixtures/",
"test/samples/"
],
"env": {
"NODE_ENV": "development"
},
"ext": "js json"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment