2023-03-31 17:19:07 +03:00
|
|
|
/**
|
|
|
|
* @file Configuration for the esbuild bundler and build/watch commands.
|
|
|
|
*
|
|
|
|
* The bundler processes each entry point into a single file, each with no external dependencies and
|
|
|
|
* minified. This primarily involves resolving all imports, along with some other transformations
|
|
|
|
* (like TypeScript compilation).
|
|
|
|
*
|
|
|
|
* See the bundlers documentation for more information:
|
|
|
|
* https://esbuild.github.io/getting-started/#bundling-for-node.
|
|
|
|
*/
|
|
|
|
import * as fs from 'node:fs/promises'
|
|
|
|
import * as path from 'node:path'
|
|
|
|
import * as url from 'node:url'
|
|
|
|
|
|
|
|
import * as esbuild from 'esbuild'
|
|
|
|
import * as esbuildPluginNodeModules from '@esbuild-plugins/node-modules-polyfill'
|
|
|
|
import esbuildPluginTime from 'esbuild-plugin-time'
|
2023-05-02 20:48:07 +03:00
|
|
|
import esbuildPluginYaml from 'esbuild-plugin-yaml'
|
2023-03-31 17:19:07 +03:00
|
|
|
|
|
|
|
import postcss from 'postcss'
|
|
|
|
import tailwindcss from 'tailwindcss'
|
|
|
|
import tailwindcssNesting from 'tailwindcss/nesting/index.js'
|
|
|
|
|
|
|
|
import * as utils from '../../utils'
|
|
|
|
|
|
|
|
// =================
|
|
|
|
// === Constants ===
|
|
|
|
// =================
|
|
|
|
|
|
|
|
const THIS_PATH = path.resolve(path.dirname(url.fileURLToPath(import.meta.url)))
|
|
|
|
const TAILWIND_CONFIG_PATH = path.resolve(THIS_PATH, 'tailwind.config.ts')
|
|
|
|
|
|
|
|
// =============================
|
|
|
|
// === Environment variables ===
|
|
|
|
// =============================
|
|
|
|
|
|
|
|
export interface Arguments {
|
|
|
|
/** Path where bundled files are output. */
|
|
|
|
outputPath: string
|
|
|
|
/** `true` if in development mode (live-reload), `false` if in production mode. */
|
|
|
|
devMode: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get arguments from the environment.
|
|
|
|
*/
|
|
|
|
export function argumentsFromEnv(): Arguments {
|
|
|
|
const outputPath = path.resolve(utils.requireEnv('ENSO_BUILD_GUI'), 'assets')
|
|
|
|
return { outputPath, devMode: false }
|
|
|
|
}
|
|
|
|
|
|
|
|
// ======================
|
|
|
|
// === Inline plugins ===
|
|
|
|
// ======================
|
|
|
|
|
|
|
|
function esbuildPluginGenerateTailwind(): esbuild.Plugin {
|
|
|
|
return {
|
|
|
|
name: 'enso-generate-tailwind',
|
|
|
|
setup: build => {
|
|
|
|
interface CacheEntry {
|
|
|
|
contents: string
|
|
|
|
lastModified: number
|
|
|
|
}
|
|
|
|
let cachedOutput: Record<string, CacheEntry> = {}
|
|
|
|
let tailwindConfigLastModified = 0
|
|
|
|
let tailwindConfigWasModified = true
|
|
|
|
const cssProcessor = postcss([
|
|
|
|
tailwindcss({
|
|
|
|
config: TAILWIND_CONFIG_PATH,
|
|
|
|
}),
|
|
|
|
tailwindcssNesting(),
|
|
|
|
])
|
|
|
|
build.onStart(async () => {
|
|
|
|
const tailwindConfigNewLastModified = (await fs.stat(TAILWIND_CONFIG_PATH)).mtimeMs
|
|
|
|
tailwindConfigWasModified =
|
|
|
|
tailwindConfigLastModified !== tailwindConfigNewLastModified
|
|
|
|
tailwindConfigLastModified = tailwindConfigNewLastModified
|
|
|
|
})
|
|
|
|
build.onLoad({ filter: /\.css$/ }, async loadArgs => {
|
|
|
|
const lastModified = (await fs.stat(loadArgs.path)).mtimeMs
|
|
|
|
let output = cachedOutput[loadArgs.path]
|
|
|
|
if (!output || output.lastModified !== lastModified || tailwindConfigWasModified) {
|
|
|
|
console.log(`Processing CSS file '${loadArgs.path}'.`)
|
2023-04-11 09:04:27 +03:00
|
|
|
const content = await fs.readFile(loadArgs.path, 'utf8')
|
|
|
|
const result = await cssProcessor.process(content, { from: loadArgs.path })
|
2023-03-31 17:19:07 +03:00
|
|
|
console.log(`Processed CSS file '${loadArgs.path}'.`)
|
|
|
|
output = { contents: result.css, lastModified }
|
|
|
|
cachedOutput[loadArgs.path] = output
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
contents: output.contents,
|
|
|
|
loader: 'css',
|
|
|
|
watchFiles: [loadArgs.path, TAILWIND_CONFIG_PATH],
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ================
|
|
|
|
// === Bundling ===
|
|
|
|
// ================
|
|
|
|
|
|
|
|
/** Generate the bundler options. */
|
|
|
|
export function bundlerOptions(args: Arguments) {
|
|
|
|
const { outputPath } = args
|
|
|
|
const buildOptions = {
|
|
|
|
absWorkingDir: THIS_PATH,
|
|
|
|
bundle: true,
|
|
|
|
entryPoints: [path.resolve(THIS_PATH, 'src', 'tailwind.css')],
|
|
|
|
outdir: outputPath,
|
|
|
|
outbase: 'src',
|
|
|
|
plugins: [
|
|
|
|
esbuildPluginNodeModules.NodeModulesPolyfillPlugin(),
|
|
|
|
esbuildPluginTime(),
|
2023-05-02 20:48:07 +03:00
|
|
|
// This is not strictly needed because the cloud frontend does not use the Project Manager,
|
|
|
|
// however it is very difficult to conditionally exclude a module.
|
|
|
|
esbuildPluginYaml.yamlPlugin({}),
|
2023-03-31 17:19:07 +03:00
|
|
|
esbuildPluginGenerateTailwind(),
|
|
|
|
],
|
|
|
|
define: {
|
|
|
|
// We are defining a constant, so it should be `CONSTANT_CASE`.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
|
|
IS_DEV_MODE: JSON.stringify(args.devMode),
|
|
|
|
},
|
|
|
|
sourcemap: true,
|
|
|
|
minify: true,
|
|
|
|
metafile: true,
|
|
|
|
format: 'esm',
|
|
|
|
platform: 'browser',
|
|
|
|
color: true,
|
|
|
|
} satisfies esbuild.BuildOptions
|
|
|
|
// The narrower type is required to avoid non-null assertions elsewhere.
|
2023-04-11 09:04:27 +03:00
|
|
|
// The intersection with `esbuild.BuildOptions` is required to allow adding extra properties.
|
2023-03-31 17:19:07 +03:00
|
|
|
const correctlyTypedBuildOptions: esbuild.BuildOptions & typeof buildOptions = buildOptions
|
|
|
|
return correctlyTypedBuildOptions
|
|
|
|
}
|
|
|
|
|
|
|
|
/** ESBuild options for bundling (one-off build) the package.
|
|
|
|
*
|
|
|
|
* Relies on the environment variables to be set. */
|
|
|
|
export function bundleOptions() {
|
|
|
|
return bundlerOptions(argumentsFromEnv())
|
|
|
|
}
|