bitwarden-browser/apps/browser/webpack.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

305 lines
8.0 KiB
JavaScript
Raw Normal View History

const path = require("path");
const webpack = require("webpack");
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
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");
const TerserPlugin = require("terser-webpack-plugin");
const { TsconfigPathsPlugin } = require("tsconfig-paths-webpack-plugin");
const configurator = require("./config/config");
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);
PS-813 Add memory storage to state service (#2892) * Use abstract methods and generics in StorageService * Prepend `Abstract` to abstract classes * Create session browser storage service * Use memory storage service for state memory * Inject memory storage service * Maintain filename extensions to help ide formatting * Preserve state if it's still in memory * Use jslib's memory storage service * linter * Create prototypes on stored objects * standardize package scripts * Add type safety to `withPrototype` decorators * webpack notify manifest version * Fix desktop * linter * Fix script * Improve prototye application * do not change prototype if it already matches desired * fix error with object values prototype application * Handle null state * Apply prototypes to browser-specific state * Add angular language server to recommended extensions * Improve browser state service tests * Start testing state Service * Fix abstract returns * Move test setup files to not be picked up by default glob matchers * Add key generation service * Add low-dependency encrypt service * Back crypto service with encrypt service. We'll want to work items that don't require state over to encrypt service * Add new storage service and tests * Properly init more stored values * Fix reload issues when state service is recovering state from session storage Co-authored-by: Thomas Avery <Thomas-Avery@users.noreply.github.com> Co-authored-by: Justin Baur <admin@justinbaur.com> * Simplify encrypt service * Do not log mac failures for local-backed session storage * `content` changed to `main` in #2245 * Fix CLI * Remove loggin * PR feedback * Merge remote-tracking branch 'origin/master' into add-memory-storage-to-state-service * Fix desktop * Fix decrypt method signature * Minify if not development * Key is required Co-authored-by: Thomas Avery <Thomas-Avery@users.noreply.github.com> Co-authored-by: Justin Baur <admin@justinbaur.com>
2022-06-27 19:38:12 +02:00
const manifestVersion = process.env.MANIFEST_VERSION == 3 ? 3 : 2;
console.log(`Building Manifest Version ${manifestVersion} app`);
const envConfig = configurator.load(ENV);
configurator.log(envConfig);
2018-04-13 21:14:04 +02:00
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,
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
{
test: /\.[cm]?js$/,
use: [
{
loader: "babel-loader",
options: {
configFile: false,
plugins: ["@angular/compiler-cli/linker/babel"],
},
},
],
2018-09-12 05:54:39 +02:00
},
{
test: /\.[jt]sx?$/,
loader: "@ngtools/webpack",
},
{
test: /\.wasm$/,
loader: "base64-loader",
type: "javascript/auto",
},
2018-04-13 22:03:37 +02:00
];
const requiredPlugins = [
new webpack.DefinePlugin({
"process.env": {
ENV: JSON.stringify(ENV),
},
}),
new webpack.EnvironmentPlugin({
FLAGS: envConfig.flags,
DEV_FLAGS: ENV === "development" ? envConfig.devFlags : {},
}),
];
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/notification/bar.html",
filename: "notification/bar.html",
chunks: ["notification/bar"],
}),
new CopyWebpackPlugin({
patterns: [
PS-813 Add memory storage to state service (#2892) * Use abstract methods and generics in StorageService * Prepend `Abstract` to abstract classes * Create session browser storage service * Use memory storage service for state memory * Inject memory storage service * Maintain filename extensions to help ide formatting * Preserve state if it's still in memory * Use jslib's memory storage service * linter * Create prototypes on stored objects * standardize package scripts * Add type safety to `withPrototype` decorators * webpack notify manifest version * Fix desktop * linter * Fix script * Improve prototye application * do not change prototype if it already matches desired * fix error with object values prototype application * Handle null state * Apply prototypes to browser-specific state * Add angular language server to recommended extensions * Improve browser state service tests * Start testing state Service * Fix abstract returns * Move test setup files to not be picked up by default glob matchers * Add key generation service * Add low-dependency encrypt service * Back crypto service with encrypt service. We'll want to work items that don't require state over to encrypt service * Add new storage service and tests * Properly init more stored values * Fix reload issues when state service is recovering state from session storage Co-authored-by: Thomas Avery <Thomas-Avery@users.noreply.github.com> Co-authored-by: Justin Baur <admin@justinbaur.com> * Simplify encrypt service * Do not log mac failures for local-backed session storage * `content` changed to `main` in #2245 * Fix CLI * Remove loggin * PR feedback * Merge remote-tracking branch 'origin/master' into add-memory-storage-to-state-service * Fix desktop * Fix decrypt method signature * Minify if not development * Key is required Co-authored-by: Thomas Avery <Thomas-Avery@users.noreply.github.com> Co-authored-by: Justin Baur <admin@justinbaur.com>
2022-06-27 19:38:12 +02:00
manifestVersion == 3
? { from: "./src/manifest.v3.json", to: "manifest.json" }
: "./src/manifest.json",
{ from: "./src/managed_schema.json", to: "managed_schema.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
}),
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,
}),
new CleanWebpackPlugin({
cleanAfterEveryBuildPatterns: ["!popup/fonts/**/*"],
}),
2021-12-09 21:08:34 +01:00
new webpack.ProvidePlugin({
process: "process/browser.js",
2021-12-09 21:08:34 +01:00
}),
new webpack.SourceMapDevToolPlugin({
exclude: [/content\/.*/, /notification\/.*/],
filename: "[file].map",
}),
...requiredPlugins,
];
/**
* @type {import("webpack").Configuration}
* This config compiles everything but the background
*/
const mainConfig = {
name: "main",
2018-09-12 05:54:39 +02:00
mode: ENV,
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
"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",
"content/contextMenuHandler": "./src/content/contextMenuHandler.ts",
"content/message_handler": "./src/content/message_handler.ts",
2018-04-11 04:05:23 +02:00
"notification/bar": "./src/notification/bar.js",
"encrypt-worker": "../../libs/common/src/services/cryptography/encrypt.worker.ts",
2018-04-04 04:14:54 +02:00
},
2018-09-12 05:54:39 +02:00
optimization: {
PS-813 Add memory storage to state service (#2892) * Use abstract methods and generics in StorageService * Prepend `Abstract` to abstract classes * Create session browser storage service * Use memory storage service for state memory * Inject memory storage service * Maintain filename extensions to help ide formatting * Preserve state if it's still in memory * Use jslib's memory storage service * linter * Create prototypes on stored objects * standardize package scripts * Add type safety to `withPrototype` decorators * webpack notify manifest version * Fix desktop * linter * Fix script * Improve prototye application * do not change prototype if it already matches desired * fix error with object values prototype application * Handle null state * Apply prototypes to browser-specific state * Add angular language server to recommended extensions * Improve browser state service tests * Start testing state Service * Fix abstract returns * Move test setup files to not be picked up by default glob matchers * Add key generation service * Add low-dependency encrypt service * Back crypto service with encrypt service. We'll want to work items that don't require state over to encrypt service * Add new storage service and tests * Properly init more stored values * Fix reload issues when state service is recovering state from session storage Co-authored-by: Thomas Avery <Thomas-Avery@users.noreply.github.com> Co-authored-by: Justin Baur <admin@justinbaur.com> * Simplify encrypt service * Do not log mac failures for local-backed session storage * `content` changed to `main` in #2245 * Fix CLI * Remove loggin * PR feedback * Merge remote-tracking branch 'origin/master' into add-memory-storage-to-state-service * Fix desktop * Fix decrypt method signature * Minify if not development * Key is required Co-authored-by: Thomas Avery <Thomas-Avery@users.noreply.github.com> Co-authored-by: Justin Baur <admin@justinbaur.com>
2022-06-27 19:38:12 +02:00
minimize: ENV !== "development",
minimizer: [
new TerserPlugin({
exclude: [/content\/.*/, /notification\/.*/],
terserOptions: {
// Replicate Angular CLI behaviour
compress: {
global_defs: {
ngDevMode: false,
ngI18nClosureMode: false,
},
},
},
}),
],
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
},
},
},
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,
modules: [path.resolve("../../node_modules")],
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/"),
fs: false,
path: false,
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
},
module: {
noParse: /\.wasm$/,
rules: moduleRules,
},
2018-04-13 22:03:37 +02:00
plugins: plugins,
2018-04-04 04:14:54 +02:00
};
2018-04-07 06:24:37 +02:00
/**
* @type {import("webpack").Configuration[]}
*/
const configs = [];
if (manifestVersion == 2) {
mainConfig.optimization.splitChunks.cacheGroups.commons2 = {
test: /[\\/]node_modules[\\/]/,
name: "vendor",
chunks: (chunk) => {
return chunk.name === "background";
},
};
// Manifest V2 uses Background Pages which requires a html page.
mainConfig.plugins.push(
new HtmlWebpackPlugin({
template: "./src/background.html",
filename: "background.html",
chunks: ["vendor", "background"],
})
);
// Manifest V2 background pages can be run through the regular build pipeline.
// Since it's a standard webpage.
mainConfig.entry.background = "./src/background.ts";
configs.push(mainConfig);
} else {
// Manifest v3 needs an extra helper for utilities in the content script.
// The javascript output of this should be added to manifest.v3.json
mainConfig.entry["content/misc-utils"] = "./src/content/misc-utils.ts";
/**
* @type {import("webpack").Configuration}
*/
const backgroundConfig = {
name: "background",
mode: ENV,
devtool: false,
entry: "./src/background.ts",
target: "webworker",
output: {
filename: "background.js",
path: path.resolve(__dirname, "build"),
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: "ts-loader",
},
{
test: /\.wasm$/,
loader: "base64-loader",
type: "javascript/auto",
},
],
noParse: /\.wasm$/,
},
resolve: {
extensions: [".ts", ".js"],
symlinks: false,
modules: [path.resolve("../../node_modules")],
plugins: [new TsconfigPathsPlugin()],
fallback: {
fs: false,
path: false,
},
},
dependencies: ["main"],
plugins: [...requiredPlugins],
};
configs.push(mainConfig);
configs.push(backgroundConfig);
}
module.exports = configs;