4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-11 17:55:51 +00:00
qortal-ui/core/tooling/watch-inlines.js
AlphaX-Projects fa29ff4c43 Update UI
Refactor and added new functioms
2024-05-08 13:16:23 +02:00

17 lines
338 B
JavaScript

const rollup = require('rollup')
async function watchInlines(inlineConfigs) {
for (const conf of inlineConfigs) {
const watchOptions = {
...conf.inputOptions,
output: [conf.outputOptions],
watch: {
}
}
const watcher = rollup.watch(watchOptions)
watcher.on('event', event => {
})
}
}
module.exports = watchInlines