@uniformdev/cli 19.200.1-alpha.3 → 19.201.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-KSB3SFPP.mjs → chunk-MIERGFOU.mjs} +8 -0
- package/dist/defaultConfig.mjs +1 -1
- package/dist/index.mjs +1879 -2093
- package/package.json +8 -8
|
@@ -60,6 +60,13 @@ function withDebugOptions(yargs) {
|
|
|
60
60
|
type: "boolean"
|
|
61
61
|
});
|
|
62
62
|
}
|
|
63
|
+
function withVerboseOption(yargs) {
|
|
64
|
+
return yargs.option("verbose", {
|
|
65
|
+
describe: "Enable verbose mode, which outputs additional information",
|
|
66
|
+
default: false,
|
|
67
|
+
type: "boolean"
|
|
68
|
+
});
|
|
69
|
+
}
|
|
63
70
|
function nodeFetchProxy(proxy, verbose) {
|
|
64
71
|
if (proxy) {
|
|
65
72
|
console.log(`\u{1F991} Using proxy ${proxy}`);
|
|
@@ -300,6 +307,7 @@ export {
|
|
|
300
307
|
withConfiguration,
|
|
301
308
|
withApiOptions,
|
|
302
309
|
withDebugOptions,
|
|
310
|
+
withVerboseOption,
|
|
303
311
|
nodeFetchProxy,
|
|
304
312
|
withProjectOptions,
|
|
305
313
|
withTeamOptions,
|
package/dist/defaultConfig.mjs
CHANGED