pomy
Version:
Based on the concept of a project object model (POM), POMY can manage a project's build, reporting and documentation from a central piece of information.
19 lines (13 loc) • 318 B
JavaScript
var
notify,
__slice = [].slice;
notify = require('gulp-notify');
module.exports = function() {
var args = 1 <= arguments.length ? __slice.call(arguments, 0) : [];
notify.onError({
title: 'Compile Error',
message: '<%= error.message %>'
}).apply(this, args);
this.emit('end');
};
;