gulp-visualforce
Version:
Plugin to develop Javascript Apps on Salesforce's Visualforce Technology. Develop locally and automatically deploy static resources
17 lines (12 loc) • 376 B
JavaScript
var notify = require("gulp-notify");
module.exports = function() {
var args = Array.prototype.slice.call(arguments);
console.log( args )
// Send error to notification center with gulp-notify
notify.onError({
title: "Compile Error",
message: "<%= error.message %>"
}).apply(this, args);
// Keep gulp from hanging on this task
this.emit('end');
};