Skip to content

Instantly share code, notes, and snippets.

@josefaidt
Created December 20, 2018 22:06
Show Gist options
  • Save josefaidt/d6271590cee5d6b1d6f7c0d4cd35dad3 to your computer and use it in GitHub Desktop.
Save josefaidt/d6271590cee5d6b1d6f7c0d4cd35dad3 to your computer and use it in GitHub Desktop.
my nodemon config w/ macos alerts
{
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": true,
"events": {
"restart": "osascript -e 'display notification \"App restarted due to:\n'${FILENAME##*/}'\" with title \"nodemon\"'"
},
"watch": [
"src/",
"src/index.html"
],
"env": {
"NODE_ENV": "development"
},
"ext": "html,css,js,json"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment