@uniformdev/cli 19.199.0 → 19.200.1-alpha.3
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-MIERGFOU.mjs → chunk-KSB3SFPP.mjs} +0 -8
- package/dist/defaultConfig.mjs +1 -1
- package/dist/index.mjs +2083 -1869
- package/package.json +8 -8
|
@@ -60,13 +60,6 @@ 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
|
-
}
|
|
70
63
|
function nodeFetchProxy(proxy, verbose) {
|
|
71
64
|
if (proxy) {
|
|
72
65
|
console.log(`\u{1F991} Using proxy ${proxy}`);
|
|
@@ -307,7 +300,6 @@ export {
|
|
|
307
300
|
withConfiguration,
|
|
308
301
|
withApiOptions,
|
|
309
302
|
withDebugOptions,
|
|
310
|
-
withVerboseOption,
|
|
311
303
|
nodeFetchProxy,
|
|
312
304
|
withProjectOptions,
|
|
313
305
|
withTeamOptions,
|
package/dist/defaultConfig.mjs
CHANGED