Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
admin_new2
/
public
/
gulp-tasks
/
Filename :
notify.js
back
Copy
var notifier = require("node-notifier") module.exports = (gulp, callback) => { const notifyCssTask = function(done) { return notifier.notify( { title: "CSS Build Successfull", message: "Done" }, done ) } const notifyHtmlTask = function(done) { return notifier.notify( { title: "HTML Build Successfull", message: "Done" }, done ) } const notifyJsTask = function(done) { return notifier.notify( { title: "JS Build Successfull", message: "Done" }, done ) } // --------------------------------------------------------------------------- // Exports return { css: notifyCssTask, html: notifyHtmlTask, js: notifyJsTask } }