-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
43 lines (40 loc) · 1.08 KB
/
webpack.config.js
File metadata and controls
43 lines (40 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const webpack = require("webpack");
const path = require("path");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
const Config = {
output: {
path: path.resolve(__dirname, "dist"),
filename: "r-audio.min.js",
},
entry: "./examples/index.js",
mode: process.env["NODE_ENV"] || "production",
devtool: process.env["NODE_ENV"] === "development" ? "source-map" : false,
resolve: {
modules: ["node_modules"],
},
module: {
rules: [
{
test: /\.js$|\.jsx$/,
exclude: /node_modules/,
use: [
"babel-loader?presets[]=react,env",
"eslint-loader?fix=true&emitWarning=true",
],
},
],
},
devServer: {
contentBase: path.join(__dirname, "examples"),
compress: true,
port: 8080,
},
};
if (!(process.env["NODE_ENV"] === "development")) {
Config.output.library = "r-audio";
Config.output.libraryTarget = "umd";
Config.entry = "./index.js";
Config.optimization = { minimizer: [new UglifyJsPlugin()] };
Config.externals = ["react", "react-dom", "prop-types"];
}
module.exports = Config;