import { appName, buildDir, htmlTemplate, isDevelopment, isProduction, publicPath, rendererDir, sassCommonVars, webpackDevServerPort } 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 ReactRefreshWebpackPlugin from "@pmmmwh/react-refresh-webpack-plugin"; import * as vars from "./src/common/vars"; export default [ webpackLensRenderer ]; export function webpackLensRenderer({ showVars = true } = {}): webpack.Configuration { if (showVars) { console.info("WEBPACK:renderer", vars); } return { context: __dirname, target: "electron-renderer", devtool: isProduction ? "source-map" : "eval-source-map", devServer: { contentBase: buildDir, port: webpackDevServerPort, host: "localhost", hot: true, // to avoid cors errors when requests is from iframes disableHostCheck: true, headers: { "Access-Control-Allow-Origin": "*" }, }, name: "lens-app", mode: isProduction ? "production" : "development", cache: isDevelopment, entry: { [appName]: path.resolve(rendererDir, "bootstrap.tsx"), }, output: { libraryTarget: "global", globalObject: "this", publicPath, path: buildDir, filename: "[name].js", chunkFilename: "chunks/[name].js", }, ignoreWarnings: [ /Critical dependency: the request of a dependency is an expression/, /export '.*' was not found in/ ], resolve: { extensions: [ ".js", ".jsx", ".json", ".ts", ".tsx", ], // the alias is to avoid webpack warning // "require.extensions is not supported by webpack. Use a loader instead." // from ./src/extensions/cluster-feature.ts // the trick is from alias: { "handlebars": "handlebars/dist/handlebars.js" } }, optimization: { minimize: isProduction, minimizer: [ new TerserPlugin({ 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: "ts-loader", options: { transpileOnly: true, // ForkTsCheckerPlugin does type-checking } } }, { test: /\.(jpg|png|svg|map|ico)$/, use: { loader: "file-loader", options: { name: "images/[name]-[hash:6].[ext]", esModule: false, // handle media imports in