2018-04-07 05:20:53 +02:00
|
|
|
const path = require("path");
|
|
|
|
const webpack = require("webpack");
|
2021-04-23 10:45:20 +02:00
|
|
|
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
|
2018-04-07 05:20:53 +02:00
|
|
|
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
|
|
|
const CopyWebpackPlugin = require("copy-webpack-plugin");
|
2020-05-08 17:54:37 +02:00
|
|
|
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
2021-12-09 21:08:34 +01:00
|
|
|
const { AngularWebpackPlugin } = require("@ngtools/webpack");
|
2022-02-14 15:06:14 +01:00
|
|
|
const TerserPlugin = require("terser-webpack-plugin");
|
2018-04-04 04:14:54 +02:00
|
|
|
|
2018-04-13 21:14:04 +02:00
|
|
|
if (process.env.NODE_ENV == null) {
|
|
|
|
process.env.NODE_ENV = "development";
|
|
|
|
}
|
|
|
|
const ENV = (process.env.ENV = process.env.NODE_ENV);
|
|
|
|
|
2018-04-13 22:03:37 +02:00
|
|
|
const moduleRules = [
|
2021-12-21 15:43:35 +01:00
|
|
|
{
|
2018-04-13 22:03:37 +02:00
|
|
|
test: /\.(html)$/,
|
|
|
|
loader: "html-loader",
|
2021-12-21 15:43:35 +01:00
|
|
|
},
|
|
|
|
{
|
2018-04-13 22:03:37 +02:00
|
|
|
test: /.(ttf|otf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
|
|
|
|
exclude: /loading.svg/,
|
2021-12-09 21:08:34 +01:00
|
|
|
generator: {
|
2022-01-27 19:18:57 +01:00
|
|
|
filename: "popup/fonts/[name][ext]",
|
2018-04-13 22:03:37 +02:00
|
|
|
},
|
2021-12-09 21:08:34 +01:00
|
|
|
type: "asset/resource",
|
2021-12-21 15:43:35 +01:00
|
|
|
},
|
2018-04-13 22:03:37 +02:00
|
|
|
{
|
|
|
|
test: /\.(jpe?g|png|gif|svg)$/i,
|
2022-02-02 16:11:09 +01:00
|
|
|
exclude: /.*(bwi-font|glyphicons-halflings-regular)\.svg/,
|
2018-04-13 22:03:37 +02:00
|
|
|
generator: {
|
2022-01-27 19:18:57 +01:00
|
|
|
filename: "popup/images/[name][ext]",
|
2018-04-13 22:03:37 +02:00
|
|
|
},
|
2021-12-09 21:08:34 +01:00
|
|
|
type: "asset/resource",
|
2018-04-13 22:03:37 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.scss$/,
|
2021-12-09 21:08:34 +01:00
|
|
|
use: [
|
2018-04-13 22:03:37 +02:00
|
|
|
{
|
2020-05-08 17:54:37 +02:00
|
|
|
loader: MiniCssExtractPlugin.loader,
|
|
|
|
},
|
|
|
|
"css-loader",
|
2020-05-08 18:12:24 +02:00
|
|
|
"sass-loader",
|
2020-05-08 17:54:37 +02:00
|
|
|
],
|
2018-04-13 22:03:37 +02:00
|
|
|
},
|
2018-09-12 05:54:39 +02:00
|
|
|
// Hide System.import warnings. ref: https://github.com/angular/angular/issues/21560
|
|
|
|
{
|
|
|
|
test: /[\/\\]@angular[\/\\].+\.js$/,
|
|
|
|
parser: { system: true },
|
|
|
|
},
|
2021-04-23 10:45:20 +02:00
|
|
|
{
|
|
|
|
test: /(?:\.ngfactory\.js|\.ngstyle\.js|\.ts)$/,
|
|
|
|
loader: "@ngtools/webpack",
|
|
|
|
},
|
2018-04-13 22:03:37 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
const plugins = [
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: "./src/popup/index.html",
|
|
|
|
filename: "popup/index.html",
|
2021-03-08 20:58:10 +01:00
|
|
|
chunks: ["popup/polyfills", "popup/vendor-angular", "popup/vendor", "popup/main"],
|
2018-04-13 22:03:37 +02:00
|
|
|
}),
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: "./src/background.html",
|
|
|
|
filename: "background.html",
|
|
|
|
chunks: ["vendor", "background"],
|
|
|
|
}),
|
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: "./src/notification/bar.html",
|
|
|
|
filename: "notification/bar.html",
|
2021-04-23 10:45:20 +02:00
|
|
|
chunks: ["notification/bar"],
|
|
|
|
}),
|
|
|
|
new CopyWebpackPlugin({
|
|
|
|
patterns: [
|
|
|
|
"./src/manifest.json",
|
|
|
|
{ from: "./src/_locales", to: "_locales" },
|
|
|
|
{ from: "./src/images", to: "images" },
|
|
|
|
{ from: "./src/popup/images", to: "popup/images" },
|
|
|
|
{ from: "./src/content/autofill.css", to: "content" },
|
|
|
|
],
|
2018-04-13 22:03:37 +02:00
|
|
|
}),
|
2020-05-08 17:54:37 +02:00
|
|
|
new MiniCssExtractPlugin({
|
2020-05-15 00:11:39 +02:00
|
|
|
filename: "[name].css",
|
|
|
|
chunkFilename: "chunk-[id].css",
|
2020-05-08 17:54:37 +02:00
|
|
|
}),
|
2018-04-13 22:03:37 +02:00
|
|
|
new webpack.DefinePlugin({
|
|
|
|
"process.env": {
|
|
|
|
ENV: JSON.stringify(ENV),
|
|
|
|
},
|
|
|
|
}),
|
2021-12-09 21:08:34 +01:00
|
|
|
new AngularWebpackPlugin({
|
2018-04-13 22:03:37 +02:00
|
|
|
tsConfigPath: "tsconfig.json",
|
|
|
|
entryModule: "src/popup/app.module#AppModule",
|
|
|
|
sourceMap: true,
|
2021-04-23 10:45:20 +02:00
|
|
|
}),
|
|
|
|
new CleanWebpackPlugin({
|
|
|
|
cleanAfterEveryBuildPatterns: ["!popup/fonts/**/*"],
|
|
|
|
}),
|
2021-12-09 21:08:34 +01:00
|
|
|
new webpack.ProvidePlugin({
|
|
|
|
process: "process/browser",
|
|
|
|
}),
|
2022-02-14 15:06:14 +01:00
|
|
|
new webpack.SourceMapDevToolPlugin({
|
2022-02-15 15:09:02 +01:00
|
|
|
exclude: [/content\/.*/, /notification\/.*/],
|
2022-02-14 15:06:14 +01:00
|
|
|
filename: "[file].map",
|
|
|
|
}),
|
2021-04-23 10:45:20 +02:00
|
|
|
];
|
|
|
|
|
2018-04-07 06:24:37 +02:00
|
|
|
const config = {
|
2018-09-12 05:54:39 +02:00
|
|
|
mode: ENV,
|
2022-02-14 15:06:14 +01:00
|
|
|
devtool: false,
|
2018-04-04 04:14:54 +02:00
|
|
|
entry: {
|
2021-03-08 20:58:10 +01:00
|
|
|
"popup/polyfills": "./src/popup/polyfills.ts",
|
2018-04-11 03:54:20 +02:00
|
|
|
"popup/main": "./src/popup/main.ts",
|
2018-04-04 04:14:54 +02:00
|
|
|
background: "./src/background.ts",
|
|
|
|
"content/autofill": "./src/content/autofill.js",
|
2018-05-09 20:00:13 +02:00
|
|
|
"content/autofiller": "./src/content/autofiller.ts",
|
|
|
|
"content/notificationBar": "./src/content/notificationBar.ts",
|
2021-09-01 23:51:43 +02:00
|
|
|
"content/contextMenuHandler": "./src/content/contextMenuHandler.ts",
|
2018-05-09 20:13:20 +02:00
|
|
|
"content/shortcuts": "./src/content/shortcuts.ts",
|
2021-03-17 22:14:26 +01:00
|
|
|
"content/message_handler": "./src/content/message_handler.ts",
|
2018-04-11 04:05:23 +02:00
|
|
|
"notification/bar": "./src/notification/bar.js",
|
2018-04-04 04:14:54 +02:00
|
|
|
},
|
2018-09-12 05:54:39 +02:00
|
|
|
optimization: {
|
2022-02-11 01:05:09 +01:00
|
|
|
minimize: true,
|
2022-02-14 15:06:14 +01:00
|
|
|
minimizer: [
|
|
|
|
new TerserPlugin({
|
2022-02-15 15:09:02 +01:00
|
|
|
exclude: [/content\/.*/, /notification\/.*/],
|
2022-02-14 15:06:14 +01:00
|
|
|
}),
|
|
|
|
],
|
2018-09-12 05:54:39 +02:00
|
|
|
splitChunks: {
|
|
|
|
cacheGroups: {
|
|
|
|
commons: {
|
2020-09-15 22:13:07 +02:00
|
|
|
test(module, chunks) {
|
|
|
|
return (
|
|
|
|
module.resource != null &&
|
|
|
|
module.resource.includes(`${path.sep}node_modules${path.sep}`) &&
|
|
|
|
!module.resource.includes(`${path.sep}node_modules${path.sep}@angular${path.sep}`)
|
|
|
|
);
|
|
|
|
},
|
|
|
|
name: "popup/vendor",
|
|
|
|
chunks: (chunk) => {
|
|
|
|
return chunk.name === "popup/main";
|
2018-09-12 05:54:39 +02:00
|
|
|
},
|
|
|
|
},
|
2018-04-06 23:02:46 +02:00
|
|
|
angular: {
|
2020-09-15 22:13:07 +02:00
|
|
|
test(module, chunks) {
|
2018-04-06 23:02:46 +02:00
|
|
|
return (
|
|
|
|
module.resource != null &&
|
2018-04-07 06:24:37 +02:00
|
|
|
module.resource.includes(`${path.sep}node_modules${path.sep}@angular${path.sep}`)
|
2021-12-21 15:43:35 +01:00
|
|
|
);
|
|
|
|
},
|
2018-04-07 06:24:37 +02:00
|
|
|
name: "popup/vendor-angular",
|
|
|
|
chunks: (chunk) => {
|
2018-09-12 05:54:39 +02:00
|
|
|
return chunk.name === "popup/main";
|
2021-12-21 15:43:35 +01:00
|
|
|
},
|
|
|
|
},
|
2021-12-09 21:08:34 +01:00
|
|
|
commons2: {
|
|
|
|
test: /[\\/]node_modules[\\/]/,
|
|
|
|
name: "vendor",
|
|
|
|
chunks: (chunk) => {
|
|
|
|
return chunk.name === "background";
|
|
|
|
},
|
|
|
|
},
|
2021-12-21 15:43:35 +01:00
|
|
|
},
|
2018-04-06 23:02:46 +02:00
|
|
|
},
|
2021-12-21 15:43:35 +01:00
|
|
|
},
|
2018-04-06 23:02:46 +02:00
|
|
|
resolve: {
|
|
|
|
extensions: [".ts", ".js"],
|
|
|
|
symlinks: false,
|
2018-04-11 03:54:20 +02:00
|
|
|
modules: [path.resolve("node_modules")],
|
2022-03-15 13:13:39 +01:00
|
|
|
alias: {
|
|
|
|
sweetalert2: require.resolve("sweetalert2/dist/sweetalert2.js"),
|
|
|
|
"#sweetalert2": require.resolve("sweetalert2/src/sweetalert2.scss"),
|
|
|
|
},
|
2021-12-21 15:43:35 +01:00
|
|
|
fallback: {
|
2018-04-11 03:54:20 +02:00
|
|
|
assert: false,
|
|
|
|
buffer: require.resolve("buffer/"),
|
|
|
|
util: require.resolve("util/"),
|
2021-12-09 21:08:34 +01:00
|
|
|
url: require.resolve("url/"),
|
2018-04-06 23:02:46 +02:00
|
|
|
},
|
2021-12-21 15:43:35 +01:00
|
|
|
},
|
|
|
|
output: {
|
2021-12-09 21:08:34 +01:00
|
|
|
filename: "[name].js",
|
2018-04-11 03:54:20 +02:00
|
|
|
path: path.resolve(__dirname, "build"),
|
2021-12-21 15:43:35 +01:00
|
|
|
},
|
2018-04-13 22:03:37 +02:00
|
|
|
module: { rules: moduleRules },
|
|
|
|
plugins: plugins,
|
2018-04-04 04:14:54 +02:00
|
|
|
};
|
2018-04-07 06:24:37 +02:00
|
|
|
|
|
|
|
module.exports = config;
|