import { appName, buildDir, htmlTemplate, isDevelopment, isProduction, publicPath, rendererDir, sassCommonVars } from "./src/common/vars"; import path from "path"; import webpack from "webpack"; import HtmlWebpackPlugin from "html-webpack-plugin"; import MiniCssExtractPlugin from "mini-css-extract-plugin"; import TerserPlugin from "terser-webpack-plugin"; import ForkTsCheckerPlugin from "fork-ts-checker-webpack-plugin" import ProgressBarPlugin from "progress-bar-webpack-plugin"; export default [ webpackLensRenderer ] export function webpackLensRenderer({ showVars = true } = {}): webpack.Configuration { if (showVars) { console.info('WEBPACK:renderer', require("./src/common/vars")); } return { context: __dirname, target: "electron-renderer", devtool: "source-map", // todo: optimize in dev-mode with webpack.SourceMapDevToolPlugin name: "lens-app", mode: isProduction ? "production" : "development", cache: isDevelopment, entry: { [appName]: path.resolve(rendererDir, "bootstrap.tsx"), }, output: { libraryTarget: "global", library: "", globalObject: "this", publicPath: publicPath, path: buildDir, filename: '[name].js', chunkFilename: 'chunks/[name].js', }, stats: { warningsFilter: [ /Critical dependency: the request of a dependency is an expression/ ] }, resolve: { extensions: [ '.js', '.jsx', '.json', '.ts', '.tsx', ] }, optimization: { minimize: isProduction, minimizer: [ new TerserPlugin({ cache: true, parallel: true, sourceMap: true, extractComments: { condition: "some", banner: [ `Lens - The Kubernetes IDE. Copyright ${new Date().getFullYear()} by Mirantis, Inc. All rights reserved.` ].join("\n") } }) ], }, module: { rules: [ { test: /\.node$/, use: "node-loader" }, { test: /\.tsx?$/, exclude: /node_modules/, use: [ { loader: "babel-loader", options: { presets: [ ["@babel/preset-env", { modules: "commonjs" // ling-ui }], ] } }, { loader: "ts-loader", options: { transpileOnly: true, compilerOptions: { // localization support // https://lingui.js.org/guides/typescript.html jsx: "preserve", target: "es2016", module: "esnext", }, } } ] }, { test: /\.(jpg|png|svg|map|ico)$/, use: { loader: "file-loader", options: { name: "images/[name]-[hash:6].[ext]", esModule: false, // handle media imports in