forked from react-grid-layout/react-grid-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack-examples.config.js
72 lines (69 loc) · 1.48 KB
/
webpack-examples.config.js
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"use strict";
const webpack = require("webpack");
const fs = require("fs");
// Builds example bundles
module.exports = {
mode: "development",
context: __dirname,
entry: {
commons: ["lodash"]
},
optimization: {
splitChunks: {
cacheGroups: {
commons: {
name: "commons",
chunks: "initial",
minChunks: 2
}
}
}
},
output: {
path: __dirname + "/examples",
filename: "[name].js",
sourceMapFilename: "[file].map"
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: "babel-loader",
query: {
cacheDirectory: true
}
}
]
},
plugins: [
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("production"),
// sigil to load self into #content
STATIC_EXAMPLES: JSON.stringify(true)
}
})
],
devServer: {
port: 4002,
open: true,
openPage: "examples/0-showcase.html",
contentBase: ".",
publicPath: "/examples/"
},
resolve: {
extensions: [".js", ".jsx"],
alias: { "react-grid-layout": __dirname + "/index-dev.js" }
}
};
// Load all entry points
const files = fs
.readdirSync(__dirname + "/test/examples")
.filter(function(element, index, array) {
return element.match(/^.+\.jsx$/);
});
for (const file of files) {
const module_name = file.replace(/\.jsx$/, "");
module.exports.entry[module_name] = "./test/examples/" + file;
}