forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommand.js
77 lines (71 loc) · 2.34 KB
/
command.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
"use strict";
const { filterOptions } = require("@lerna/filter-options");
/**
* @see https://github.com/yargs/yargs/blob/master/docs/advanced.md#providing-a-command-module
*/
exports.command = "exec [cmd] [args..]";
exports.describe = "Execute an arbitrary command in each package";
exports.builder = (yargs) => {
yargs
.example("$0 exec ls -- --la", "# execute `ls -la` in all packages")
.example("$0 exec -- ls --la", "# execute `ls -la` in all packages, keeping cmd outside")
.parserConfiguration({
"populate--": true,
})
.positional("cmd", {
describe: "The command to execute. Any command flags must be passed after --",
type: "string",
})
.positional("args", {
describe: "Positional arguments (not recognized by lerna) to send to command",
type: "string",
})
.options({
stream: {
group: "Command Options:",
describe: "Stream output with lines prefixed by originating package name.",
type: "boolean",
},
parallel: {
group: "Command Options:",
describe: "Execute command with unlimited concurrency, streaming prefixed output.",
type: "boolean",
},
"no-bail": {
group: "Command Options:",
describe: "Continue executing command despite non-zero exit in a given package.",
type: "boolean",
},
bail: {
// proxy for --no-bail
hidden: true,
type: "boolean",
},
// This option controls prefix for stream output so that it can be disabled to be friendly
// to tools like Visual Studio Code to highlight the raw results
"no-prefix": {
group: "Command Options:",
describe: "Do not prefix streaming output.",
type: "boolean",
},
prefix: {
// proxy for --no-prefix
hidden: true,
type: "boolean",
},
profile: {
group: "Command Options:",
describe: "Profile command executions and output performance profile to default location.",
type: "boolean",
},
"profile-location": {
group: "Command Options:",
describe: "Output performance profile to custom location instead of default project root.",
type: "string",
},
});
return filterOptions(yargs);
};
exports.handler = function handler(argv) {
return require(".")(argv);
};