-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.examples.js
44 lines (36 loc) · 1.27 KB
/
webpack.config.examples.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
/* eslint-disable */
var path = require('path');
var glob = require('glob');
var webpack = require('webpack');
var env = process.env.NODE_ENV;
function createConfig (filepath) {
var filename = path.basename(filepath, '.example.js');
var outputPath = path.dirname(filepath);
return {
entry: path.resolve(__dirname, filepath),
module: {
loaders: [
{ test: /\.js$/, loaders: ['babel-loader'], exclude: /node_modules/ }
]
},
output: {
filename: filename + '.js',
path: path.resolve(__dirname, outputPath)
},
plugins: [
{
apply: function apply(compiler) {
compiler.parser.plugin('expression global', function expressionGlobalPlugin() {
this.state.module.addVariable('global', "(function() { return this; }()) || Function('return this')()")
return false
})
}
},
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(env)
})
]
};
}
module.exports = glob.sync('examples/**/*.example.js').map(createConfig);