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.
 
 
 

38 lines
838 B

const rollup = require('rollup')
async function writeBundle(bundle, outputOptions) {
await bundle.generate(outputOptions)
await bundle.write(outputOptions)
}
async function buildInline(conf) {
const bundle = await rollup.rollup(conf.inputOptions).catch(err => {
throw err
})
await writeBundle(bundle, conf.outputOptions)
console.log('BUILD CORE ==> Bundling Done 🎉');
}
async function build(options, outputs, outputOptions, inputOptions, inlineConfigs) {
const bundle = await rollup.rollup(inputOptions).catch(err => {
throw err
})
for (const option of outputs) {
await writeBundle(bundle, {
...outputOptions,
...option
})
}
for (const conf of inlineConfigs) {
await buildInline(conf)
}
}
module.exports = build