enso/app/ide-desktop/lib/client/esbuild-config.ts
somebody1234 143665d944
Remove obsolete GUI arguments (#9466)
- Close #8610

# Important Notes
QA notes:
- The GUI2 warning screen should not show up - the arguments that GUI2 do not understand have been removed.
- However, it should be tested that the warnings screen should correctly work when invalid arguments really *are* passed in:
- Via URL query parameters (electron, might need to open the electron app then the browser, *or* do `location.href = ` in DevTools in Electron.)
- By editing `Editor.tsx` to inject invalid args to the big configuration object we pass to the GUI entrypoint.
2024-04-05 16:20:56 +00:00

65 lines
2.0 KiB
TypeScript

/** @file Esbuild config file. */
import * as path from 'node:path'
import type * as esbuild from 'esbuild'
import esbuildPluginYaml from 'esbuild-plugin-yaml'
import * as appConfig from 'enso-common/src/appConfig'
import * as paths from './paths'
// ====================
// === Global setup ===
// ====================
await appConfig.readEnvironmentFromFile()
// ================
// === Bundling ===
// ================
/** Get the bundler options using the environment.
*
* The following environment variables are required:
* - `ENSO_BUILD_IDE` - output directory for bundled client files;
* - `ENSO_BUILD_PROJECT_MANAGER_IN_BUNDLE_PATH` - path to the project manager executable relative
* to the PM bundle root;
* @see bundlerOptions
*/
export function bundlerOptionsFromEnv(devMode = false): esbuild.BuildOptions {
return bundlerOptions(
path.join(paths.getIdeDirectory(), 'client'),
paths.getProjectManagerInBundlePath(),
devMode
)
}
/** Get options without relying on the environment. */
export function bundlerOptions(
outdir: string,
projectManagerInBundlePath: string,
devMode = false
): esbuild.BuildOptions {
return {
bundle: true,
outdir,
entryPoints: ['src/index.ts', 'src/preload.ts'],
outbase: 'src',
format: 'cjs',
platform: 'node',
plugins: [esbuildPluginYaml.yamlPlugin({})],
// The names come from a third-party API and cannot be changed.
/* eslint-disable @typescript-eslint/naming-convention */
outExtension: { '.js': '.cjs' },
define: {
PROJECT_MANAGER_IN_BUNDLE_PATH: JSON.stringify(projectManagerInBundlePath),
'process.env.ELECTRON_DEV_MODE': JSON.stringify(String(devMode)),
'process.env.GUI_CONFIG_PATH': JSON.stringify(
path.resolve('../../../gui2/vite.config.ts')
),
},
/* eslint-enable @typescript-eslint/naming-convention */
sourcemap: true,
external: ['electron', 'vite', 'lightningcss'],
}
}