@tgwf/co2
Version:
Work out the co2 of your digital services
17 lines (15 loc) • 376 B
JavaScript
const { globPlugin } = require('esbuild-plugin-glob');
function main() {
require('esbuild').build({
entryPoints: ['src/**/!(*.test.js|test-constants.js|!(*.js))'],
bundle: false,
minify: false,
sourcemap: true,
target: ['node14'],
outdir: 'dist/cjs/',
outExtension: { '.js': '.js' },
format: 'cjs',
plugins: [globPlugin()]
})
}
main()