Webpack plugin for showing banner after all notifications
// webpack.config.js
const TerminalBannerPlugin = require('@inoy/terminal-banner-plugin')
// other code
module.exports = {
//… rest of your webpack config
plugins: [
new WebpackNotifier2Plugin(/* check out my other plugin ;-) */),
new TerminalBannerPlugin()
]
}
The banner will show only in development mode
Minimal supported is Node 14 and Webpack 5. Node 12 and Webpack 4 should work but I didn't test.
GPLv3