/** * 子线程 * @author yutent * @date 2023/06/14 16:15:39 */ import { workerData } from 'node:worker_threads' import { compileFiles } from './compile.js' const { options, data } = workerData options.isCustomElement = Function('return ' + options.isCustomElement)() console.log('data: ', data.title, Date.now() - data.timeStart) // for (let [currentPage, { page, files }] of data.chunk.entries()) { // currentPage && console.log('正在生成 %s ...', `${currentPage}.html`) // compileFiles(currentPage, page, files, options, data) // }