31 lines
823 B
JavaScript
31 lines
823 B
JavaScript
/*
|
|
* grunt-notify
|
|
* https://github.com/dylang/grunt-notify
|
|
*
|
|
* Copyright (c) 2013 Dylan Greene
|
|
* Licensed under the MIT license.
|
|
*/
|
|
'use strict';
|
|
module.exports = function gruntTask(grunt) {
|
|
|
|
var notify = require('../lib/notify-lib');
|
|
var guessProjectName = require('../lib/util/guessProjectName');
|
|
|
|
var defaults = {
|
|
title: guessProjectName(),
|
|
message: '' //required
|
|
};
|
|
|
|
// Use this to show an arbitrary notification.
|
|
grunt.registerMultiTask('notify', 'Show an arbitrary notification whenever you need.', function() {
|
|
var options = this.options(defaults);
|
|
var done = this.async();
|
|
|
|
if (options.message) {
|
|
notify(options, done);
|
|
} else {
|
|
done(new Error('Notify message is required. Make sure your notify configuration is inside an options object.'));
|
|
}
|
|
});
|
|
};
|