forked from gatsbyjs/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
343 lines (330 loc) · 8.7 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
import webpack from 'webpack'
import StaticSiteGeneratorPlugin from 'static-site-generator-webpack-plugin'
import ExtractTextPlugin from 'extract-text-webpack-plugin'
import Config from 'webpack-configurator'
const debug = require('debug')('gatsby:webpack-config')
import path from 'path'
let modifyWebpackConfig
try {
const gatsbyNodeConfig = path.resolve(process.cwd(), './gatsby-node.js')
const nodeConfig = require(gatsbyNodeConfig)
modifyWebpackConfig = nodeConfig.modifyWebpackConfig
} catch (e) {
if (e.code !== 'MODULE_NOT_FOUND') {
console.log(e)
}
}
module.exports = (program, directory, stage, webpackPort = 1500, routes = []) => {
debug(`Loading webpack config for stage "${stage}"`)
function output () {
switch (stage) {
case 'develop':
return {
path: directory,
filename: 'bundle.js',
publicPath: `http://${program.host}:${webpackPort}/`,
}
case 'static':
return {
path: `${directory}/public`,
filename: 'bundle.js',
libraryTarget: 'umd',
}
case 'production':
return {
filename: 'bundle.js',
path: `${directory}/public`,
}
default:
throw new Error(`The state requested ${stage} doesn't exist.`)
}
}
function entry () {
switch (stage) {
case 'develop':
return [
require.resolve('webpack-hot-middleware/client'),
`${__dirname}/web-entry`,
]
case 'production':
return [
`${__dirname}/web-entry`,
]
case 'static':
return [
`${__dirname}/static-entry`,
]
default:
throw new Error(`The state requested ${stage} doesn't exist.`)
}
}
function plugins () {
switch (stage) {
case 'develop':
return [
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV ? process.env.NODE_ENV : 'development'),
},
__PREFIX_LINKS__: program.prefixLinks,
}),
]
case 'production':
return [
// Moment.js includes 100s of KBs of extra localization data
// by default in Webpack that most sites don't want.
// This line disables that.
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV ? process.env.NODE_ENV : 'production'),
},
__PREFIX_LINKS__: program.prefixLinks,
}),
new webpack.optimize.DedupePlugin(),
new ExtractTextPlugin('styles.css'),
new webpack.optimize.UglifyJsPlugin(),
]
case 'static':
return [
new StaticSiteGeneratorPlugin('bundle.js', routes),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV ? process.env.NODE_ENV : 'production'),
},
__PREFIX_LINKS__: program.prefixLinks,
}),
]
default:
throw new Error(`The state requested ${stage} doesn't exist.`)
}
}
function resolve () {
return {
extensions: [
'',
'.js',
'.jsx',
'.cjsx',
'.coffee',
'.json',
'.less',
'.css',
'.scss',
'.sass',
'.toml',
'.yaml',
],
modulesDirectories: [
directory,
`${__dirname}/../isomorphic`,
`${directory}/node_modules`,
'node_modules',
],
}
}
function devtool () {
switch (stage) {
case 'develop':
return 'eval'
case 'static':
return false
case 'production':
return 'source-map'
default:
return false
}
}
function module (config) {
// common config for every env
config.loader('cjsx', {
test: /\.cjsx$/,
loaders: ['coffee', 'cjsx'],
})
config.loader('js', {
test: /\.jsx?$/, // Accept either .js or .jsx files.
exclude: /(node_modules|bower_components)/,
loader: 'babel',
query: {
plugins: ['add-module-exports'],
},
})
config.loader('coffee', {
test: /\.coffee$/,
loader: 'coffee',
})
config.loader('md', {
test: /\.md$/,
loader: 'markdown',
})
config.loader('html', {
test: /\.html$/,
loader: 'html',
})
config.loader('json', {
test: /\.json$/,
loaders: ['json'],
})
// Match everything except config.toml
config.loader('toml', {
test: /^((?!config).)*\.toml$/,
loaders: ['toml'],
})
config.loader('yaml', {
test: /\.yaml/,
loaders: ['json', 'yaml'],
})
config.loader('png', {
test: /\.png$/,
loader: 'null',
})
config.loader('jpg', {
test: /\.jpg$/,
loader: 'null',
})
config.loader('gif', {
test: /\.gif$/,
loader: 'null',
})
config.loader('ico', {
test: /\.ico$/,
loader: 'null',
})
config.loader('pdf', {
test: /\.pdf$/,
loader: 'null',
})
config.loader('txt', {
test: /\.txt$/,
loader: 'null',
})
config.loader('config', {
test: /config\.toml/,
loader: 'config',
query: {
directory,
},
})
// Font loaders
config.loader('woff', {
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'url-loader?limit=10000&minetype=application/font-woff',
})
config.loader('ttf', {
test: /\.(ttf)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader',
})
config.loader('eot', {
test: /\.(eot)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader',
})
config.loader('svg', {
test: /\.(svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: 'file-loader',
})
switch (stage) {
case 'develop':
config.loader('css', {
test: /\.css$/,
loaders: ['style', 'css', 'postcss'],
})
config.loader('less', {
test: /\.less/,
loaders: ['style', 'css', 'less'],
})
config.loader('sass', {
test: /\.(sass|scss)/,
loaders: ['style', 'css', 'sass'],
})
config.merge({
postcss: [
require('postcss-import')(),
require('postcss-cssnext')({ browsers: 'last 2 versions' }),
require('postcss-browser-reporter'),
require('postcss-reporter'),
],
})
config.removeLoader('js')
config.loader('js', {
test: /\.jsx?$/, // Accept either .js or .jsx files.
exclude: /(node_modules|bower_components)/,
loader: 'babel',
query: {
presets: ['react-hmre', 'react', 'es2015', 'stage-1'],
plugins: ['add-module-exports'],
},
})
return config
case 'static':
config.loader('css', {
test: /\.css$/,
loaders: ['css'],
})
config.loader('less', {
test: /\.less/,
loaders: ['css', 'less'],
})
config.loader('sass', {
test: /\.(sass|scss)/,
loaders: ['css', 'sass'],
})
return config
case 'production':
config.loader('css', {
test: /\.css$/,
loader: ExtractTextPlugin.extract(['css', 'postcss']),
})
config.loader('less', {
test: /\.less/,
loader: ExtractTextPlugin.extract(['css', 'less']),
})
config.loader('sass', {
test: /\.(sass|scss)/,
loader: ExtractTextPlugin.extract(['css', 'sass']),
})
config.merge({
postcss: [
require('postcss-import')(),
require('postcss-cssnext')({
browsers: 'last 2 versions',
}),
require('cssnano')({
autoprefixer: false,
}),
],
})
return config
default:
return config
}
}
const config = new Config()
config.merge({
context: `${directory}/pages`,
node: {
__filename: true,
},
entry: entry(),
debug: true,
devtool: devtool(),
output: output(),
resolveLoader: {
modulesDirectories: [
`${directory}/node_modules`,
`${directory}/loaders`,
`${__dirname}/../../node_modules`,
`${__dirname}/../loaders`,
],
},
plugins: plugins(),
resolve: resolve(),
})
if (modifyWebpackConfig) {
return modifyWebpackConfig(module(config), stage)
} else {
return module(config)
}
}