simple-translate/webpack.config.dist.js

179 lines
5 KiB
JavaScript
Raw Normal View History

2019-02-20 08:10:03 +00:00
/* 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,
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");
2019-02-20 08:10:03 +00:00
2019-02-23 12:02:31 +00:00
const extVersion = require("./src/manifest-chrome.json").version;
const ffExtVersion = require("./src/manifest-firefox.json").version;
2019-02-20 08:10:03 +00:00
const generalConfig = {
mode: "production",
resolve: {
alias: {
2019-03-21 10:38:08 +00:00
src: path.resolve(__dirname, "src/"),
"webextension-polyfill": "webextension-polyfill/dist/browser-polyfill.min.js"
2019-02-20 08:10:03 +00:00
}
},
module: {
rules: [
{
loader: "babel-loader",
exclude: /node_modules/,
test: /\.(js|jsx)$/,
resolve: {
extensions: [".js", ".jsx"]
}
},
{
test: /\.(scss|css)$/,
exclude: [path.resolve(__dirname, "src", "content")],
2019-02-20 08:10:03 +00:00
use: [
{
loader: "style-loader"
},
{
loader: "css-loader"
},
{
loader: "sass-loader"
}
]
},
{
test: /\.(scss|css)$/,
include: [path.resolve(__dirname, "src", "content")],
use: [
MiniCssExtractPlugin.loader,
{
loader: "css-loader"
},
{
loader: "sass-loader"
}
]
},
2019-02-20 08:10:03 +00:00
{
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),
2020-05-01 16:00:51 +00:00
optimization: {
minimize: true
},
2019-02-20 08:10:03 +00:00
plugins: [
new CleanWebpackPlugin(["dist", "temp"]),
new MiniCssExtractPlugin({
filename: "[name]/[name].css"
}),
2019-02-20 08:10:03 +00:00
...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),
2020-05-01 16:00:51 +00:00
optimization: {
minimize: true
},
2019-02-20 08:10:03 +00:00
plugins: [
new CleanWebpackPlugin(["dist", "temp"]),
new MiniCssExtractPlugin({
filename: "[name]/[name].css"
}),
2019-02-20 08:10:03 +00:00
...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/")
}
},
2019-02-23 12:02:31 +00:00
entry: { other: path.resolve(__dirname, `src/background/background.js`) },
2019-02-20 08:10:03 +00:00
output: getOutput("copiedSource", config.tempDirectory),
plugins: [
new CopyWebpackPlugin([
{
from: `src`,
to: path.resolve(__dirname, `${config.tempDirectory}/copiedSource/src/`)
},
2020-05-01 16:41:25 +00:00
{
from: `babel.config.js`,
to: path.resolve(__dirname, `${config.tempDirectory}/copiedSource/babel.config.js`)
},
2019-02-20 08:10:03 +00:00
{
from: `config.json`,
to: path.resolve(__dirname, `${config.tempDirectory}/copiedSource/config.json`)
},
{
from: `LICENSE`,
to: path.resolve(__dirname, `${config.tempDirectory}/copiedSource/LICENSE`)
},
{
from: `package.json`,
to: path.resolve(__dirname, `${config.tempDirectory}/copiedSource/package.json`)
},
2020-05-01 16:41:25 +00:00
{
from: `package-lock.json`,
to: path.resolve(__dirname, `${config.tempDirectory}/copiedSource/package-lock.json`)
},
2019-02-20 08:10:03 +00:00
{
from: `README.md`,
to: path.resolve(__dirname, `${config.tempDirectory}/copiedSource/README.md`)
},
{
from: `webpack.config.dev.js`,
to: path.resolve(__dirname, `${config.tempDirectory}/copiedSource/webpack.config.dev.js`)
},
{
from: `webpack.config.dist.js`,
to: path.resolve(__dirname, `${config.tempDirectory}/copiedSource/webpack.config.dist.js`)
},
{
from: `webpack.utils.js`,
to: path.resolve(__dirname, `${config.tempDirectory}/copiedSource/webpack.utils.js`)
}
]),
2020-05-01 16:41:25 +00:00
getZipPlugin(`copiedSource-${config.extName}-${ffExtVersion}`, config.distDirectory, "other/")
2019-02-20 08:10:03 +00:00
]
}
];