-
Notifications
You must be signed in to change notification settings - Fork 122
/
index.js
290 lines (255 loc) · 7.85 KB
/
index.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
'use strict';
const fancyLog = require('fancy-log');
const PluginError = require('plugin-error');
const supportsColor = require('supports-color');
const File = require('vinyl');
const MemoryFileSystem = require('memory-fs');
const nodePath = require('path');
const through = require('through');
const ProgressPlugin = require('webpack/lib/ProgressPlugin');
const clone = require('lodash.clone');
const defaultStatsOptions = {
colors: supportsColor.stdout.hasBasic,
hash: false,
timings: false,
chunks: false,
chunkModules: false,
modules: false,
children: true,
version: true,
cached: false,
cachedAssets: false,
reasons: false,
source: false,
errorDetails: false
};
module.exports = function (options, wp, done) {
const cache = {
options: options,
wp: wp
};
options = clone(options) || {};
let config = options.config || options;
const isInWatchMode = !!options.watch;
delete options.watch;
if (typeof config === 'string') {
config = require(config);
}
// Webpack 4 doesn't support the `quiet` attribute, however supports
// setting `stats` to a string within an array of configurations
// (errors-only|minimal|none|normal|verbose) or an object with an absurd
// amount of config
const isSilent = options.quiet || (typeof options.stats === 'string' && (options.stats.match(/^(errors-only|minimal|none)$/)));
if (typeof done !== 'function') {
let callingDone = false;
done = function (err, stats) {
if (err) {
// The err is here just to match the API but isnt used
return;
}
stats = stats || {};
if (isSilent || callingDone) {
return;
}
// Debounce output a little for when in watch mode
if (isInWatchMode) {
callingDone = true;
setTimeout(function () {
callingDone = false;
}, 500);
}
if (options.verbose) {
fancyLog(stats.toString({
colors: supportsColor.stdout.hasBasic
}));
} else {
const statsOptions = (options && options.stats) || {};
if (typeof statsOptions === 'object') {
Object.keys(defaultStatsOptions).forEach(function (key) {
if (typeof statsOptions[key] === 'undefined') {
statsOptions[key] = defaultStatsOptions[key];
}
});
}
const statusLog = stats.toString(statsOptions);
if (statusLog) {
fancyLog(statusLog);
}
}
};
}
const webpack = wp || require('webpack');
let entry = [];
const entries = Object.create(null);
const stream = through(function (file) {
if (file.isNull()) {
return;
}
if ('named' in file) {
if (!Array.isArray(entries[file.named])) {
entries[file.named] = [];
}
entries[file.named].push(file.path);
} else {
entry = entry || [];
entry.push(file.path);
}
}, function () {
const self = this;
const handleConfig = function (config) {
config.output = config.output || {};
// Determine pipe'd in entry
if (Object.keys(entries).length > 0) {
entry = entries;
if (!config.output.filename) {
// Better output default for multiple chunks
config.output.filename = '[name].js';
}
} else if (entry.length < 2) {
entry = entry[0] || entry;
}
config.entry = config.entry || entry;
config.output.path = config.output.path || process.cwd();
entry = [];
if (!config.entry || config.entry.length < 1) {
fancyLog('webpack-stream - No files given; aborting compilation');
self.emit('end');
return false;
}
return true;
};
let succeeded;
if (Array.isArray(config)) {
for (let i = 0; i < config.length; i++) {
succeeded = handleConfig(config[i]);
if (!succeeded) {
return false;
}
}
} else {
succeeded = handleConfig(config);
if (!succeeded) {
return false;
}
}
// Cache compiler for future use
const compiler = cache.compiler || webpack(config);
cache.compiler = compiler;
const callback = function (err, stats) {
if (err) {
self.emit('error', new PluginError('webpack-stream', err));
return;
}
const jsonStats = stats ? stats.toJson() || {} : {};
const errors = jsonStats.errors || [];
if (errors.length) {
const resolveErrorMessage = (err) => {
if (
typeof err === 'object' &&
err !== null &&
Object.prototype.hasOwnProperty.call(err, 'message')
) {
return err.message;
} else if (
typeof err === 'object' &&
err !== null &&
'toString' in err &&
err.toString() !== '[object Object]'
) {
return err.toString();
} else if (Array.isArray(err)) {
return err.map(resolveErrorMessage).join('\n');
} else {
return err;
}
};
const errorMessage = errors.map(resolveErrorMessage).join('\n');
const compilationError = new PluginError('webpack-stream', errorMessage);
if (!isInWatchMode) {
self.emit('error', compilationError);
}
self.emit('compilation-error', compilationError);
}
if (!isInWatchMode) {
self.queue(null);
}
done(err, stats);
if (isInWatchMode && !isSilent) {
fancyLog('webpack is watching for changes');
}
};
if (isInWatchMode) {
const watchOptions = options.watchOptions || {};
compiler.watch(watchOptions, callback);
} else {
compiler.run(callback);
}
const handleCompiler = function (compiler) {
if (options.progress) {
(new ProgressPlugin(function (percentage, msg) {
percentage = Math.floor(percentage * 100);
msg = percentage + '% ' + msg;
if (percentage < 10) msg = ' ' + msg;
fancyLog('webpack', msg);
})).apply(compiler);
}
cache.mfs = cache.mfs || new MemoryFileSystem();
const fs = compiler.outputFileSystem = cache.mfs;
const assetEmittedPlugin = compiler.hooks
// Webpack 4/5
? function (callback) { compiler.hooks.assetEmitted.tapAsync('WebpackStream', callback); }
// Webpack 2/3
: function (callback) { compiler.plugin('asset-emitted', callback); };
assetEmittedPlugin(function (outname, _, callback) {
const file = prepareFile(fs, compiler, outname);
self.queue(file);
callback();
});
};
if (Array.isArray(options.config)) {
compiler.compilers.forEach(function (compiler) {
handleCompiler(compiler);
});
} else {
handleCompiler(compiler);
}
if (options.watch && !isSilent) {
const watchRunPlugin = compiler.hooks
// Webpack 4/5
? callback => compiler.hooks.watchRun.tapAsync('WebpackInfo', callback)
// Webpack 2/3
: callback => compiler.plugin('watch-run', callback);
watchRunPlugin((compilation, callback) => {
fancyLog('webpack compilation starting...');
callback();
});
}
});
// If entry point manually specified, trigger that
const hasEntry = Array.isArray(config)
? config.some(function (c) { return c.entry; })
: config.entry;
if (hasEntry) {
stream.end();
}
return stream;
};
function prepareFile (fs, compiler, outname) {
let path = fs.join(compiler.outputPath, outname);
if (path.indexOf('?') !== -1) {
path = path.split('?')[0];
}
const contents = fs.readFileSync(path);
const file = new File({
base: compiler.outputPath,
path: nodePath.join(compiler.outputPath, outname),
contents: contents
});
return file;
}
// Expose webpack if asked
Object.defineProperty(module.exports, 'webpack', {
get: function () {
return require('webpack');
}
});