This repository has been archived by the owner on Apr 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
301 lines (251 loc) · 7.11 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
291
292
293
294
295
296
297
298
299
300
301
'use strict';
/**
* Yet another Webpack plugin (for Gulp)
*
* @author Sergio Jiménez Herena
* @module gulp-webpack-yawp
* @version 0.1.0
* @license MIT
*/
const
PLUGIN_NAME = 'gulp-webpack-yawp',
// node
{ join } = require( 'path' ),
stream = require( 'stream' ),
// npm modules
File = require( 'vinyl' ),
MemoryFileSystem = require( 'memory-fs' ),
PluginError = require( 'plugin-error' ),
log = require( 'fancy-log' ),
through = require( 'through2' ),
{ clone, merge } = require( 'lodash' ),
applySourceMap = require( 'vinyl-sourcemaps-apply' ),
TERMINAL_HAS_COLOR = require( 'supports-color' ).stdout.hasBasic,
testIsFileName = /(?<name>^.*)(?<ext>\..*$)/,
testIsSourceMap = /(?:[^.]*\/)(?<fileName>.*)(?:\.map.*)/;
let
cache = {
webpackInstance: null,
wpConfig: null,
memoryFilesystem: null,
};
/**
* @typedef {object} yawpOptions
* @property {object} webpack
* Webpack instance
* @property {object} wpConfig
* Webpack configuration
* @property {string} [logMode=silent]
* Valid values are 'stats', 'silent', verbose'
* @property {object} statsOptions
* Stats to after compilation is done
* @property {boolean} [verbose=false]
* Verbose output
* @property {boolean} [watch=false]
* Execute webpack in watch mode
* @property {object} watchOptions
* Webpack watch mode options
*/
/**
* @param {yawpOptions} pluginOptions
* Plugin configuration
* @returns {stream} Node stream
*/
function gulpWebpack( pluginOptions ) {
if (
pluginOptions &&
(
pluginOptions.webpack !== cache.webpackInstance ||
pluginOptions.wpConfig !== cache.wpConfig
)
) {
cache = {};
}
const
{
logMode,
statsOptions,
watch,
watchOptions,
webpack,
wpConfig,
} = merge(
// defaults
{
logMode: 'silent',
statsOptions: {
builtAt: false,
chunks: false,
colors: TERMINAL_HAS_COLOR,
children: false,
hash: false,
modules: false,
performance: true,
warnings: true,
},
verbose: false,
watch: false,
watchOptions: {
builtAt: false,
chunks: false,
colors: TERMINAL_HAS_COLOR,
children: false,
hash: false,
modules: false,
performance: true,
warnings: true,
},
webpack: ( function evalWebpackInstance() {
const webpack = cache.webpackInstance || require( 'webpack' );
cache.webpackInstance = webpack;
return webpack;
}()),
wpConfig: ( function evalWebpackConfig() {
const config = cache.webpackConfig || null;
cache.webpackConfig = config;
return config;
}()),
},
// user configuration
pluginOptions || {},
),
[
config,
multiConfig,
] = Array.isArray( wpConfig ) ?
[
null,
wpConfig.map( config => clone( config )) || {},
] :
[
clone( wpConfig ) || {},
null
],
files = new Map(),
newStream = through.obj( transform, flush );
return newStream;
/**
* @param {File} file - A Vinyl object
* @param {string} encoding - The file encoding
* @param {Function} transformCb - Stream _transform callback
*/
function transform( file, encoding, transformCb ) {
if ( file.isNull()) {
transformCb( null, file );
return;
}
if ( !file.isBuffer()) {
newStream.emit( 'error', new PluginError({
plugin: PLUGIN_NAME,
message: 'Only buffers are supported.'
}));
}
files.set( file.basename, file );
transformCb( null );
}
/**
* @param {Function} flushCb - Stream _flush callback
*/
function flush( flushCb ) {
if ( !files.size ) {
log.warn( `${ PLUGIN_NAME }: No files were piped in.` );
newStream.emit( 'end' );
flushCb( null );
}
const
addSources = config => {
config.entry = config.entry || {};
files.forEach(( file, fileName ) => {
const entryName = fileName.match( testIsFileName ).groups.name;
config.entry[ entryName ] = file.path;
});
return config;
},
logStats = stats => {
if ( stats.hasErrors()) {
if ( !watch ) {
newStream.emit( 'error', new PluginError({
plugin: PLUGIN_NAME,
message: stats.toJson().errors.join( '\n' )
}));
}
}
switch ( logMode ) {
default: case 'stats':
log( stats.toString( statsOptions ));
break;
case 'verbose':
log( stats.toString({ colors: TERMINAL_HAS_COLOR }));
break;
case 'silent':
return;
}
if ( watch ) {
log( 'Webpack is watching...' );
}
},
notifyCb = ( err, stats ) => {
if ( err ) {
this.emit( 'error', new PluginError({
plugin: PLUGIN_NAME,
message: err.stack || err
}));
return;
}
stats.stats ?
stats.stats.forEach( logStats ) :
logStats( stats );
if ( !watch ) {
flushCb( null );
}
},
setUpCompiler = compiler => {
const memoryFileSystem = compiler.outputFileSystem =
cache.memoryFilesystem || new MemoryFileSystem();
cache.memoryFilesystem = memoryFileSystem;
compiler.hooks.afterEmit.tap(
PLUGIN_NAME,
compilation => {
Reflect.ownKeys( compilation.assets )
// eslint-disable-next-line no-inline-comments
.forEach( /** @type {string} */outName => {
const
outPath = join( compiler.outputPath, outName ),
outContents = memoryFileSystem.readFileSync( outPath );
if ( files.has( outName )) {
const sourceFile = files.get( outName );
sourceFile.contents = outContents;
this.push( sourceFile );
} else {
const matchResult = outName.match( testIsSourceMap );
if ( matchResult && matchResult.groups ) {
const mapSource = files.get( matchResult.groups.fileName );
if ( mapSource && mapSource.sourceMap ) {
applySourceMap( mapSource, outContents.toString());
return;
}
}
this.push( new File({
base: compiler.outputPath,
path: join( compiler.outputPath, outName ),
contents: outContents,
}));
}
});
}
)
},
compiler = webpack(
multiConfig ?
multiConfig.map( addSources ) :
addSources( config )
);
multiConfig ?
compiler.compilers.forEach( setUpCompiler ) :
setUpCompiler( compiler );
watch ?
compiler.watch( watchOptions, notifyCb ) :
compiler.run( notifyCb );
}
}
module.exports = gulpWebpack;