mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
* Move inline styles into separate file. * Fix preferred order of captcha vendor discovery. * Clean up mutation and resize observer lifecycle. * Flesh out controllers. * Tidy refresh. * Fix incompatibilities with Storybook. * Flesh out captcha stories. * Bump package. * Flesh out stories. * Move inline styles into separate file. * Fix preferred order of captcha vendor discovery. * Clean up mutation and resize observer lifecycle. * Flesh out controllers. * Tidy refresh. * Remove unused. * Bump package.
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
/**
|
|
* @file Bundler utilities.
|
|
*/
|
|
|
|
import { NodeEnvironment, serializeEnvironmentVars } from "@goauthentik/core/environment/node";
|
|
import {
|
|
AuthentikVersion,
|
|
CurrentReleaseDocsURL,
|
|
PreReleaseDocsURL,
|
|
ReleaseNotesURL,
|
|
} from "@goauthentik/core/version/node";
|
|
|
|
/**
|
|
* Creates a mapping of environment variables to their respective runtime constants.
|
|
*/
|
|
export function createBundleDefinitions() {
|
|
const SerializedNodeEnvironment = /** @type {`"development"` | `"production"`} */ (
|
|
JSON.stringify(NodeEnvironment)
|
|
);
|
|
|
|
/**
|
|
* @satisfies {Record<ESBuildImportEnvKey, string>}
|
|
*/
|
|
const envRecord = {
|
|
AK_VERSION: AuthentikVersion,
|
|
AK_DOCS_URL: CurrentReleaseDocsURL.href,
|
|
AK_DOCS_RELEASE_NOTES_URL: ReleaseNotesURL.href,
|
|
AK_DOCS_PRE_RELEASE_URL: PreReleaseDocsURL.href,
|
|
AK_API_BASE_PATH: process.env.AK_API_BASE_PATH ?? "",
|
|
AK_BUNDLER: JSON.stringify(process.env.AK_BUNDLER ?? "authentik"),
|
|
};
|
|
|
|
return {
|
|
...serializeEnvironmentVars(envRecord),
|
|
// We need to explicitly set this for NPM packages that use `process`
|
|
// to determine their environment.
|
|
"process.env.NODE_ENV": SerializedNodeEnvironment,
|
|
};
|
|
}
|