mirror of
https://github.com/enso-org/enso.git
synced 2024-12-20 23:21:39 +03:00
fde2f71419
- Change paths from `foo-bar` to `@/fooBar` to be consistent with GUI module naming # Important Notes None
11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
/** @file Script that bundles JS client code. */
|
|
import * as esbuild from 'esbuild'
|
|
|
|
import * as bundler from './esbuildConfig'
|
|
|
|
// ================
|
|
// === Bundling ===
|
|
// ================
|
|
|
|
await esbuild.build(bundler.bundlerOptionsFromEnv())
|