4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-11 17:55:51 +00:00
qortal-ui/plugins/watch.js
2023-05-11 18:40:52 +02:00

23 lines
496 B
JavaScript

const rollup = require('rollup')
const configs = require('./build-config.js')()
const watch = () => {
configs.forEach(async file => {
const watchOptions = {
...file.inputOptions,
output: [file.outputOptions],
watch: {}
}
const watcher = rollup.watch(watchOptions)
watcher.on('event', event => {
// ...
})
})
console.log('WATCH PLUGINS ==> Write Bundle : Done 🎉')
}
module.exports = watch