137 lines
3.6 KiB
JavaScript
137 lines
3.6 KiB
JavaScript
/* Copyright (c) 2018 Kamil Mikosz
|
|
* Copyright (c) 2019 Sienori
|
|
* Released under the MIT license.
|
|
* see https://opensource.org/licenses/MIT */
|
|
|
|
const CopyWebpackPlugin = require("copy-webpack-plugin");
|
|
const {
|
|
getHTMLPlugins,
|
|
getOutput,
|
|
getCopyPlugins,
|
|
getZipPlugin,
|
|
getFirefoxCopyPlugins,
|
|
getMiniCssExtractPlugin,
|
|
getEntry
|
|
} = require("./webpack.utils");
|
|
const path = require("path");
|
|
const config = require("./config.json");
|
|
const CleanWebpackPlugin = require("clean-webpack-plugin");
|
|
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
|
|
|
const extVersion = require("./src/manifest-chrome.json").version;
|
|
const ffExtVersion = require("./src/manifest-firefox.json").version;
|
|
|
|
const generalConfig = {
|
|
mode: "production",
|
|
resolve: {
|
|
alias: {
|
|
src: path.resolve(__dirname, "src/"),
|
|
"webextension-polyfill": "webextension-polyfill/dist/browser-polyfill.min.js"
|
|
}
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
loader: "babel-loader",
|
|
exclude: /node_modules/,
|
|
test: /\.(js|jsx)$/,
|
|
resolve: {
|
|
extensions: [".js", ".jsx"]
|
|
}
|
|
},
|
|
{
|
|
test: /\.(scss|css)$/,
|
|
use: [
|
|
MiniCssExtractPlugin.loader,
|
|
{
|
|
loader: "css-loader",
|
|
options: {
|
|
esModule: false
|
|
}
|
|
},
|
|
{
|
|
loader: "sass-loader"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
test: /\.svg$/,
|
|
use: [
|
|
"babel-loader",
|
|
{
|
|
loader: "react-svg-loader",
|
|
options: {
|
|
svgo: {
|
|
plugins: [{ removeTitle: false }],
|
|
floatPrecision: 2
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|
|
module.exports = [
|
|
{
|
|
...generalConfig,
|
|
output: getOutput("chrome", config.tempDirectory),
|
|
entry: getEntry(config.chromePath),
|
|
optimization: {
|
|
minimize: true
|
|
},
|
|
plugins: [
|
|
new CleanWebpackPlugin(["dist", "temp"]),
|
|
...getMiniCssExtractPlugin(),
|
|
...getHTMLPlugins("chrome", config.tempDirectory, config.chromePath),
|
|
...getCopyPlugins("chrome", config.tempDirectory, config.chromePath),
|
|
getZipPlugin(`${config.extName}-for-chrome-${extVersion}`, config.distDirectory)
|
|
]
|
|
},
|
|
{
|
|
...generalConfig,
|
|
entry: getEntry(config.firefoxPath),
|
|
output: getOutput("firefox", config.tempDirectory),
|
|
optimization: {
|
|
minimize: true
|
|
},
|
|
plugins: [
|
|
new CleanWebpackPlugin(["dist", "temp"]),
|
|
...getMiniCssExtractPlugin(),
|
|
...getHTMLPlugins("firefox", config.tempDirectory, config.firefoxPath),
|
|
...getFirefoxCopyPlugins("firefox", config.tempDirectory, config.firefoxPath),
|
|
getZipPlugin(`${config.extName}-for-firefox-${ffExtVersion}`, config.distDirectory)
|
|
]
|
|
},
|
|
{
|
|
mode: "production",
|
|
resolve: {
|
|
alias: {
|
|
src: path.resolve(__dirname, "src/")
|
|
}
|
|
},
|
|
entry: { other: path.resolve(__dirname, `src/background/background.js`) },
|
|
output: getOutput("copiedSource", config.tempDirectory),
|
|
plugins: [
|
|
new CopyWebpackPlugin({
|
|
patterns: [
|
|
{
|
|
from: `src`,
|
|
to: path.resolve(__dirname, `${config.tempDirectory}/copiedSource/src/`),
|
|
info: { minimized: true }
|
|
},
|
|
{
|
|
from: "*",
|
|
to: path.resolve(__dirname, `${config.tempDirectory}/copiedSource/`),
|
|
globOptions: {
|
|
ignore: ["**/BACKERS.md", "**/crowdin.yml"]
|
|
}
|
|
}
|
|
]
|
|
}),
|
|
getZipPlugin(`copiedSource-${config.extName}-${ffExtVersion}`, config.distDirectory, "other/")
|
|
]
|
|
}
|
|
];
|