mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 03:22:19 +03:00
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
|
const esbuild = require('esbuild')
|
||
|
|
||
|
esbuild.build({
|
||
|
entryPoints: ['src/index.ts'],
|
||
|
bundle: true,
|
||
|
minify: true,
|
||
|
platform: 'node',
|
||
|
outfile: 'bundle/bundle.js'
|
||
|
})
|