enso/app/ide-desktop/lib/content/bundle.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
238 B
TypeScript
Raw Normal View History

/** @file Entry point for the bundler. */
import * as esbuild from 'esbuild'
import * as bundler from './esbuild-config'
try {
void esbuild.build(bundler.bundleOptions())
} catch (error) {
console.error(error)
throw error
}