UNPKG

301 BJavaScriptView Raw
1'use strict';
2
3var
4 notify = require('gulp-notify');
5
6module.exports = function() {
7
8 var args = 1 <= arguments.length ? Array.prototype.slice.call(arguments, 0) : [];
9
10 notify.onError({
11 title: 'Compile Error',
12 message: '<%= error.message %>'
13 }).apply(this, args);
14
15 this.emit('end');
16};
\No newline at end of file