├── .editorconfig ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── bin ├── Grunt.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── Grunt │ │ ├── PkgInfo │ │ └── Resources │ │ ├── Grunt.icns │ │ └── en.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── MainMenu.nib └── toaster │ ├── Microsoft.WindowsAPICodePack.Shell.dll │ ├── Microsoft.WindowsAPICodePack.dll │ └── toast.exe ├── images └── grunt-logo.png ├── lib ├── hooks │ ├── notify-fail.js │ └── notify-jshint.js ├── notify-lib.js ├── platforms │ ├── growl-notify.js │ ├── hey-snarl.js │ ├── no-notifications.js │ ├── notification-center.js │ ├── notify-send.js │ └── toaster.js └── util │ ├── debug.js │ ├── findApp.js │ ├── guessProjectName.js │ ├── removeColor.js │ └── spawn.js ├── package.json ├── screenshots ├── growl-deploy.png ├── growl-jshint-lots.png ├── growl-jshint.png ├── growl-nodeunit.png ├── notification-center-deploy.png ├── notification-center-jshint.png ├── notification-center-sidebar-jshint.png ├── notify-send-jshint.png └── snarl-nodeunit.png ├── tasks ├── notify.js └── notify_hooks.js ├── templates ├── grunt-notify.md └── readme │ ├── notification-systems.md │ ├── options-notify-hooks.md │ ├── options-notify.md │ ├── screenshots.md │ └── tests.md └── test ├── fixtures └── jshint-errors.js └── notify.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | data -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/README.md -------------------------------------------------------------------------------- /bin/Grunt.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/bin/Grunt.app/Contents/Info.plist -------------------------------------------------------------------------------- /bin/Grunt.app/Contents/MacOS/Grunt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/bin/Grunt.app/Contents/MacOS/Grunt -------------------------------------------------------------------------------- /bin/Grunt.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /bin/Grunt.app/Contents/Resources/Grunt.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/bin/Grunt.app/Contents/Resources/Grunt.icns -------------------------------------------------------------------------------- /bin/Grunt.app/Contents/Resources/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/bin/Grunt.app/Contents/Resources/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /bin/Grunt.app/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/bin/Grunt.app/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /bin/Grunt.app/Contents/Resources/en.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/bin/Grunt.app/Contents/Resources/en.lproj/MainMenu.nib -------------------------------------------------------------------------------- /bin/toaster/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/bin/toaster/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /bin/toaster/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/bin/toaster/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /bin/toaster/toast.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/bin/toaster/toast.exe -------------------------------------------------------------------------------- /images/grunt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/images/grunt-logo.png -------------------------------------------------------------------------------- /lib/hooks/notify-fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/hooks/notify-fail.js -------------------------------------------------------------------------------- /lib/hooks/notify-jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/hooks/notify-jshint.js -------------------------------------------------------------------------------- /lib/notify-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/notify-lib.js -------------------------------------------------------------------------------- /lib/platforms/growl-notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/platforms/growl-notify.js -------------------------------------------------------------------------------- /lib/platforms/hey-snarl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/platforms/hey-snarl.js -------------------------------------------------------------------------------- /lib/platforms/no-notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/platforms/no-notifications.js -------------------------------------------------------------------------------- /lib/platforms/notification-center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/platforms/notification-center.js -------------------------------------------------------------------------------- /lib/platforms/notify-send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/platforms/notify-send.js -------------------------------------------------------------------------------- /lib/platforms/toaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/platforms/toaster.js -------------------------------------------------------------------------------- /lib/util/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/util/debug.js -------------------------------------------------------------------------------- /lib/util/findApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/util/findApp.js -------------------------------------------------------------------------------- /lib/util/guessProjectName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/util/guessProjectName.js -------------------------------------------------------------------------------- /lib/util/removeColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/util/removeColor.js -------------------------------------------------------------------------------- /lib/util/spawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/lib/util/spawn.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/growl-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/screenshots/growl-deploy.png -------------------------------------------------------------------------------- /screenshots/growl-jshint-lots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/screenshots/growl-jshint-lots.png -------------------------------------------------------------------------------- /screenshots/growl-jshint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/screenshots/growl-jshint.png -------------------------------------------------------------------------------- /screenshots/growl-nodeunit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/screenshots/growl-nodeunit.png -------------------------------------------------------------------------------- /screenshots/notification-center-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/screenshots/notification-center-deploy.png -------------------------------------------------------------------------------- /screenshots/notification-center-jshint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/screenshots/notification-center-jshint.png -------------------------------------------------------------------------------- /screenshots/notification-center-sidebar-jshint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/screenshots/notification-center-sidebar-jshint.png -------------------------------------------------------------------------------- /screenshots/notify-send-jshint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/screenshots/notify-send-jshint.png -------------------------------------------------------------------------------- /screenshots/snarl-nodeunit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/screenshots/snarl-nodeunit.png -------------------------------------------------------------------------------- /tasks/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/tasks/notify.js -------------------------------------------------------------------------------- /tasks/notify_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/tasks/notify_hooks.js -------------------------------------------------------------------------------- /templates/grunt-notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/templates/grunt-notify.md -------------------------------------------------------------------------------- /templates/readme/notification-systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/templates/readme/notification-systems.md -------------------------------------------------------------------------------- /templates/readme/options-notify-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/templates/readme/options-notify-hooks.md -------------------------------------------------------------------------------- /templates/readme/options-notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/templates/readme/options-notify.md -------------------------------------------------------------------------------- /templates/readme/screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/templates/readme/screenshots.md -------------------------------------------------------------------------------- /templates/readme/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/templates/readme/tests.md -------------------------------------------------------------------------------- /test/fixtures/jshint-errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/test/fixtures/jshint-errors.js -------------------------------------------------------------------------------- /test/notify.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dylang/grunt-notify/HEAD/test/notify.test.js --------------------------------------------------------------------------------