-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
executable file
·471 lines (385 loc) · 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
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
'use strict';
const fs = require('fs-extra');
const path = require('path');
const chalk = require('chalk');
const polyfill = require('./libs/polyfill');
const klawSync = require('klaw-sync');
const minimatch = require('minimatch');
module.exports = {
/**
* export fs-extra capability
*/
fs: fs,
/**
* @deprecated [will be deprecated in next major release]
* get html files automatically
* @param {String} srcPath [directory contains html files]
* @return {Array} [array of html files path]
*/
getHtmlFile: function(srcPath) {
this.warn("steamer-webpack-utils: getHtmlFile will be deprecated in next major release! Please use getHtmlEntry instead");
if (!fs.existsSync(srcPath)) {
return [];
}
// read html filename from
let srcFiles = fs.readdirSync(srcPath);
srcFiles = srcFiles.filter((item) => {
return !!~item.indexOf('.html');
});
srcFiles = srcFiles.map((item) => {
return item.replace('.html', '');
});
return srcFiles;
},
/**
* get html files automatically
* @param {Object} options
* - {String} srcPath [directory contains html files]
* - {Integer} level [0 => current level, 1 => next level]
* @return {Array} [array of html files path]
*/
getHtmlEntry: function(options) {
let opt = options || {};
let level = opt.level || 0,
srcPath = opt.srcPath || "",
keyType = opt.keyType || "folderName";
if (!fs.existsSync(srcPath)) {
return [];
}
// read html filename from
let srcFiles = fs.readdirSync(srcPath),
htmlFiles = [];
if (level) {
srcFiles.map((item) => {
let folder = path.join(srcPath, item);
if (fs.lstatSync(folder).isDirectory()) {
let subSrcFiles = fs.readdirSync(folder);
htmlFiles = htmlFiles.concat(getFromSrc(subSrcFiles, item));
}
});
}
else {
htmlFiles = htmlFiles.concat(getFromSrc(srcFiles));
}
function getFromSrc(srcFiles, folderPath) {
let folder = folderPath || '';
srcFiles = srcFiles.filter((item) => {
return !!~item.indexOf('.html');
});
let htmlFiles = [];
srcFiles = srcFiles.map((item) => {
let obj = {};
if (keyType === 'fileName') {
obj.key = item.replace('.html', '');
}
else {
obj.key = folder || item.replace('.html', '');
}
obj.path = path.join(srcPath, folder, item);
htmlFiles.push(obj);
});
return htmlFiles;
}
return htmlFiles;
},
/**
* @deprecated [will be deprecated in next major release]
* get sprite folder, only depth 1st folder matter
* @param {String} spritePath [sprite image parent folder]
* @return {Array} [sprite folder]
*/
getSpriteFolder: function(spritePath) {
this.warn("steamer-webpack-utils: getSpriteFolder will be deprecated in next major release! Please use getSpriteEntry instead");
if (!fs.existsSync(spritePath)) {
return [];
}
let srcFiles = fs.readdirSync(spritePath);
srcFiles = srcFiles.filter((item) => {
return !~item.indexOf('.');
});
return srcFiles;
},
/**
* get sprite folder, only depth 1st folder matter
* @param {Object} options
* - {String} srcPath [sprite image parent folder]
* @return {Array} [sprite folder]
*/
getSpriteEntry: function(options) {
let opt = options || {};
let srcPath = opt.srcPath || "";
if (!fs.existsSync(srcPath)) {
return [];
}
let srcFiles = fs.readdirSync(srcPath),
spriteFiles = [];
srcFiles = srcFiles.filter((item) => {
return !~item.indexOf('.');
});
srcFiles.map((item) => {
let obj = {};
obj.key = item;
obj.path = path.join(srcPath, item);
spriteFiles.push(obj);
});
return spriteFiles;
},
/**
* @deprecated [will be deprecated in next major release]
* get js files automatically
* @param {String} srcPath [directory contains js files]
* @param {String} jsDirectory [js directory]
* @param {String} fileName [js filename]
* @param {Array} extensions [possiable js extension]
* @return {Object} [Object of js files path]
*/
getJsFile: function(srcPath, jsDirectory, fileName, extensions) {
this.warn("steamer-webpack-utils: getJsFile will be deprecated in next major release! Please use getJsEntry instead");
let jsFileArray = {};
if (!fs.existsSync(srcPath)) {
return jsFileArray;
}
//read js filename
let srcFiles = fs.readdirSync(path.join(srcPath, jsDirectory));
srcFiles = srcFiles.filter((item) => {
return item !== 'common';
});
srcFiles.map((item) => {
extensions.map((ext) => {
let jsPath = path.join(srcPath, jsDirectory, item, 'main.' + ext);
if (fs.existsSync(jsPath)) {
jsFileArray['js/' + item] = [jsPath];
}
});
});
return jsFileArray;
},
/**
* get js files automatically
* @param {Object} options
* - {String} srcPath [directory contains js files]
* - {String} fileName [entry js filename]
* - {Array} extensions [possiable js extension]
* - {String} keyPrefix [prefix of key]
* - {Integer} level [0 => current level, 1 => next level]
* @return {Object} [Object of js files path]
*/
getJsEntry: function(options) {
let opt = options || {};
let srcPath = opt.srcPath || "",
fileName = opt.fileName || "main",
extensions = opt.extensions || ["js"],
keyPrefix = opt.keyPrefix || "",
level = opt.level || 0;
let jsFileArray = {};
if (!fs.existsSync(srcPath)) {
return jsFileArray;
}
//read js filename
let srcFiles = fs.readdirSync(srcPath);
if (level) {
srcFiles.filter((item) => {
let folder = path.join(srcPath, item);
return fs.lstatSync(folder).isDirectory();
});
srcFiles.map((item) => {
extensions.map((ext) => {
let jsPath = path.join(srcPath, item, fileName + '.' + ext);
if (fs.existsSync(jsPath) && !jsFileArray[keyPrefix + item]) {
jsFileArray[keyPrefix + item] = [jsPath];
}
});
});
}
else {
extensions.map((ext) => {
let jsPath = path.join(srcPath, fileName + '.' + ext);
if (fs.existsSync(jsPath)) {
jsFileArray[keyPrefix + fileName] = [jsPath];
}
});
}
return jsFileArray;
},
/**
* select js files for compilation
* @param {Object} jsFiles [all js files]
* @param {Array} selectedFiles [selected js files]
* @return {Array} [selected js files in certain format]
*/
filterJsFile: function(jsFiles, selectedFiles) {
if (!selectedFiles || !selectedFiles.length) {
return jsFiles;
}
var newJsFiles = {};
Object.keys(jsFiles).map((item) => {
selectedFiles.forEach((pattern) => {
if (minimatch(item, pattern)) {
newJsFiles[item] = jsFiles[item];
}
});
});
return newJsFiles;
},
/**
* select js files for compilation by npm command
* @param {Object} jsFiles [all js files]
* @return {Array} [selected js files in certain format]
*/
filterJsFileByCmd: function(jsFiles) {
let argvs = this.getNpmArgvs();
if (argvs.entry) {
let entries = argvs.entry.split(",");
jsFiles = this.filterJsFile(jsFiles, entries);
}
return jsFiles;
},
/**
* select html files for compilation
* @param {Array} htmlFiles [all html files]
* @param {Array} selectedFiles [selected html files]
* @return {Array} [selected html files in certain format]
*/
filterHtmlFile: function(htmlFiles, selectedFiles) {
if (!selectedFiles || !selectedFiles.length) {
return htmlFiles;
}
htmlFiles = htmlFiles.filter((item) => {
for (let i = 0; i < selectedFiles.length; i += 1) {
if (minimatch(item.key, selectedFiles[i])) {
return true;
}
}
return false;
});
return htmlFiles;
},
/**
* select html files for compilation by npm command
* @param {Array} htmlFiles [all html files]
* @return {Array} [selected html files in certain format]
*/
filterHtmlFileByCmd: function(htmlFiles) {
let argvs = this.getNpmArgvs();
if (argvs.entry) {
let entries = argvs.entry.split(",");
htmlFiles = this.filterHtmlFile(htmlFiles, entries);
}
return htmlFiles;
},
/**
* walk files and replace file string
* @param {String} folder [src folder]
* @param {Array} extensions [include which extensions]
* @param {Object} replaceObj [name need to be replaced]
*/
walkAndReplace: function(folder, extensions, replaceObj) {
var extensions = extensions || [],
replaceObj = replaceObj || {};
var files = klawSync(folder, {nodir: true});
if (extensions.length) {
files = files.filter((item) => {
let ext = path.extname(item.path);
return extensions.includes(ext);
});
}
files.forEach((file) => {
let content = fs.readFileSync(file.path, "utf-8");
Object.keys(replaceObj).forEach((key) => {
content = content.replace(new RegExp("<% " + key + " %>", "ig"), function(match) {
return replaceObj[key];
});
});
fs.writeFileSync(file.path, content, "utf-8");
});
},
/**
* copy template to specific place
* @param {String} srcFolder [src folder]
* @param {String} destFolder [destination folder]
*/
copyTemplate: function(srcFolder, destFolder) {
if (fs.existsSync(destFolder)) {
throw new Error(destFolder + " exists");
}
fs.copySync(srcFolder, destFolder);
},
/**
* add plugin for webpack config
* @param {Object} conf [webpack config]
* @param {Object} plugin [webpack plugin]
* @param {Object} opt [plugin config]
*/
addPlugins: function(conf, plugin, opt) {
conf.plugins.push(new plugin(opt));
},
/**
* get command line argvs
* @param {Array} argvs [original argvs array]
* @return {Object} [parsed result]
*/
getArgvs: function(argvs) {
var yargs = require('yargs');
if (argvs) {
return yargs(argvs).argv;
}
else {
return yargs(process.argv).argv;
}
},
/**
* get npm command line argvs
* @return {Object} [parsed result]
*/
getNpmArgvs: function() {
return this.getArgvs(JSON.parse(process.env.npm_config_argv || "[]").original);
},
/**
* print error message
* @param {String} str [message]
* @return {String} [msg]
*/
error: function(str) {
this.log(str, 'red');
},
/**
* print information
* @param {String} str [message]
* @return {String} [msg]
*/
info: function(str) {
this.log(str, 'cyan');
},
/**
* print warning message
* @param {String} str [message]
* @return {String} [msg]
*/
warn: function(str) {
this.log(str, 'yellow');
},
/**
* print success message
* @param {String} str [message]
* @return {String} [msg]
*/
success: function(str) {
this.log(str, 'green');
},
_isType: function(type, obj) {
return Object.prototype.toString.call(obj) === '[object ' + type + ']';
},
/**
* pring message
* @param {String} str [message]
* @param {String} color [color name]
* @return {String} [message with color]
*/
log: function(str, color) {
str = str || '';
str = this._isType('Object', str) ? JSON.stringify(str) : str;
let msg = chalk[color](str);
console.log(msg);
return msg;
}
};