mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 06:32:30 +03:00
5a100ea79b
* Switch dashboard to esbuild
* Minor fixes; move Tailwind generation into esbuild-config
* Fix watching `content/` and `client/`
* Bump esbuild binary versions; minor dependency list fixes
* Fixes; rename "npm run dev" to "npm run watch-dashboard"
* Avoid writing esbuild outputs to disk for `dashboard/`
* Convert watch-dashboard to be fully in-memory; rebuild css files on change
* Remove obsolete FIXME
* Remove unused constants
* Run prettier
* add missing styles
* Fixes
* Fix the fixes
* Run prettier
* Fixes; use nesting plugin to wrap tailwind preflight
* Remove testing flag from client/watch
* Minor fixes
* Run prettier
* Make css rebuild when tailwind config changes
* Fix bundling for dashboard
* Fix dashboard/bundle.ts erroring when build directory does not exist
* Fix esbuild binary package names
* Remove redundant "npx" prefix from build scripts
* Remove unused dependency
* workaround for mac freeze
* add missing sections
* Address review issue
* Fix live-reload of `npm run watch-dashboard`
* Fix service worker for client-side routing
* Fix GL crash
* Revert "Fix GL crash"
This reverts commit 612136bc1a
.
* Implement suggested fix
* prettier
---------
Co-authored-by: Paweł Buchowski <pawel.buchowski@enso.org>
26 lines
732 B
TypeScript
26 lines
732 B
TypeScript
/** @file Script that bundles JS client code. */
|
|
|
|
import * as path from 'node:path'
|
|
import * as url from 'node:url'
|
|
|
|
import * as esbuild from 'esbuild'
|
|
|
|
import * as bundler from './esbuild-config'
|
|
import * as dashboardBundler from '../dashboard/esbuild-config'
|
|
|
|
// =================
|
|
// === Constants ===
|
|
// =================
|
|
|
|
export const THIS_PATH = path.resolve(path.dirname(url.fileURLToPath(import.meta.url)))
|
|
|
|
// ================
|
|
// === Bundling ===
|
|
// ================
|
|
|
|
// The dashboard bundler bundles `tailwind.css`.
|
|
const DASHBOARD_BUNDLER_OPTIONS = dashboardBundler.bundleOptions()
|
|
await esbuild.build(DASHBOARD_BUNDLER_OPTIONS)
|
|
const BUNDLER_OPTIONS = bundler.bundlerOptionsFromEnv()
|
|
await esbuild.build(BUNDLER_OPTIONS)
|