Created
December 20, 2018 22:06
-
-
Save josefaidt/d6271590cee5d6b1d6f7c0d4cd35dad3 to your computer and use it in GitHub Desktop.
my nodemon config w/ macos alerts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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