2019-02-21 16:43:45 +00:00
|
|
|
/* Copyright (c) 2018 Kamil Mikosz
|
|
|
|
* Copyright (c) 2019 Sienori
|
2019-02-20 08:10:03 +00:00
|
|
|
* Released under the MIT license.
|
|
|
|
* see https://opensource.org/licenses/MIT */
|
|
|
|
|
|
|
|
const {
|
|
|
|
getHTMLPlugins,
|
|
|
|
getOutput,
|
|
|
|
getCopyPlugins,
|
2019-02-23 18:35:42 +00:00
|
|
|
getOperaCopyPlugins,
|
2019-02-20 08:10:03 +00:00
|
|
|
getFirefoxCopyPlugins,
|
|
|
|
getEntry
|
|
|
|
} = require("./webpack.utils");
|
|
|
|
const path = require("path");
|
|
|
|
const config = require("./config.json");
|
|
|
|
|
|
|
|
const generalConfig = {
|
|
|
|
mode: "development",
|
|
|
|
devtool: "source-map",
|
|
|
|
resolve: {
|
|
|
|
alias: {
|
|
|
|
src: path.resolve(__dirname, "src/")
|
|
|
|
}
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
loader: "babel-loader",
|
|
|
|
exclude: /node_modules/,
|
|
|
|
test: /\.(js|jsx)$/,
|
|
|
|
query: {
|
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
"@babel/preset-env",
|
|
|
|
{
|
|
|
|
targets: {
|
|
|
|
firefox: 57
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"@babel/preset-react"
|
|
|
|
],
|
|
|
|
plugins: ["transform-class-properties"]
|
|
|
|
},
|
|
|
|
resolve: {
|
|
|
|
extensions: [".js", ".jsx"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.scss$/,
|
|
|
|
use: [
|
|
|
|
{
|
|
|
|
loader: "style-loader"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: "css-loader"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: "sass-loader"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.svg$/,
|
|
|
|
use: [
|
|
|
|
"babel-loader",
|
|
|
|
{
|
|
|
|
loader: "react-svg-loader",
|
|
|
|
options: {
|
|
|
|
svgo: {
|
|
|
|
plugins: [{ removeTitle: false }],
|
|
|
|
floatPrecision: 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2019-02-21 16:43:45 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(png|jpg|gif)$/,
|
|
|
|
loader: "url-loader",
|
|
|
|
options: {}
|
2019-02-20 08:10:03 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = [
|
|
|
|
{
|
|
|
|
...generalConfig,
|
|
|
|
entry: getEntry(config.chromePath),
|
|
|
|
output: getOutput("chrome", config.devDirectory),
|
|
|
|
plugins: [
|
|
|
|
...getHTMLPlugins("chrome", config.devDirectory, config.chromePath),
|
|
|
|
...getCopyPlugins("chrome", config.devDirectory, config.chromePath)
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
...generalConfig,
|
|
|
|
entry: getEntry(config.operaPath),
|
|
|
|
output: getOutput("opera", config.devDirectory),
|
|
|
|
plugins: [
|
|
|
|
...getHTMLPlugins("opera", config.devDirectory, config.operaPath),
|
2019-02-23 18:35:42 +00:00
|
|
|
...getOperaCopyPlugins("opera", config.devDirectory, config.operaPath)
|
2019-02-20 08:10:03 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
...generalConfig,
|
|
|
|
entry: getEntry(config.firefoxPath),
|
|
|
|
output: getOutput("firefox", config.devDirectory),
|
|
|
|
plugins: [
|
|
|
|
...getFirefoxCopyPlugins("firefox", config.devDirectory, config.firefoxPath),
|
|
|
|
...getHTMLPlugins("firefox", config.devDirectory, config.firefoxPath)
|
|
|
|
]
|
|
|
|
}
|
|
|
|
];
|