2018-05-15 05:16:59 +02:00
|
|
|
const path = require("path");
|
|
|
|
const webpack = require("webpack");
|
|
|
|
const CopyWebpackPlugin = require("copy-webpack-plugin");
|
2019-02-08 05:15:17 +01:00
|
|
|
const nodeExternals = require("webpack-node-externals");
|
2021-06-07 19:25:55 +02:00
|
|
|
const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin");
|
2022-01-28 15:29:04 +01:00
|
|
|
const config = require("./config/config");
|
2018-05-15 05:16:59 +02:00
|
|
|
|
|
|
|
if (process.env.NODE_ENV == null) {
|
|
|
|
process.env.NODE_ENV = "development";
|
|
|
|
}
|
|
|
|
const ENV = (process.env.ENV = process.env.NODE_ENV);
|
|
|
|
|
2022-01-28 15:29:04 +01:00
|
|
|
const envConfig = config.load(ENV);
|
|
|
|
config.log(envConfig);
|
|
|
|
|
2018-05-15 05:16:59 +02:00
|
|
|
const moduleRules = [
|
|
|
|
{
|
|
|
|
test: /\.ts$/,
|
2021-12-29 19:05:33 +01:00
|
|
|
use: "ts-loader",
|
2018-05-15 05:16:59 +02:00
|
|
|
exclude: path.resolve(__dirname, "node_modules"),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const plugins = [
|
2021-04-23 21:04:11 +02:00
|
|
|
new CopyWebpackPlugin({
|
|
|
|
patterns: [{ from: "./src/locales", to: "locales" }],
|
|
|
|
}),
|
2018-05-15 05:16:59 +02:00
|
|
|
new webpack.DefinePlugin({
|
2018-05-17 19:50:28 +02:00
|
|
|
"process.env.BWCLI_ENV": JSON.stringify(ENV),
|
2018-05-15 05:16:59 +02:00
|
|
|
}),
|
|
|
|
new webpack.BannerPlugin({
|
|
|
|
banner: "#!/usr/bin/env node",
|
|
|
|
raw: true,
|
|
|
|
}),
|
2021-12-29 19:05:33 +01:00
|
|
|
new webpack.IgnorePlugin({
|
|
|
|
resourceRegExp: /^encoding$/,
|
|
|
|
contextRegExp: /node-fetch/,
|
|
|
|
}),
|
2022-01-28 15:29:04 +01:00
|
|
|
new webpack.EnvironmentPlugin({
|
2024-10-07 13:20:50 +02:00
|
|
|
ENV: ENV,
|
2022-01-28 15:29:04 +01:00
|
|
|
BWCLI_ENV: ENV,
|
|
|
|
FLAGS: envConfig.flags,
|
2024-10-07 13:20:50 +02:00
|
|
|
DEV_FLAGS: envConfig.devFlags,
|
2022-01-28 15:29:04 +01:00
|
|
|
}),
|
2022-06-03 20:11:47 +02:00
|
|
|
new webpack.IgnorePlugin({
|
|
|
|
resourceRegExp: /canvas/,
|
|
|
|
contextRegExp: /jsdom$/,
|
|
|
|
}),
|
2018-05-15 05:16:59 +02:00
|
|
|
];
|
|
|
|
|
2022-01-28 15:29:04 +01:00
|
|
|
const webpackConfig = {
|
2018-09-12 05:15:36 +02:00
|
|
|
mode: ENV,
|
2018-05-15 05:16:59 +02:00
|
|
|
target: "node",
|
2018-05-15 16:50:06 +02:00
|
|
|
devtool: ENV === "development" ? "eval-source-map" : "source-map",
|
2018-05-15 05:16:59 +02:00
|
|
|
node: {
|
|
|
|
__dirname: false,
|
|
|
|
__filename: false,
|
|
|
|
},
|
|
|
|
entry: {
|
|
|
|
bw: "./src/bw.ts",
|
|
|
|
},
|
2018-09-14 22:01:35 +02:00
|
|
|
optimization: {
|
|
|
|
minimize: false,
|
|
|
|
},
|
2018-05-15 05:16:59 +02:00
|
|
|
resolve: {
|
|
|
|
extensions: [".ts", ".js"],
|
|
|
|
symlinks: false,
|
2022-06-03 20:11:47 +02:00
|
|
|
modules: [path.resolve("../../node_modules")],
|
2021-06-07 19:25:55 +02:00
|
|
|
plugins: [new TsconfigPathsPlugin({ configFile: "./tsconfig.json" })],
|
2018-05-15 05:16:59 +02:00
|
|
|
},
|
|
|
|
output: {
|
|
|
|
filename: "[name].js",
|
|
|
|
path: path.resolve(__dirname, "build"),
|
2024-03-12 18:02:47 +01:00
|
|
|
clean: true,
|
2018-05-15 05:16:59 +02:00
|
|
|
},
|
2019-02-08 05:15:17 +01:00
|
|
|
module: { rules: moduleRules },
|
2018-05-15 05:16:59 +02:00
|
|
|
plugins: plugins,
|
2022-06-13 15:50:11 +02:00
|
|
|
externals: [
|
|
|
|
nodeExternals({
|
|
|
|
modulesDir: "../../node_modules",
|
2022-06-14 17:10:53 +02:00
|
|
|
allowlist: [/@bitwarden/],
|
2022-06-13 15:50:11 +02:00
|
|
|
}),
|
|
|
|
],
|
2024-10-07 13:20:50 +02:00
|
|
|
experiments: {
|
|
|
|
asyncWebAssembly: true,
|
|
|
|
},
|
2018-05-15 05:16:59 +02:00
|
|
|
};
|
|
|
|
|
2022-01-28 15:29:04 +01:00
|
|
|
module.exports = webpackConfig;
|