Very simple webpack plugin that plays a sound when build is done
npm i --dev sound-notification-webpack-plugin
var SoundNotificationWebpackPlugin = require('sound-notification-webpack-plugin');
new SoundNotificationWebpackPlugin(options);
options = {
player: 'paplay',
successSound: '/usr/share/sounds/ubuntu/stereo/dialog-information.ogg',
errorSound: '/usr/share/sounds/ubuntu/stereo/dialog-error.ogg'
}