Qortal UI - Main Code Repository A User Interface for the Qortal Blockchain Project. Truly decentralized web hosting, application hosting, communications, data storage, and full infrastructure for the future global decentralized digital world.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
494 B

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