blob: dbdc93d9f56901927b9e4825a01f76b052d28ec7 (
plain) (
blame)
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
|
/**
* @file
*
* Provides the build:jqueryui command to minify *.js source files.
*
* Run build:jqueryui with --file to only parse a specific file.
* @example <caption>Only process assets/vendor/jquery.ui/ui/widget.js and
* assets/vendor/jquery.ui/ui/plugin.js</caption
* yarn run build:jqueryui --file assets/vendor/jquery.ui/ui/widget.js --file
* assets/vendor/jquery.ui/ui/plugin.js
* @example <caption>Check if all files have been compiled correctly</caption>
* yarn run build:jqueryui --check
*
* @internal This file is part of the core javascript build process and is only
* meant to be used in that context.
*/
'use strict';
const glob = require('glob');
const argv = require('minimist')(process.argv.slice(2));
const check = require('./jqueryui-check');
const minify = require('./jqueryui-terser');
const log = require('./log');
// Match only on jQuery UI .js files.
const fileMatch = './assets/vendor/jquery.ui/**/!(*-min).js';
const processFiles = (error, filePaths) => {
if (error) {
process.exitCode = 1;
}
// Process all the found files.
let callback = minify;
if (argv.check) {
callback = check;
}
filePaths.forEach(callback);
};
if (argv.file) {
processFiles(null, [].concat(argv.file));
}
else {
glob(fileMatch, {}, processFiles);
}
process.exitCode = 0;
|