webpack-watch-urls
v0.0.2
Published
Webpack plugin that will recompile webpack when the given urls content changes
Downloads
4
Readme
A webpack plugin that will eventually watch urls and update webpack when those urls' content changes.
Adding a plugin to webpack:
const webpack = require('webpack');
const urlWatchPlugin = require('webpack-watch-urls');
module.exports = {
plugins: [
new urlWatchPlugin(),
]
};