forked from fibjs/fibjs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
executable file
·420 lines (360 loc) · 12.2 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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
var path = require('path');
var fs = require('fs');
var os = require('os');
var webpack = require('webpack')
var recursiveReadSync = require('recursive-readdir-sync');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var CopyWebpackPlugin = require('copy-webpack-plugin');
var UglifyJsParallelPlugin = require('webpack-uglify-parallel');
var mkdir = require('mkdir');
var marked = require('marked');
var ejs = require('ejs');
var highlight = require('highlight.js');
var Viz;
var WebpackOnBuildPlugin = require('on-build-webpack');
var prod = process.argv.indexOf('--prod') !== -1;
process.env.NODE_ENV = prod ? 'production' : 'development';
function cssLoaders(options) {
options = options || {}
// generate loader string to be used with extract text plugin
function generateLoaders(loaders) {
var sourceLoader = loaders.map(function (loader) {
var extraParamChar
if (/\?/.test(loader)) {
loader = loader.replace(/\?/, '-loader?')
extraParamChar = '&'
} else {
loader = loader + '-loader'
extraParamChar = '?'
}
return loader + (options.sourceMap ? extraParamChar + 'sourceMap' : '')
}).join('!')
return ExtractTextPlugin.extract(sourceLoader)
}
return {
css: generateLoaders(['css']),
less: generateLoaders(['css', 'less'])
}
}
function styleLoaders(options) {
var output = []
var loaders = cssLoaders(options)
for (var extension in loaders) {
var loader = loaders[extension]
output.push({
test: new RegExp('\\.' + extension + '$'),
loader: loader
})
}
return output;
}
marked.setOptions({
highlight: function (code, lang) {
var res;
if (lang)
try {
res = highlight.highlight(lang, code).value;
} catch (e) {}
if (!res)
try {
res = highlight.highlightAuto(code).value;
} catch (e) {}
if (!res)
res = code;
var lines = res.split('\n').length;
var nums = [];
for (var i = 0; i < lines; i++)
nums.push(i + 1);
return '<div class="line-numbers">' + nums.join('\n') + '</div>' + res;
}
});
marked.Renderer.prototype.heading = function (text, level, raw) {
return '<h' +
level +
' id="' +
this.options.headerPrefix +
raw.replace(/\s+/g, '-') +
'">' +
text +
'</h' +
level +
'>\n';
};
function build_docs() {
console.log();
var config = {
from: 'docs',
dist: 'web/dist',
to: 'docs',
groups: {
"guide": {
etitle: 'Guide',
title: '开发指南',
path: "guide"
},
"module": {
etitle: 'Module',
title: '基础模块',
path: "manual/module"
},
"object": {
etitle: 'Object',
title: '内置对象',
path: "manual/object"
},
"awesome": {
etitle: 'Awesome',
title: '社区模块',
path: "awesome"
}
}
};
var render = {
dot: (txt, lang, code) => {
var svg = old_dot_cache[code];
if (!svg) {
if (Viz === undefined)
Viz = require('viz.js');
svg = Viz(code);
has_new = true;
}
dot_cache[code] = svg;
svg = svg.replace(/^<\?xml(.|\n)*?\?>(.|\n)*?<!DOCTYPE(.|\n)*?>/, '')
return '<div class="dot notranslate">' + svg + '</div>';
}
}
var groups = config.groups;
var old_dot_cache = {};
var dot_cache = {};
var has_new = false;
try {
old_dot_cache = JSON.parse(fs.readFileSync(path.join(__dirname, "web/dot_cache.json")).toString());
} catch (e) {}
var _tmpl = ejs.compile(fs.readFileSync(path.join(config.dist, 'docs.html')).toString());
function read_doc(p) {
var md = fs.readFileSync(p).toString();
md = md.replace(/```\s*(\S+)((.|\n)*?)```/g, (txt, lang, code) => {
return render[lang] ? render[lang](txt, lang, code) : txt;
});
var html = marked(md);
html = html.replace(/<a href=\"([^"]*\.md(#\w+)?)\">([\x20-\x3b\x3d-\x7f]+)<\/a>/g, (s, s1, s2, s3) => {
return `<a href="${s1}" class ="notranslate">${s3}</a>`;
});
html = html.replace(/<h3 id=\"([^"]+)\">([\x20-\x3b\x3d-\x7f]+)<\/h3>/g, (s, s1, s2) => {
return `<h3 id="${s1}" class ="notranslate">${s2}</h3>`;
});
html = html.replace(/<li>([^:,<]+)([:,])/g, (s, s1, s2) => {
return `<li><span class="notranslate">${s1}</span>${s2}`;
});
html = html.replace(/href=\"([^"]*\.md)(#\w+)?\"/g, (s, s1, s2) => {
var so = s1;
if (so.indexOf('http') == 0)
return s;
so = so.toLowerCase() + ".html";
if (s2)
so += s2;
so = "/" + path.join(path.dirname(p), so);
so = 'href="' + so + '"';
return so;
});
return html;
}
for (var g in groups) {
groups[g].url = "/" + path.join(config.from, groups[g].path, 'readme.md.html');
groups[g].toc = read_doc(path.join(config.from, groups[g].path, 'SUMMARY.md'));
}
function test_group(p) {
for (var g in groups)
if (p.indexOf(groups[g].path) != -1)
return g;
return "";
}
recursiveReadSync(config.from).forEach(function (file) {
var basename = path.basename(file);
if (basename.charAt(0) !== '.') {
var p = path.relative(config.from, file.toLowerCase());
p = path.join(config.to, p);
var file1 = path.join(config.dist, p);
mkdir.mkdirsSync(path.dirname(file1));
if (path.extname(file) == '.md') {
file1 += '.html';
var doc = read_doc(file);
var r = /<h[1-9]?.*>(.*)<\/h[1-9]?>/.exec(doc);
var title = r ? r[1] : '';
var html = _tmpl({
title: title,
group: test_group(p),
groups: groups,
doc: doc
});
var re = new RegExp('href=\"\/' + config.from + '/([^"> ]*)\"', 'g');
html = html.replace(re, (s, u) => {
u = path.join('/', config.to, u);
return 'href="' + u + '"';
});
fs.writeFileSync(file1, html);
} else
fs.writeFileSync(file1, fs.readFileSync(file));
}
});
if (has_new)
fs.writeFileSync(path.join(__dirname, "web/dot_cache.json"), JSON.stringify(dot_cache));
}
function relative() {
var baseFolder = 'web/dist';
var re = new RegExp('(href|src)=\"?(\/[^"> ]*)\"?', 'g');
recursiveReadSync(baseFolder).forEach(function (file) {
if (path.extname(file) == '.html') {
var file1 = '/' + path.relative(baseFolder, file);
var p = path.dirname(file1);
var html = fs.readFileSync(file).toString();
html = html.replace(/<li><a href=\"([^"]*\.md.html)\"/g, (s, s1) => {
if (file1 === s1)
return '<li class="active"><a href="' + s1 + '"';
return s;
});
html = html.replace(/<div class=dropdown-menu>( *<a href=[^>]+>[^<]+<\/a>)*/g, (s) => {
return s.replace(/href=#([^>]*)/g, (t, u) => {
return `href=/${u}${file1}`;
});
});
html = html.replace(re, (s, t, u) => {
u = path.relative(p, u);
if(u.endsWith('/download/tmpl.html')){
u =u.replace('tmpl','<%=file_name%>');
}
return t + '=' + u;
});
html = html.replace(/<div class=dropdown-menu>( *<a href=[^>]+>[^<]+<\/a>)*/g, (s) => {
return s.replace(/&\//g, (t) => {
return '';
});
});
fs.writeFileSync(file, html);
}
});
}
var webpack_config = {
entry: {},
output: {
path: 'web/dist',
publicPath: '/',
filename: 'js/[name].js',
chunkFilename: 'js/[id].js'
},
resolve: {
root: [path.resolve('./web/src/')]
},
module: {
loaders: [{
test: /\.(png|jpg)$/,
loader: 'url',
query: {
limit: 8192,
name: 'imgs/[name].[ext]'
},
exclude: /node_modules/
}, {
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/
}, {
test: /\.(html|htm|shtml)$/,
loader: 'includes'
}, {
test: /\.(woff2?|eot|ttf|otf|svg)(\?.*)?$/,
loader: 'url',
query: {
limit: 10000,
name: 'fonts/[name].[ext]'
}
},
styleLoaders({
extract: true
})
]
},
includes: {
extensions: ['', '.html', '.shtml', '.htm'],
pattern: {
re: /<!--\s*?include\s+?("|')(.+?)\1\s*?\-->/,
index: 2
}
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: 'common'
}),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.$": "jquery",
"window.jQuery": "jquery"
}),
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("production")
}
}),
new ExtractTextPlugin('css/[name].css'),
new CopyWebpackPlugin([{
from: path.resolve('./web/src/imgs'),
to: path.resolve('./web/dist/imgs')
}]),
new WebpackOnBuildPlugin(() => {
build_docs();
relative();
})
]
};
if (prod) {
webpack_config.plugins.push(new UglifyJsParallelPlugin({
workers: os.cpus().length,
comments: false,
compressor: {
warnings: false,
drop_console: true
},
output: {
comments: false,
keep_quoted_props: true // fix ie8 property name error
},
mangle: {
keep_fnames: true // fix ie8 function name error
}
}));
} else
webpack_config.devtool = "source-map";
var pages = path.resolve('./web/src/pages');
recursiveReadSync(pages).forEach(function (file) {
file = path.relative(pages, file);
var basename = path.basename(file);
if (basename.charAt(0) !== '.') {
if (/\.(html|htm|shtml)$/.test(file)) {
webpack_config.plugins.push(new HtmlWebpackPlugin({
filename: file,
template: path.resolve(pages, file),
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
// more options:
// https://github.com/kangax/html-minifier#options-quick-reference
},
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
chunksSortMode: 'dependency',
chunks: ['common', file.replace(/\.(html|htm|shtml)$/, '')]
}));
} else if (/.jsx?$/.test(file)) {
webpack_config.entry[file.replace(/.jsx?$/, '')] = path.resolve(pages, file);
} else {
webpack_config.plugins.push(new CopyWebpackPlugin([{
from: path.resolve(path.join('./web/src/pages/' + file)),
to: path.resolve(path.join('./web/dist/' + file))
}]));
}
}
});
module.exports = webpack_config;