mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
* core: Bump packages. * Bump Live Reload dependencies. * Bump tsconfig. * Bum ESLint config deps. Fix formatting. * Bump Prettier deps. Fix ESlint config. * Bump live reload deps. Fix linter. * Bump website deps. * web: Update dependencies. Fix Playwright issues. * Fix deprecations. * Fix linter warnings. * Fix override, run audit. * Fix import path. * Tidy types. * Format. * Update ignore patterns. * Fix import path. * Update deps. Clean up workspace linting. * Update deps, options. * Hide icons in navbar. * Format. * Remove deprecated option. * Use relative packages. * Add scripts. Tidy. * Bump engines. * Clarify order. * Clarify order. Install base deps. * Format. * Fix stale user during tests. * Fix runtime errors. * Fix redirect during tests, UI change. * web: Fix danger button hover background color. * web: Adjust colors, padding. * web: Fix sidebar colors, padding. * Fix alignment. * Fix background contrast.
82 lines
2.3 KiB
JavaScript
82 lines
2.3 KiB
JavaScript
/**
|
|
* @file Rollup configuration for the SFE package.
|
|
* @import { Plugin, RollupOptions } from "rollup";
|
|
*/
|
|
|
|
import * as fs from "node:fs/promises";
|
|
import { join } from "node:path";
|
|
|
|
import commonjs from "@rollup/plugin-commonjs";
|
|
import resolve from "@rollup/plugin-node-resolve";
|
|
import swc from "@rollup/plugin-swc";
|
|
|
|
export async function createConfig() {
|
|
// Rollup's CJS to ESM conversion doesn't work well with sub-dependencies.
|
|
// We use an async import to fix the issue.
|
|
const { resolvePackage, MonoRepoRoot } = await import("@goauthentik/core/paths/node");
|
|
|
|
const distDirectory = join(MonoRepoRoot, "web", "dist", "sfe");
|
|
const bootstrapDirectory = resolvePackage("bootstrap", import.meta);
|
|
|
|
/**
|
|
* @type {Plugin} A plugin to copy static assets.
|
|
*/
|
|
const copyPlugin = {
|
|
name: "copy-static-assets",
|
|
buildEnd: async () => {
|
|
console.log("Copying static assets...");
|
|
|
|
const bootstrapCSSFilePath = join(
|
|
bootstrapDirectory,
|
|
"dist",
|
|
"css",
|
|
"bootstrap.min.css",
|
|
);
|
|
|
|
await fs.mkdir(distDirectory, { recursive: true });
|
|
await fs.copyFile(bootstrapCSSFilePath, join(distDirectory, "bootstrap.min.css"));
|
|
},
|
|
};
|
|
|
|
/**
|
|
* @type {RollupOptions}
|
|
*/
|
|
const config = {
|
|
input: "src/index.ts",
|
|
output: {
|
|
dir: distDirectory,
|
|
format: "cjs",
|
|
},
|
|
context: "window",
|
|
plugins: [
|
|
copyPlugin,
|
|
resolve({ browser: true }),
|
|
commonjs(),
|
|
swc({
|
|
swc: {
|
|
jsc: {
|
|
loose: false,
|
|
externalHelpers: false,
|
|
// Requires v1.2.50 or upper and requires target to be es2016 or upper.
|
|
keepClassNames: false,
|
|
},
|
|
minify: false,
|
|
env: {
|
|
targets: {
|
|
edge: "17",
|
|
ie: "11",
|
|
},
|
|
mode: "entry",
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
};
|
|
|
|
return config;
|
|
}
|
|
|
|
console.log("Preparing SFE package...");
|
|
|
|
export default createConfig;
|