-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
41 lines (37 loc) · 1019 Bytes
/
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
var glob = require('glob');
var path = require('path');
var nodeExternals = require('webpack-node-externals');
// Required for Create React App Babel transform
process.env.NODE_ENV = 'production';
module.exports = {
// Use all js files in project root (except
// the webpack config) as an entry
entry: globEntries('!(webpack.config).js'),
target: 'node',
externals:[nodeExternals()],
module:{
loaders:[{
test:/\.js$/,
loaders:['babel'],
include: __dirname,
exclude: /node_modules/,
}]
},
// We are going to create multiple APIs in this guide, and we are
// going to create a js file to for each, we need this output block
output:{
libraryTarget:'commonjs',
path:path.join(__dirname, '.webpack'),
filename:'[name].js'
},
};
function globEntries(globPath){
var files = glob.sync(globPath);
var entries = {};
for(var i=0; i<files.length;i++){
var entry = files[i];
entries[path.basename(entry, path.extname(entry))] = './' + entry;
}
console.log(entries);
return entries;
}