/** * {build} * @author yutent * @date 2021/08/09 11:59:41 */ import Es from 'esbuild' import fs from 'iofs' Es.build({ entryPoints: ['src/index.js'], outfile: 'dist/index.mjs', platform: 'node', bundle: true, minify: true, format: 'esm' }) Es.build({ entryPoints: ['src/index.js'], outfile: 'dist/index.js', platform: 'node', bundle: true, minify: true }) fs.cp('src/index.d.ts', 'dist/index.d.ts')