-
Notifications
You must be signed in to change notification settings - Fork 2
/
make-webpack-config.js
134 lines (117 loc) · 3.63 KB
/
make-webpack-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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require("extract-text-webpack-plugin");
var node_modules = path.resolve(__dirname, 'node_modules');
function makeConfig(isProd, buildDocs) {
var plugins = [
new webpack.NoErrorsPlugin(),
new ExtractTextPlugin({ filename: 'styles.css', allChunks: true })
];
var entry = [
'./src'
];
var publicPath = '/dist/';
var babelPresets = [
"es2015",
"stage-0",
"react"];
var devtool = 'eval';
var fileName = 'flexable';
if(isProd){
plugins = plugins.concat(
new webpack.DefinePlugin({
'process.env': {
// This has effect on the react lib size
'NODE_ENV': JSON.stringify('production')
}
}),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
output: {
comments: false
},
sourceMap: false
}),
new webpack.LoaderOptionsPlugin({
minimize: true,
debug: false
})
);
fileName += '.min';
} else {
plugins = plugins.concat(
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("development"),
BROWSER: JSON.stringify(true)
}
})
);
devtool = 'inline-source-map';
}
var config = {
entry: entry,
node: {
fs: "empty"
},
externals: [{
react: {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react'
}
}],
resolve: {
extensions: ['.js', '.jsx'],
modules: [
path.resolve('./src'),
'node_modules'
]
},
output: {
path: path.join(__dirname, 'dist'),
filename: fileName + '.js',
publicPath: publicPath
},
module: {
loaders: [
{
loader: "babel-loader",
// Skip any files outside of your project's `src` directory
include: [
path.resolve(__dirname, "src"),
],
// Only run `.js` and `.jsx` files through Babel
test: /\.jsx?$/,
// Options to configure babel with
query: {
plugins: ['transform-runtime'], // todo this means the babel-runtime is required by anyone using
// this code (may want to create separate build for those not using babel)
presets: babelPresets,
}
},
{
// todo: package compiled css externally from control
test: /\.scss/,
// loaders: styleLoaders
loader: ExtractTextPlugin.extract( { fallbackLoader: "style-loader", loader: "css-loader!sass" })
}
/*{
test: /\.jsx?$/,
loader: 'eslint',
exclude: /node_modules/
}*/
]
},
plugins: plugins
};
if (!isProd) {
config.devtool = devtool;
}
return config;
}
module.exports = makeConfig;