28 lines
626 B
JavaScript
Raw Permalink Normal View History

2021-12-25 14:39:47 +01:00
const rollup = require('rollup')
const configs = require('./build-config.js')()
const watch = () => {
configs.forEach(async file => {
const watchOptions = {
...file.inputOptions,
output: [file.outputOptions],
watch: {
// chokidar,
// clearScreen,
// exclude,
// include
}
}
const watcher = rollup.watch(watchOptions)
watcher.on('event', event => {
// ...
})
})
console.log('WATCH PLUGINS ==> Write Bundle : Done 🎉');
}
module.exports = watch