-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
65 lines (50 loc) · 1.18 KB
/
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
const webpack = require('webpack');
const fs = require('fs');
const config = {}
config.entry = [ './bin/sitefile.coffee' ]
// Node module dependencies should not be bundled
config.externals = fs.readdirSync("node_modules")
.reduce(function(acc, mod) {
if (mod === ".bin") {
return acc
}
acc[mod] = "commonjs " + mod
return acc
}, {})
config.target = 'node'
//config.node = {
// markdown: "empty",
// "bookshelfapi": "empty"
//}
config.output = {
filename: 'dist/sitefile.js'
}
config.module = {}
config.module.loaders = [
{
test: /\.js$/,
exclude: /node_modules/,
loaders: [
"babel?{stage:0,jsxPragma:'this.createElement'}",
"eslint",
],
},
{
test: /\.coffee$/,
exclude: /node_modules/,
loader: "coffee"
},
{ test: /\.json$/, loader: "json" }
]
config.resolve = {
extensions: [
"", ".coffee", ".js", ".json"
]
}
config.plugins = [
new webpack.BannerPlugin('require("source-map-support").install();',
{ raw: true, entryOnly: false }),
new webpack.IgnorePlugin(/markdown|pug|pug-runtime|stylus|pm2|pmx|knex|bookshelfapi/)
]
config.devtool = 'sourcemap'
module.exports = config