Files
Atay-Makhzan/webpack.config.js
T

289 lines
8.9 KiB
JavaScript
Raw Normal View History

import fastGlob from 'fast-glob';
import wrapAnsi from 'wrap-ansi';
import AddAssetPlugin from 'add-asset-webpack-plugin';
2025-09-03 21:17:14 -04:00
import LicenseCheckerWebpackPlugin from '@techknowlogick/license-checker-webpack-plugin';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import MonacoWebpackPlugin from 'monaco-editor-webpack-plugin';
2022-10-01 16:26:38 +02:00
import {VueLoaderPlugin} from 'vue-loader';
import EsBuildLoader from 'esbuild-loader';
2022-12-20 23:15:47 +01:00
import {parse, dirname} from 'node:path';
import webpack from 'webpack';
2022-12-20 23:15:47 +01:00
import {fileURLToPath} from 'node:url';
import {readFileSync} from 'node:fs';
import {env} from 'node:process';
2024-02-25 17:46:46 +01:00
import tailwindcss from 'tailwindcss';
import tailwindConfig from './tailwind.config.js';
2024-03-14 14:20:54 -04:00
import tailwindcssNesting from 'tailwindcss/nesting/index.js';
import postcssNesting from 'postcss-nesting';
const {EsbuildPlugin} = EsBuildLoader;
2024-11-28 02:50:54 +01:00
const {SourceMapDevToolPlugin, DefinePlugin, EnvironmentPlugin} = webpack;
2022-09-07 23:35:54 +02:00
const formatLicenseText = (licenseText) => wrapAnsi(licenseText || '', 80).trim();
2022-06-06 05:27:25 +02:00
const glob = (pattern) => fastGlob.sync(pattern, {
cwd: dirname(fileURLToPath(new URL(import.meta.url))),
absolute: true,
});
2020-02-11 11:02:41 -06:00
2020-01-28 08:30:39 +01:00
const themes = {};
2023-03-15 03:20:19 +01:00
for (const path of glob('web_src/css/themes/*.css')) {
2020-01-28 08:30:39 +01:00
themes[parse(path).name] = [path];
}
const isProduction = env.NODE_ENV !== 'development';
// ENABLE_SOURCEMAP accepts the following values:
// true - all enabled, the default in development
// reduced - minimal sourcemaps, the default in production
// false - all disabled
let sourceMaps;
if ('ENABLE_SOURCEMAP' in env) {
sourceMaps = ['true', 'false'].includes(env.ENABLE_SOURCEMAP) ? env.ENABLE_SOURCEMAP : 'reduced';
} else {
sourceMaps = isProduction ? 'reduced' : 'true';
}
2020-02-23 09:47:42 +01:00
// define which web components we use for Vue to not interpret them as Vue components
const webComponents = new Set([
// our own, in web_src/js/webcomponents
'overflow-menu',
'origin-url',
'absolute-date',
// from dependencies
'markdown-toolbar',
'relative-time',
'text-expander',
]);
2020-07-27 23:01:25 +02:00
const filterCssImport = (url, ...args) => {
const cssFile = args[1] || args[0]; // resourcePath is 2nd argument for url and 3rd for import
const importedFile = url.replace(/[?#].+/, '').toLowerCase();
2020-07-06 10:56:54 +02:00
if (cssFile.includes('fomantic')) {
if (/brand-icons/.test(importedFile)) return false;
if (/(eot|ttf|otf|woff|svg)$/i.test(importedFile)) return false;
2020-07-06 10:56:54 +02:00
}
if (cssFile.includes('katex') && /(ttf|woff)$/i.test(importedFile)) {
2022-09-13 17:33:37 +01:00
return false;
}
2020-07-06 10:56:54 +02:00
return true;
};
/** @type {import("webpack").Configuration} */
export default {
2020-02-23 09:47:42 +01:00
mode: isProduction ? 'production' : 'development',
entry: {
2020-01-28 08:30:39 +01:00
index: [
fileURLToPath(new URL('web_src/js/index.ts', import.meta.url)),
2025-03-11 12:44:52 +08:00
fileURLToPath(new URL('web_src/fomantic/build/fomantic.css', import.meta.url)),
2023-03-15 03:20:19 +01:00
fileURLToPath(new URL('web_src/css/index.css', import.meta.url)),
2020-01-28 08:30:39 +01:00
],
swagger: [
fileURLToPath(new URL('web_src/js/standalone/swagger.ts', import.meta.url)),
2023-03-15 03:20:19 +01:00
fileURLToPath(new URL('web_src/css/standalone/swagger.css', import.meta.url)),
2020-01-28 08:30:39 +01:00
],
2020-07-03 10:55:36 +01:00
'eventsource.sharedworker': [
fileURLToPath(new URL('web_src/js/features/eventsource.sharedworker.ts', import.meta.url)),
2020-07-03 10:55:36 +01:00
],
2023-06-27 04:45:24 +02:00
...(!isProduction && {
devtest: [
fileURLToPath(new URL('web_src/js/standalone/devtest.ts', import.meta.url)),
2023-06-27 04:45:24 +02:00
fileURLToPath(new URL('web_src/css/standalone/devtest.css', import.meta.url)),
],
}),
2020-01-28 08:30:39 +01:00
...themes,
},
2020-01-14 19:02:08 +01:00
devtool: false,
output: {
path: fileURLToPath(new URL('public/assets', import.meta.url)),
2023-05-31 04:07:04 +02:00
filename: () => 'js/[name].js',
2020-12-27 15:24:27 +01:00
chunkFilename: ({chunk}) => {
const language = (/monaco.*languages?_.+?_(.+?)_/.exec(chunk.id) || [])[1];
return `js/${language ? `monaco-language-${language.toLowerCase()}` : `[name]`}.[contenthash:8].js`;
2020-12-27 15:24:27 +01:00
},
},
optimization: {
2020-02-23 09:47:42 +01:00
minimize: isProduction,
minimizer: [
new EsbuildPlugin({
target: 'es2020',
2021-05-07 21:12:37 +02:00
minify: true,
2024-02-07 03:17:59 +01:00
css: true,
2021-05-19 23:46:30 +02:00
legalComments: 'none',
}),
],
2020-01-28 22:57:20 +01:00
splitChunks: {
chunks: 'async',
name: (_, chunks) => chunks.map((item) => item.name).join('-'),
},
2020-12-27 15:24:27 +01:00
moduleIds: 'named',
chunkIds: 'named',
},
2019-11-14 22:39:51 +01:00
module: {
rules: [
{
test: /\.vue$/i,
exclude: /node_modules/,
loader: 'vue-loader',
options: {
compilerOptions: {
isCustomElement: (tag) => webComponents.has(tag),
},
},
},
{
test: /\.js$/i,
exclude: /node_modules/,
use: [
{
loader: 'esbuild-loader',
options: {
loader: 'js',
target: 'es2020',
},
},
],
},
2019-11-14 22:39:51 +01:00
{
test: /\.ts$/i,
2019-11-14 22:39:51 +01:00
exclude: /node_modules/,
2020-01-22 07:35:29 +01:00
use: [
{
2021-04-02 08:11:04 +08:00
loader: 'esbuild-loader',
2020-01-22 07:35:29 +01:00
options: {
loader: 'ts',
target: 'es2020',
},
2020-01-22 07:35:29 +01:00
},
],
2019-11-17 22:39:06 +01:00
},
{
2023-03-15 03:20:19 +01:00
test: /\.css$/i,
use: [
{
loader: MiniCssExtractPlugin.loader,
},
{
loader: 'css-loader',
options: {
sourceMap: sourceMaps === 'true',
2021-08-17 07:32:48 +02:00
url: {filter: filterCssImport},
import: {filter: filterCssImport},
2024-03-14 14:20:54 -04:00
importLoaders: 1,
},
},
2024-02-25 17:46:46 +01:00
{
loader: 'postcss-loader',
options: {
postcssOptions: {
2024-03-14 14:20:54 -04:00
plugins: [
tailwindcssNesting(postcssNesting({edition: '2024-02'})),
tailwindcss(tailwindConfig),
],
2024-02-25 17:46:46 +01:00
},
},
},
],
},
2020-02-11 11:02:41 -06:00
{
test: /\.svg$/i,
include: fileURLToPath(new URL('public/assets/img/svg', import.meta.url)),
2021-03-22 23:10:09 +01:00
type: 'asset/source',
2020-02-11 11:02:41 -06:00
},
2020-05-14 18:06:01 +02:00
{
test: /\.(ttf|woff2?)$/i,
2021-03-30 13:17:24 +02:00
type: 'asset/resource',
generator: {
filename: 'fonts/[name].[contenthash:8][ext]',
},
2020-05-14 18:06:01 +02:00
},
],
2020-01-14 19:02:08 +01:00
},
plugins: [
new DefinePlugin({
__VUE_OPTIONS_API__: true, // at the moment, many Vue components still use the Vue Options API
__VUE_PROD_DEVTOOLS__: false, // do not enable devtools support in production
2024-02-16 03:27:45 +01:00
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: false, // https://github.com/vuejs/vue-cli/pull/7443
}),
2024-11-28 02:50:54 +01:00
// all environment variables used in bundled js via process.env must be declared here
new EnvironmentPlugin({
TEST: 'false',
}),
new VueLoaderPlugin(),
new MiniCssExtractPlugin({
filename: 'css/[name].css',
chunkFilename: 'css/[name].[contenthash:8].css',
}),
sourceMaps !== 'false' && new SourceMapDevToolPlugin({
filename: '[file].[contenthash:8].map',
...(sourceMaps === 'reduced' && {include: /^js\/index\.js$/}),
}),
2020-05-14 18:06:01 +02:00
new MonacoWebpackPlugin({
filename: 'js/monaco-[name].[contenthash:8].worker.js',
2020-05-14 18:06:01 +02:00
}),
2020-12-27 15:24:27 +01:00
isProduction ? new LicenseCheckerWebpackPlugin({
outputFilename: 'licenses.txt',
2020-12-27 15:24:27 +01:00
outputWriter: ({dependencies}) => {
const line = '-'.repeat(80);
2022-09-07 23:35:54 +02:00
const goJson = readFileSync('assets/go-licenses.json', 'utf8');
const goModules = JSON.parse(goJson).map(({name, licenseText}) => {
return {name, body: formatLicenseText(licenseText)};
});
2022-09-04 00:20:46 +02:00
const jsModules = dependencies.map(({name, version, licenseName, licenseText}) => {
2022-09-07 23:35:54 +02:00
return {name, version, licenseName, body: formatLicenseText(licenseText)};
2022-09-04 00:20:46 +02:00
});
const modules = [...goModules, ...jsModules].sort((a, b) => a.name.localeCompare(b.name));
return modules.map(({name, version, licenseName, body}) => {
const title = licenseName ? `${name}@${version} - ${licenseName}` : name;
return `${line}\n${title}\n${line}\n${body}`;
}).join('\n');
},
2020-12-27 15:24:27 +01:00
override: {
2022-11-22 01:58:55 +01:00
'khroma@*': {licenseName: 'MIT'}, // https://github.com/fabiospampinato/khroma/pull/33
},
2022-11-18 18:54:32 +01:00
emitError: true,
2024-03-15 20:24:27 +02:00
allow: '(Apache-2.0 OR 0BSD OR BSD-2-Clause OR BSD-3-Clause OR MIT OR ISC OR CPAL-1.0 OR Unlicense OR EPL-1.0 OR EPL-2.0)',
}) : new AddAssetPlugin('licenses.txt', `Licenses are disabled during development`),
],
2020-01-14 19:02:08 +01:00
performance: {
2020-03-17 23:57:17 +01:00
hints: false,
2020-05-14 18:06:01 +02:00
maxEntrypointSize: Infinity,
maxAssetSize: Infinity,
2020-01-14 19:02:08 +01:00
},
2020-01-22 07:35:29 +01:00
resolve: {
2025-09-03 21:17:14 -04:00
symlinks: true,
modules: ['node_modules'],
},
2020-02-23 09:47:42 +01:00
watchOptions: {
ignored: [
'node_modules/**',
],
},
2020-05-14 18:06:01 +02:00
stats: {
2020-12-27 15:24:27 +01:00
assetsSort: 'name',
assetsSpace: Infinity,
cached: false,
cachedModules: false,
2020-05-14 18:06:01 +02:00
children: false,
2020-12-27 15:24:27 +01:00
chunkModules: false,
chunkOrigins: false,
chunksSort: 'name',
colors: true,
entrypoints: false,
2020-08-02 16:06:06 +02:00
excludeAssets: [
2020-12-27 15:24:27 +01:00
/^js\/monaco-language-.+\.js$/,
!isProduction && /^licenses.txt$/,
].filter(Boolean),
2020-12-27 15:24:27 +01:00
groupAssetsByChunk: false,
groupAssetsByEmitStatus: false,
groupAssetsByInfo: false,
groupModulesByAttributes: false,
modules: false,
reasons: false,
runtimeModules: false,
2020-05-14 18:06:01 +02:00
},
};