UNPKG

216 BJavaScriptView Raw
1const path = require('path');
2const notifier = require('node-notifier');
3
4notifier.notify({
5 title: 'EEUI',
6 message: "Build successful",
7 contentImage: path.join(__dirname, 'logo.png')
8});
9
10process.exit();