mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-14 11:37:43 +00:00
10 lines
No EOL
292 B
JavaScript
10 lines
No EOL
292 B
JavaScript
import esbuild from 'esbuild';
|
|
import { esmConfiguration } from '../web/es-bundling/build/index.mjs';
|
|
|
|
await esbuild.build({
|
|
...esmConfiguration,
|
|
entryPoints: {
|
|
'index': 'build/obj/web/index.js',
|
|
},
|
|
outdir: 'build/lib/web' // We want to preserve the subdirectory for this one.
|
|
}); |