forked from lerna/lerna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
command.js
180 lines (166 loc) · 4.98 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
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
"use strict";
const log = require("npmlog");
const versionCommand = require("@lerna/version/command");
/**
* @see https://github.com/yargs/yargs/blob/master/docs/advanced.md#providing-a-command-module
*/
exports.command = "publish [bump]";
exports.describe = "Publish packages in the current project.";
exports.builder = (yargs) => {
const opts = {
c: {
describe: "Publish packages after every successful merge using the sha as part of the tag.",
alias: "canary",
type: "boolean",
},
// preid is copied from ../version/command because a whitelist for one option isn't worth it
preid: {
describe: "Specify the prerelease identifier when publishing a prerelease",
type: "string",
requiresArg: true,
defaultDescription: "alpha",
},
contents: {
describe: "Subdirectory to publish. Must apply to ALL packages.",
type: "string",
requiresArg: true,
defaultDescription: ".",
},
"dist-tag": {
describe: "Publish packages with the specified npm dist-tag",
type: "string",
requiresArg: true,
},
"legacy-auth": {
describe: "Legacy Base64 Encoded username and password.",
type: "string",
},
"pre-dist-tag": {
describe: "Publish prerelease packages with the specified npm dist-tag",
type: "string",
requiresArg: true,
},
"git-head": {
describe:
"Explicit SHA to set as gitHead when packing tarballs, only allowed with 'from-package' positional.",
type: "string",
requiresArg: true,
},
"graph-type": {
describe: "Type of dependency to use when determining package hierarchy.",
choices: ["all", "dependencies"],
defaultDescription: "dependencies",
},
"ignore-prepublish": {
describe: "Disable deprecated 'prepublish' lifecycle script",
type: "boolean",
},
"ignore-scripts": {
describe: "Disable all lifecycle scripts",
type: "boolean",
},
// TODO: (major) make --no-granular-pathspec the default
"no-granular-pathspec": {
describe: "Do not reset changes file-by-file, but globally.",
type: "boolean",
},
"granular-pathspec": {
// proxy for --no-granular-pathspec
hidden: true,
// describe: "Reset changes file-by-file, not globally.",
type: "boolean",
},
otp: {
describe: "Supply a one-time password for publishing with two-factor authentication.",
type: "string",
requiresArg: true,
},
registry: {
describe: "Use the specified registry for all npm client operations.",
type: "string",
requiresArg: true,
},
"require-scripts": {
describe: "Execute ./scripts/prepublish.js and ./scripts/postpublish.js, relative to package root.",
type: "boolean",
},
"no-git-reset": {
describe: "Do not reset changes to working tree after publishing is complete.",
type: "boolean",
},
"git-reset": {
// proxy for --no-git-reset
hidden: true,
type: "boolean",
},
"temp-tag": {
describe: "Create a temporary tag while publishing.",
type: "boolean",
},
"no-verify-access": {
describe: "Do not verify package read-write access for current npm user.",
type: "boolean",
},
"verify-access": {
// proxy for --no-verify-access
hidden: true,
type: "boolean",
},
// y: {
// describe: "Skip all confirmation prompts.",
// alias: "yes",
// type: "boolean",
// },
};
composeVersionOptions(yargs);
yargs.options(opts);
// "unhide" duplicate options
const { hiddenOptions } = yargs.getOptions();
const sharedKeys = ["preid", "y", "ignore-scripts"];
for (const sharedKey of sharedKeys) {
hiddenOptions.splice(
hiddenOptions.findIndex((k) => k === sharedKey),
1
);
}
yargs.group(Object.keys(opts).concat(sharedKeys), "Command Options:");
return yargs
.option("npm-tag", {
// TODO: remove in next major release
hidden: true,
conflicts: "dist-tag",
type: "string",
requiresArg: true,
})
.option("verify-registry", {
// TODO: remove in next major release
hidden: true,
type: "boolean",
})
.option("skip-npm", {
// TODO: remove in next major release
// deprecation notice handled in initialize()
hidden: true,
type: "boolean",
})
.check((argv) => {
/* eslint-disable no-param-reassign */
if (argv.npmTag) {
argv.distTag = argv.npmTag;
argv["dist-tag"] = argv.npmTag;
delete argv.npmTag;
delete argv["npm-tag"];
log.warn("deprecated", "--npm-tag has been renamed --dist-tag");
}
/* eslint-enable no-param-reassign */
return argv;
});
};
exports.handler = function handler(argv) {
return require(".")(argv);
};
function composeVersionOptions(yargs) {
versionCommand.addBumpPositional(yargs, ["from-git", "from-package"]);
versionCommand.builder(yargs, "publish");
return yargs;
}