Get notified about the status of your webpack build during development.
npm install webpack-blink1-notify --save-dev
In your webpack configuration file add:
var WebpackBlink1Notify = require('path-to/webpack-blink1-notify');
[...]
plugins: [
new webpack-blink1-notify(),
]
you can customize the LED Colors like this:
var WebpackBlink1Notify = require('path-to/webpack-blink1-notify');
[...]
plugins: [
new webpack-blink1-notify({
colors: {
working: '#ffffff',
fail: '#ff0000',
ready: '#0000ff',
},
}),
]
- publish npm package