import { isDirectoryAsync, each } from '../util' import * as globs from 'globby' import { NexeCompiler } from '../compiler' export default async function resource(compiler: NexeCompiler, next: () => Promise) { const { cwd } = compiler.options if (!compiler.options.resources.length) { return next() } const step = compiler.log.step('Bundling Resources...') let count = 0 await each(globs(compiler.options.resources, { cwd }), async file => { if (await isDirectoryAsync(file)) { return } count++ step.log(`Including file: ${file}`) await compiler.addResource(file) }) step.log(`Included ${count} file(s). ${(compiler.resourceSize / 1e6).toFixed(3)} MB`) return next() }