/** * {build} * @author yutent * @date 2021/08/09 11:59:41 */ const Es = require('esbuild') Es.build({ entryPoints: ['src/index.mjs'], outfile: 'dist/index.js', minify: true, bundle: true, target: 'es6' })