forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
64 lines (50 loc) · 1.43 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
"use strict";
const { Command } = require("@lerna/command");
const { collectUpdates } = require("@lerna/collect-updates");
const listable = require("@lerna/listable");
const { output } = require("@lerna/output");
module.exports = factory;
function factory(argv) {
return new ChangedCommand(argv);
}
class ChangedCommand extends Command {
get otherCommandConfigs() {
// back-compat
return ["version", "publish"];
}
initialize() {
if (this.options.conventionalGraduate) {
// provide artificial --conventional-commits so --conventional-graduate works
this.options.conventionalCommits = true;
if (this.options.forcePublish) {
this.logger.warn("option", "--force-publish superseded by --conventional-graduate");
}
}
const updates = collectUpdates(
this.packageGraph.rawPackageList,
this.packageGraph,
this.execOpts,
this.options
);
this.result = listable.format(
updates.map((node) => node.pkg),
this.options
);
if (this.result.count === 0) {
this.logger.info("", "No changed packages found");
process.exitCode = 1;
// prevents execute()
return false;
}
}
execute() {
output(this.result.text);
this.logger.success(
"found",
"%d %s ready to publish",
this.result.count,
this.result.count === 1 ? "package" : "packages"
);
}
}
module.exports.ChangedCommand = ChangedCommand;