vercel 44.1.0 → 44.2.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/index.js +483 -203
- package/package.json +4 -4
package/dist/index.js
CHANGED
@@ -9374,7 +9374,7 @@ var require_log_symbols = __commonJS2({
|
|
9374
9374
|
"use strict";
|
9375
9375
|
var chalk124 = require_chalk();
|
9376
9376
|
var isSupported = process.platform !== "win32" || process.env.CI || process.env.TERM === "xterm-256color";
|
9377
|
-
var
|
9377
|
+
var main17 = {
|
9378
9378
|
info: chalk124.blue("\u2139"),
|
9379
9379
|
success: chalk124.green("\u2714"),
|
9380
9380
|
warning: chalk124.yellow("\u26A0"),
|
@@ -9386,7 +9386,7 @@ var require_log_symbols = __commonJS2({
|
|
9386
9386
|
warning: chalk124.yellow("\u203C"),
|
9387
9387
|
error: chalk124.red("\xD7")
|
9388
9388
|
};
|
9389
|
-
module2.exports = isSupported ?
|
9389
|
+
module2.exports = isSupported ? main17 : fallbacks;
|
9390
9390
|
}
|
9391
9391
|
});
|
9392
9392
|
|
@@ -31639,9 +31639,59 @@ var init_command3 = __esm({
|
|
31639
31639
|
}
|
31640
31640
|
});
|
31641
31641
|
|
31642
|
+
// src/commands/cache/command.ts
|
31643
|
+
var purgeSubcommand, cacheCommand;
|
31644
|
+
var init_command4 = __esm({
|
31645
|
+
"src/commands/cache/command.ts"() {
|
31646
|
+
"use strict";
|
31647
|
+
init_pkg_name();
|
31648
|
+
init_arg_common();
|
31649
|
+
purgeSubcommand = {
|
31650
|
+
name: "purge",
|
31651
|
+
aliases: [],
|
31652
|
+
description: "Purge cache for the current project",
|
31653
|
+
arguments: [],
|
31654
|
+
options: [
|
31655
|
+
yesOption,
|
31656
|
+
{
|
31657
|
+
name: "type",
|
31658
|
+
description: "Type of cache to purge",
|
31659
|
+
shorthand: null,
|
31660
|
+
type: String,
|
31661
|
+
argument: "TYPE",
|
31662
|
+
deprecated: false
|
31663
|
+
}
|
31664
|
+
],
|
31665
|
+
examples: [
|
31666
|
+
{
|
31667
|
+
name: "Purge all caches for the current project",
|
31668
|
+
value: `${packageName} cache purge`
|
31669
|
+
},
|
31670
|
+
{
|
31671
|
+
name: "Purge only the CDN cache",
|
31672
|
+
value: `${packageName} cache purge --type cdn`
|
31673
|
+
},
|
31674
|
+
{
|
31675
|
+
name: "Purge only the data cache",
|
31676
|
+
value: `${packageName} cache purge --type data`
|
31677
|
+
}
|
31678
|
+
]
|
31679
|
+
};
|
31680
|
+
cacheCommand = {
|
31681
|
+
name: "cache",
|
31682
|
+
aliases: [],
|
31683
|
+
description: "Manage cache for a Project",
|
31684
|
+
arguments: [],
|
31685
|
+
subcommands: [purgeSubcommand],
|
31686
|
+
options: [],
|
31687
|
+
examples: []
|
31688
|
+
};
|
31689
|
+
}
|
31690
|
+
});
|
31691
|
+
|
31642
31692
|
// src/commands/certs/command.ts
|
31643
31693
|
var removeSubcommand2, issueSubcommand, listSubcommand2, addSubcommand, certsCommand;
|
31644
|
-
var
|
31694
|
+
var init_command5 = __esm({
|
31645
31695
|
"src/commands/certs/command.ts"() {
|
31646
31696
|
"use strict";
|
31647
31697
|
init_pkg_name();
|
@@ -31791,7 +31841,7 @@ var init_command4 = __esm({
|
|
31791
31841
|
|
31792
31842
|
// src/commands/deploy/command.ts
|
31793
31843
|
var deprecatedArchiveSplitTgz, deployCommand;
|
31794
|
-
var
|
31844
|
+
var init_command6 = __esm({
|
31795
31845
|
"src/commands/deploy/command.ts"() {
|
31796
31846
|
"use strict";
|
31797
31847
|
init_arg_common();
|
@@ -31961,7 +32011,7 @@ var init_command5 = __esm({
|
|
31961
32011
|
|
31962
32012
|
// src/commands/dev/command.ts
|
31963
32013
|
var devCommand;
|
31964
|
-
var
|
32014
|
+
var init_command7 = __esm({
|
31965
32015
|
"src/commands/dev/command.ts"() {
|
31966
32016
|
"use strict";
|
31967
32017
|
init_pkg_name();
|
@@ -32005,7 +32055,7 @@ var init_command6 = __esm({
|
|
32005
32055
|
|
32006
32056
|
// src/commands/dns/command.ts
|
32007
32057
|
var importSubcommand, listSubcommand3, addSubcommand2, removeSubcommand3, dnsCommand;
|
32008
|
-
var
|
32058
|
+
var init_command8 = __esm({
|
32009
32059
|
"src/commands/dns/command.ts"() {
|
32010
32060
|
"use strict";
|
32011
32061
|
init_pkg_name();
|
@@ -32133,7 +32183,7 @@ var init_command7 = __esm({
|
|
32133
32183
|
|
32134
32184
|
// src/commands/domains/command.ts
|
32135
32185
|
var listSubcommand4, inspectSubcommand, addSubcommand3, removeSubcommand4, buySubcommand, moveSubcommand, transferInSubcommand, domainsCommand;
|
32136
|
-
var
|
32186
|
+
var init_command9 = __esm({
|
32137
32187
|
"src/commands/domains/command.ts"() {
|
32138
32188
|
"use strict";
|
32139
32189
|
init_pkg_name();
|
@@ -32330,7 +32380,7 @@ var init_env_target = __esm({
|
|
32330
32380
|
|
32331
32381
|
// src/commands/env/command.ts
|
32332
32382
|
var targetPlaceholder, listSubcommand5, addSubcommand4, removeSubcommand5, pullSubcommand, envCommand;
|
32333
|
-
var
|
32383
|
+
var init_command10 = __esm({
|
32334
32384
|
"src/commands/env/command.ts"() {
|
32335
32385
|
"use strict";
|
32336
32386
|
init_pkg_name();
|
@@ -32527,7 +32577,7 @@ var init_command9 = __esm({
|
|
32527
32577
|
|
32528
32578
|
// src/commands/git/command.ts
|
32529
32579
|
var connectSubcommand, disconnectSubcommand, gitCommand;
|
32530
|
-
var
|
32580
|
+
var init_command11 = __esm({
|
32531
32581
|
"src/commands/git/command.ts"() {
|
32532
32582
|
"use strict";
|
32533
32583
|
init_pkg_name();
|
@@ -32581,7 +32631,7 @@ var init_command10 = __esm({
|
|
32581
32631
|
|
32582
32632
|
// src/commands/init/command.ts
|
32583
32633
|
var initCommand;
|
32584
|
-
var
|
32634
|
+
var init_command12 = __esm({
|
32585
32635
|
"src/commands/init/command.ts"() {
|
32586
32636
|
"use strict";
|
32587
32637
|
init_pkg_name();
|
@@ -32631,7 +32681,7 @@ var init_command11 = __esm({
|
|
32631
32681
|
|
32632
32682
|
// src/commands/inspect/command.ts
|
32633
32683
|
var inspectCommand;
|
32634
|
-
var
|
32684
|
+
var init_command13 = __esm({
|
32635
32685
|
"src/commands/inspect/command.ts"() {
|
32636
32686
|
"use strict";
|
32637
32687
|
init_pkg_name();
|
@@ -32697,7 +32747,7 @@ var init_command12 = __esm({
|
|
32697
32747
|
|
32698
32748
|
// src/commands/install/command.ts
|
32699
32749
|
var installCommand;
|
32700
|
-
var
|
32750
|
+
var init_command14 = __esm({
|
32701
32751
|
"src/commands/install/command.ts"() {
|
32702
32752
|
"use strict";
|
32703
32753
|
init_pkg_name();
|
@@ -32724,7 +32774,7 @@ var init_command13 = __esm({
|
|
32724
32774
|
|
32725
32775
|
// src/commands/integration-resource/command.ts
|
32726
32776
|
var removeSubcommand6, disconnectSubcommand2, createThresholdSubcommand, integrationResourceCommand;
|
32727
|
-
var
|
32777
|
+
var init_command15 = __esm({
|
32728
32778
|
"src/commands/integration-resource/command.ts"() {
|
32729
32779
|
"use strict";
|
32730
32780
|
init_arg_common();
|
@@ -32875,7 +32925,7 @@ var init_command14 = __esm({
|
|
32875
32925
|
|
32876
32926
|
// src/commands/integration/command.ts
|
32877
32927
|
var addSubcommand5, openSubcommand, listSubcommand6, balanceSubcommand, removeSubcommand7, integrationCommand;
|
32878
|
-
var
|
32928
|
+
var init_command16 = __esm({
|
32879
32929
|
"src/commands/integration/command.ts"() {
|
32880
32930
|
"use strict";
|
32881
32931
|
init_arg_common();
|
@@ -33037,7 +33087,7 @@ var init_command15 = __esm({
|
|
33037
33087
|
|
33038
33088
|
// src/commands/link/command.ts
|
33039
33089
|
var linkCommand;
|
33040
|
-
var
|
33090
|
+
var init_command17 = __esm({
|
33041
33091
|
"src/commands/link/command.ts"() {
|
33042
33092
|
"use strict";
|
33043
33093
|
init_pkg_name();
|
@@ -33093,7 +33143,7 @@ var init_command16 = __esm({
|
|
33093
33143
|
|
33094
33144
|
// src/commands/list/command.ts
|
33095
33145
|
var listCommand;
|
33096
|
-
var
|
33146
|
+
var init_command18 = __esm({
|
33097
33147
|
"src/commands/list/command.ts"() {
|
33098
33148
|
"use strict";
|
33099
33149
|
init_pkg_name();
|
@@ -33163,7 +33213,7 @@ var init_command17 = __esm({
|
|
33163
33213
|
|
33164
33214
|
// src/commands/login/command.ts
|
33165
33215
|
var loginCommand;
|
33166
|
-
var
|
33216
|
+
var init_command19 = __esm({
|
33167
33217
|
"src/commands/login/command.ts"() {
|
33168
33218
|
"use strict";
|
33169
33219
|
init_pkg_name();
|
@@ -33226,7 +33276,7 @@ var init_command18 = __esm({
|
|
33226
33276
|
|
33227
33277
|
// src/commands/logout/command.ts
|
33228
33278
|
var logoutCommand;
|
33229
|
-
var
|
33279
|
+
var init_command20 = __esm({
|
33230
33280
|
"src/commands/logout/command.ts"() {
|
33231
33281
|
"use strict";
|
33232
33282
|
init_pkg_name();
|
@@ -33256,7 +33306,7 @@ var init_command19 = __esm({
|
|
33256
33306
|
|
33257
33307
|
// src/commands/logs/command.ts
|
33258
33308
|
var CommandTimeout, logsCommand;
|
33259
|
-
var
|
33309
|
+
var init_command21 = __esm({
|
33260
33310
|
"src/commands/logs/command.ts"() {
|
33261
33311
|
"use strict";
|
33262
33312
|
init_pkg_name();
|
@@ -33330,7 +33380,7 @@ var init_command20 = __esm({
|
|
33330
33380
|
|
33331
33381
|
// src/commands/microfrontends/command.ts
|
33332
33382
|
var pullSubcommand2, microfrontendsCommand;
|
33333
|
-
var
|
33383
|
+
var init_command22 = __esm({
|
33334
33384
|
"src/commands/microfrontends/command.ts"() {
|
33335
33385
|
"use strict";
|
33336
33386
|
init_pkg_name();
|
@@ -33373,7 +33423,7 @@ var init_command21 = __esm({
|
|
33373
33423
|
|
33374
33424
|
// src/commands/project/command.ts
|
33375
33425
|
var addSubcommand6, inspectSubcommand2, listSubcommand7, removeSubcommand8, projectCommand;
|
33376
|
-
var
|
33426
|
+
var init_command23 = __esm({
|
33377
33427
|
"src/commands/project/command.ts"() {
|
33378
33428
|
"use strict";
|
33379
33429
|
init_pkg_name();
|
@@ -33473,7 +33523,7 @@ var init_command22 = __esm({
|
|
33473
33523
|
|
33474
33524
|
// src/commands/promote/command.ts
|
33475
33525
|
var statusSubcommand, promoteCommand;
|
33476
|
-
var
|
33526
|
+
var init_command24 = __esm({
|
33477
33527
|
"src/commands/promote/command.ts"() {
|
33478
33528
|
"use strict";
|
33479
33529
|
init_pkg_name();
|
@@ -33542,7 +33592,7 @@ var init_command23 = __esm({
|
|
33542
33592
|
|
33543
33593
|
// src/commands/pull/command.ts
|
33544
33594
|
var pullCommand;
|
33545
|
-
var
|
33595
|
+
var init_command25 = __esm({
|
33546
33596
|
"src/commands/pull/command.ts"() {
|
33547
33597
|
"use strict";
|
33548
33598
|
init_pkg_name();
|
@@ -33614,7 +33664,7 @@ var init_command24 = __esm({
|
|
33614
33664
|
|
33615
33665
|
// src/commands/redeploy/command.ts
|
33616
33666
|
var redeployCommand;
|
33617
|
-
var
|
33667
|
+
var init_command26 = __esm({
|
33618
33668
|
"src/commands/redeploy/command.ts"() {
|
33619
33669
|
"use strict";
|
33620
33670
|
init_pkg_name();
|
@@ -33665,7 +33715,7 @@ var init_command25 = __esm({
|
|
33665
33715
|
|
33666
33716
|
// src/commands/remove/command.ts
|
33667
33717
|
var removeCommand;
|
33668
|
-
var
|
33718
|
+
var init_command27 = __esm({
|
33669
33719
|
"src/commands/remove/command.ts"() {
|
33670
33720
|
"use strict";
|
33671
33721
|
init_pkg_name();
|
@@ -33715,7 +33765,7 @@ var init_command26 = __esm({
|
|
33715
33765
|
|
33716
33766
|
// src/commands/rollback/command.ts
|
33717
33767
|
var statusSubcommand2, rollbackCommand;
|
33718
|
-
var
|
33768
|
+
var init_command28 = __esm({
|
33719
33769
|
"src/commands/rollback/command.ts"() {
|
33720
33770
|
"use strict";
|
33721
33771
|
init_pkg_name();
|
@@ -33776,7 +33826,7 @@ var init_command27 = __esm({
|
|
33776
33826
|
|
33777
33827
|
// src/commands/rolling-release/command.ts
|
33778
33828
|
var configureSubcommand, startSubcommand, approveSubcommand, abortSubcommand, completeSubcommand, fetchSubcommand, rollingReleaseCommand;
|
33779
|
-
var
|
33829
|
+
var init_command29 = __esm({
|
33780
33830
|
"src/commands/rolling-release/command.ts"() {
|
33781
33831
|
"use strict";
|
33782
33832
|
init_arg_common();
|
@@ -33970,7 +34020,7 @@ var init_command28 = __esm({
|
|
33970
34020
|
|
33971
34021
|
// src/commands/target/command.ts
|
33972
34022
|
var listSubcommand8, targetCommand;
|
33973
|
-
var
|
34023
|
+
var init_command30 = __esm({
|
33974
34024
|
"src/commands/target/command.ts"() {
|
33975
34025
|
"use strict";
|
33976
34026
|
init_pkg_name();
|
@@ -34001,7 +34051,7 @@ var init_command29 = __esm({
|
|
34001
34051
|
|
34002
34052
|
// src/commands/teams/command.ts
|
34003
34053
|
var addSubcommand7, listSubcommand9, switchSubcommand, inviteSubcommand, teamsCommand;
|
34004
|
-
var
|
34054
|
+
var init_command31 = __esm({
|
34005
34055
|
"src/commands/teams/command.ts"() {
|
34006
34056
|
"use strict";
|
34007
34057
|
init_pkg_name();
|
@@ -34092,7 +34142,7 @@ var init_command30 = __esm({
|
|
34092
34142
|
|
34093
34143
|
// src/commands/telemetry/command.ts
|
34094
34144
|
var statusSubcommand3, enableSubcommand, flushSubcommand, disableSubcommand, telemetryCommand;
|
34095
|
-
var
|
34145
|
+
var init_command32 = __esm({
|
34096
34146
|
"src/commands/telemetry/command.ts"() {
|
34097
34147
|
"use strict";
|
34098
34148
|
statusSubcommand3 = {
|
@@ -34147,7 +34197,7 @@ var init_command31 = __esm({
|
|
34147
34197
|
|
34148
34198
|
// src/commands/whoami/command.ts
|
34149
34199
|
var whoamiCommand;
|
34150
|
-
var
|
34200
|
+
var init_command33 = __esm({
|
34151
34201
|
"src/commands/whoami/command.ts"() {
|
34152
34202
|
"use strict";
|
34153
34203
|
init_pkg_name();
|
@@ -34169,7 +34219,7 @@ var init_command32 = __esm({
|
|
34169
34219
|
|
34170
34220
|
// src/commands/blob/command.ts
|
34171
34221
|
var listSubcommand10, putSubcommand, delSubcommand, copySubcommand, addStoreSubcommand, removeStoreSubcommand, getStoreSubcommand, storeSubcommand, blobCommand;
|
34172
|
-
var
|
34222
|
+
var init_command34 = __esm({
|
34173
34223
|
"src/commands/blob/command.ts"() {
|
34174
34224
|
"use strict";
|
34175
34225
|
listSubcommand10 = {
|
@@ -34447,12 +34497,14 @@ var init_commands = __esm({
|
|
34447
34497
|
init_command31();
|
34448
34498
|
init_command32();
|
34449
34499
|
init_command33();
|
34500
|
+
init_command34();
|
34450
34501
|
init_output_manager();
|
34451
34502
|
commandsStructs = [
|
34452
34503
|
aliasCommand,
|
34453
34504
|
blobCommand,
|
34454
34505
|
bisectCommand,
|
34455
34506
|
buildCommand,
|
34507
|
+
cacheCommand,
|
34456
34508
|
certsCommand,
|
34457
34509
|
deployCommand,
|
34458
34510
|
devCommand,
|
@@ -37499,7 +37551,7 @@ var require_figures = __commonJS2({
|
|
37499
37551
|
"use strict";
|
37500
37552
|
var escapeStringRegexp = require_escape_string_regexp();
|
37501
37553
|
var { platform } = process;
|
37502
|
-
var
|
37554
|
+
var main17 = {
|
37503
37555
|
tick: "\u2714",
|
37504
37556
|
cross: "\u2716",
|
37505
37557
|
star: "\u2605",
|
@@ -37585,12 +37637,12 @@ var require_figures = __commonJS2({
|
|
37585
37637
|
hamburger: "\u2261",
|
37586
37638
|
smiley: "\u263A",
|
37587
37639
|
mustache: "\u250C\u2500\u2510",
|
37588
|
-
heart:
|
37640
|
+
heart: main17.heart,
|
37589
37641
|
nodejs: "\u2666",
|
37590
|
-
arrowUp:
|
37591
|
-
arrowDown:
|
37592
|
-
arrowLeft:
|
37593
|
-
arrowRight:
|
37642
|
+
arrowUp: main17.arrowUp,
|
37643
|
+
arrowDown: main17.arrowDown,
|
37644
|
+
arrowLeft: main17.arrowLeft,
|
37645
|
+
arrowRight: main17.arrowRight,
|
37594
37646
|
radioOn: "(*)",
|
37595
37647
|
radioOff: "( )",
|
37596
37648
|
checkboxOn: "[\xD7]",
|
@@ -37618,14 +37670,14 @@ var require_figures = __commonJS2({
|
|
37618
37670
|
sevenEighths: "7/8"
|
37619
37671
|
};
|
37620
37672
|
if (platform === "linux") {
|
37621
|
-
|
37673
|
+
main17.questionMarkPrefix = "?";
|
37622
37674
|
}
|
37623
|
-
var figures4 = platform === "win32" ? windows :
|
37675
|
+
var figures4 = platform === "win32" ? windows : main17;
|
37624
37676
|
var fn2 = (string) => {
|
37625
|
-
if (figures4 ===
|
37677
|
+
if (figures4 === main17) {
|
37626
37678
|
return string;
|
37627
37679
|
}
|
37628
|
-
for (const [key, value] of Object.entries(
|
37680
|
+
for (const [key, value] of Object.entries(main17)) {
|
37629
37681
|
if (value === figures4[key]) {
|
37630
37682
|
continue;
|
37631
37683
|
}
|
@@ -37634,7 +37686,7 @@ var require_figures = __commonJS2({
|
|
37634
37686
|
return string;
|
37635
37687
|
};
|
37636
37688
|
module2.exports = Object.assign(fn2, figures4);
|
37637
|
-
module2.exports.main =
|
37689
|
+
module2.exports.main = main17;
|
37638
37690
|
module2.exports.windows = windows;
|
37639
37691
|
}
|
37640
37692
|
});
|
@@ -43914,7 +43966,7 @@ var require_write_json_file = __commonJS2({
|
|
43914
43966
|
};
|
43915
43967
|
var readFile6 = (fp) => pify(fs15.readFile)(fp, "utf8").catch(() => {
|
43916
43968
|
});
|
43917
|
-
var
|
43969
|
+
var main17 = (fp, data, opts) => {
|
43918
43970
|
return (opts.detectIndent ? readFile6(fp) : Promise.resolve()).then((str) => {
|
43919
43971
|
const indent = str ? detectIndent(str).indent : opts.indent;
|
43920
43972
|
const json = JSON.stringify(data, opts.replacer, indent);
|
@@ -43939,7 +43991,7 @@ var require_write_json_file = __commonJS2({
|
|
43939
43991
|
`, { mode: opts.mode });
|
43940
43992
|
};
|
43941
43993
|
module2.exports = (fp, data, opts) => {
|
43942
|
-
return makeDir(path11.dirname(fp), { fs: fs15 }).then(() => init3(
|
43994
|
+
return makeDir(path11.dirname(fp), { fs: fs15 }).then(() => init3(main17, fp, data, opts));
|
43943
43995
|
};
|
43944
43996
|
module2.exports.sync = (fp, data, opts) => {
|
43945
43997
|
makeDir.sync(path11.dirname(fp), { fs: fs15 });
|
@@ -100618,7 +100670,7 @@ var init_list4 = __esm({
|
|
100618
100670
|
init_get_command_flags();
|
100619
100671
|
init_get_args();
|
100620
100672
|
init_get_flags_specification();
|
100621
|
-
|
100673
|
+
init_command34();
|
100622
100674
|
init_pkg_name();
|
100623
100675
|
init_list3();
|
100624
100676
|
init_error2();
|
@@ -100828,7 +100880,7 @@ var init_put2 = __esm({
|
|
100828
100880
|
blob2 = __toESM3(require("@vercel/blob"));
|
100829
100881
|
init_get_args();
|
100830
100882
|
init_get_flags_specification();
|
100831
|
-
|
100883
|
+
init_command34();
|
100832
100884
|
import_node_fs = require("fs");
|
100833
100885
|
import_error_utils12 = __toESM3(require_dist2());
|
100834
100886
|
import_node_path = require("path");
|
@@ -100901,7 +100953,7 @@ var init_del2 = __esm({
|
|
100901
100953
|
blob3 = __toESM3(require("@vercel/blob"));
|
100902
100954
|
init_get_args();
|
100903
100955
|
init_get_flags_specification();
|
100904
|
-
|
100956
|
+
init_command34();
|
100905
100957
|
init_del();
|
100906
100958
|
init_error2();
|
100907
100959
|
init_pkg_name();
|
@@ -101020,7 +101072,7 @@ var init_copy2 = __esm({
|
|
101020
101072
|
blob4 = __toESM3(require("@vercel/blob"));
|
101021
101073
|
init_get_args();
|
101022
101074
|
init_get_flags_specification();
|
101023
|
-
|
101075
|
+
init_command34();
|
101024
101076
|
init_copy();
|
101025
101077
|
init_pkg_name();
|
101026
101078
|
}
|
@@ -118967,7 +119019,7 @@ var require_detect_file_system_api = __commonJS2({
|
|
118967
119019
|
});
|
118968
119020
|
module2.exports = __toCommonJS4(detect_file_system_api_exports);
|
118969
119021
|
var import_semver4 = __toESM4(require_semver2());
|
118970
|
-
var
|
119022
|
+
var import__96 = require_dist20();
|
118971
119023
|
async function detectFileSystemAPI2({
|
118972
119024
|
files,
|
118973
119025
|
projectSettings,
|
@@ -119033,7 +119085,7 @@ var require_detect_file_system_api = __commonJS2({
|
|
119033
119085
|
};
|
119034
119086
|
}
|
119035
119087
|
const invalidBuilder = builders.find(({ use }) => {
|
119036
|
-
const valid = (0,
|
119088
|
+
const valid = (0, import__96.isOfficialRuntime)("go", use) || (0, import__96.isOfficialRuntime)("python", use) || (0, import__96.isOfficialRuntime)("ruby", use) || (0, import__96.isOfficialRuntime)("node", use) || (0, import__96.isOfficialRuntime)("next", use) || (0, import__96.isOfficialRuntime)("static", use) || (0, import__96.isOfficialRuntime)("static-build", use);
|
119037
119089
|
return !valid;
|
119038
119090
|
});
|
119039
119091
|
if (invalidBuilder) {
|
@@ -119046,7 +119098,7 @@ var require_detect_file_system_api = __commonJS2({
|
|
119046
119098
|
for (const lang of ["go", "python", "ruby"]) {
|
119047
119099
|
for (const { use } of builders) {
|
119048
119100
|
const plugin = "vercel-plugin-" + lang;
|
119049
|
-
if ((0,
|
119101
|
+
if ((0, import__96.isOfficialRuntime)(lang, use) && !deps[plugin]) {
|
119050
119102
|
return {
|
119051
119103
|
metadata,
|
119052
119104
|
fsApiBuilder: null,
|
@@ -119103,7 +119155,7 @@ var require_detect_file_system_api = __commonJS2({
|
|
119103
119155
|
}
|
119104
119156
|
}
|
119105
119157
|
const frontendBuilder = builders.find(
|
119106
|
-
({ use }) => (0,
|
119158
|
+
({ use }) => (0, import__96.isOfficialRuntime)("next", use) || (0, import__96.isOfficialRuntime)("static", use) || (0, import__96.isOfficialRuntime)("static-build", use)
|
119107
119159
|
);
|
119108
119160
|
const config2 = frontendBuilder?.config || {};
|
119109
119161
|
const withTag = tag ? `@${tag}` : "";
|
@@ -126854,7 +126906,7 @@ var init_store_add2 = __esm({
|
|
126854
126906
|
init_pkg_name();
|
126855
126907
|
init_get_flags_specification();
|
126856
126908
|
init_get_args();
|
126857
|
-
|
126909
|
+
init_command34();
|
126858
126910
|
init_store_add();
|
126859
126911
|
init_error2();
|
126860
126912
|
}
|
@@ -126930,7 +126982,7 @@ var init_store_remove = __esm({
|
|
126930
126982
|
init_error2();
|
126931
126983
|
init_output_manager();
|
126932
126984
|
init_get_flags_specification();
|
126933
|
-
|
126985
|
+
init_command34();
|
126934
126986
|
init_get_args();
|
126935
126987
|
init_link2();
|
126936
126988
|
}
|
@@ -129351,7 +129403,7 @@ var init_store_get2 = __esm({
|
|
129351
129403
|
init_get_args();
|
129352
129404
|
init_get_flags_specification();
|
129353
129405
|
init_link2();
|
129354
|
-
|
129406
|
+
init_command34();
|
129355
129407
|
import_date_fns = __toESM3(require_date_fns());
|
129356
129408
|
import_chalk40 = __toESM3(require_source());
|
129357
129409
|
init_store_get();
|
@@ -129430,7 +129482,7 @@ var init_store2 = __esm({
|
|
129430
129482
|
init_get_invalid_subcommand();
|
129431
129483
|
init_get_subcommand();
|
129432
129484
|
init_help();
|
129433
|
-
|
129485
|
+
init_command34();
|
129434
129486
|
init_get_flags_specification();
|
129435
129487
|
init_output_manager();
|
129436
129488
|
init_commands();
|
@@ -129588,7 +129640,7 @@ var init_token = __esm({
|
|
129588
129640
|
import_node_path2 = require("path");
|
129589
129641
|
init_diff_env_files();
|
129590
129642
|
init_get_flags_specification();
|
129591
|
-
|
129643
|
+
init_command34();
|
129592
129644
|
init_get_args();
|
129593
129645
|
init_pkg_name();
|
129594
129646
|
init_cmd();
|
@@ -129706,7 +129758,7 @@ var init_blob2 = __esm({
|
|
129706
129758
|
init_get_subcommand();
|
129707
129759
|
init_help();
|
129708
129760
|
init_list4();
|
129709
|
-
|
129761
|
+
init_command34();
|
129710
129762
|
init_get_flags_specification();
|
129711
129763
|
init_output_manager();
|
129712
129764
|
init_commands();
|
@@ -144551,7 +144603,7 @@ var init_pull2 = __esm({
|
|
144551
144603
|
init_format_project();
|
144552
144604
|
init_output_manager();
|
144553
144605
|
init_pull();
|
144554
|
-
|
144606
|
+
init_command10();
|
144555
144607
|
init_get_args();
|
144556
144608
|
init_get_flags_specification();
|
144557
144609
|
init_error2();
|
@@ -145282,7 +145334,7 @@ var init_pull4 = __esm({
|
|
145282
145334
|
init_ensure_link();
|
145283
145335
|
init_humanize_path();
|
145284
145336
|
init_help();
|
145285
|
-
|
145337
|
+
init_command25();
|
145286
145338
|
init_parse_target();
|
145287
145339
|
init_get_flags_specification();
|
145288
145340
|
init_error2();
|
@@ -146017,6 +146069,223 @@ var init_build2 = __esm({
|
|
146017
146069
|
}
|
146018
146070
|
});
|
146019
146071
|
|
146072
|
+
// src/util/telemetry/commands/cache/purge.ts
|
146073
|
+
var CachePurgeTelemetryClient;
|
146074
|
+
var init_purge = __esm({
|
146075
|
+
"src/util/telemetry/commands/cache/purge.ts"() {
|
146076
|
+
"use strict";
|
146077
|
+
init_telemetry();
|
146078
|
+
CachePurgeTelemetryClient = class extends TelemetryClient {
|
146079
|
+
trackCliFlagYes(yes) {
|
146080
|
+
if (yes) {
|
146081
|
+
this.trackCliFlag("yes");
|
146082
|
+
}
|
146083
|
+
}
|
146084
|
+
trackCliOptionType(type) {
|
146085
|
+
if (type) {
|
146086
|
+
this.trackCliOption({
|
146087
|
+
option: "type",
|
146088
|
+
value: type
|
146089
|
+
});
|
146090
|
+
}
|
146091
|
+
}
|
146092
|
+
};
|
146093
|
+
}
|
146094
|
+
});
|
146095
|
+
|
146096
|
+
// src/commands/cache/purge.ts
|
146097
|
+
async function purge(client2, argv) {
|
146098
|
+
const telemetry2 = new CachePurgeTelemetryClient({
|
146099
|
+
opts: {
|
146100
|
+
store: client2.telemetryEventStore
|
146101
|
+
}
|
146102
|
+
});
|
146103
|
+
let parsedArgs;
|
146104
|
+
const flagsSpecification = getFlagsSpecification(purgeSubcommand.options);
|
146105
|
+
try {
|
146106
|
+
parsedArgs = parseArguments(argv, flagsSpecification);
|
146107
|
+
} catch (err) {
|
146108
|
+
printError(err);
|
146109
|
+
return 1;
|
146110
|
+
}
|
146111
|
+
const link4 = await getLinkedProject(client2);
|
146112
|
+
if (link4.status === "not_linked") {
|
146113
|
+
output_manager_default.error(
|
146114
|
+
"No project linked. Run `vercel link` to link a project to this directory."
|
146115
|
+
);
|
146116
|
+
return 1;
|
146117
|
+
}
|
146118
|
+
if (link4.status === "error") {
|
146119
|
+
return link4.exitCode;
|
146120
|
+
}
|
146121
|
+
const { project, org } = link4;
|
146122
|
+
client2.config.currentTeam = org.type === "team" ? org.id : void 0;
|
146123
|
+
const yes = Boolean(parsedArgs.flags["--yes"]);
|
146124
|
+
telemetry2.trackCliFlagYes(yes);
|
146125
|
+
const type = parsedArgs.flags["--type"] || "all";
|
146126
|
+
telemetry2.trackCliOptionType(parsedArgs.flags["--type"]);
|
146127
|
+
const cacheTypeMap = {
|
146128
|
+
cdn: "the CDN cache",
|
146129
|
+
data: "the Data cache",
|
146130
|
+
all: "the CDN cache and Data cache"
|
146131
|
+
};
|
146132
|
+
const validTypes = Object.keys(cacheTypeMap);
|
146133
|
+
if (!validTypes.includes(type)) {
|
146134
|
+
output_manager_default.error(
|
146135
|
+
`Invalid cache type "${type}". Valid types are: ${validTypes.join(", ")}`
|
146136
|
+
);
|
146137
|
+
return 1;
|
146138
|
+
}
|
146139
|
+
const typeDesciption = cacheTypeMap[type];
|
146140
|
+
const msg = `You are about to purge ${typeDesciption} for project ${project.name}`;
|
146141
|
+
const query = new URLSearchParams({ projectIdOrName: project.id }).toString();
|
146142
|
+
if (!yes) {
|
146143
|
+
if (!process.stdin.isTTY) {
|
146144
|
+
output_manager_default.print(
|
146145
|
+
`${msg}. To continue, run ${getCommandName("cache purge --yes")}.`
|
146146
|
+
);
|
146147
|
+
return 1;
|
146148
|
+
}
|
146149
|
+
const confirmed = await client2.input.confirm(`${msg}. Continue?`, true);
|
146150
|
+
if (!confirmed) {
|
146151
|
+
output_manager_default.print(`Canceled.
|
146152
|
+
`);
|
146153
|
+
return 0;
|
146154
|
+
}
|
146155
|
+
}
|
146156
|
+
const requests = [];
|
146157
|
+
if (type === "cdn" || type === "all") {
|
146158
|
+
requests.push(
|
146159
|
+
client2.fetch(`/v1/edge-cache/purge-all?${query}`, {
|
146160
|
+
method: "POST",
|
146161
|
+
headers: {
|
146162
|
+
"Content-Type": "application/json"
|
146163
|
+
}
|
146164
|
+
})
|
146165
|
+
);
|
146166
|
+
}
|
146167
|
+
if (type === "data" || type === "all") {
|
146168
|
+
requests.push(
|
146169
|
+
client2.fetch(`/v1/data-cache/purge-all?${query}`, {
|
146170
|
+
method: "DELETE",
|
146171
|
+
headers: {
|
146172
|
+
"Content-Type": "application/json"
|
146173
|
+
}
|
146174
|
+
})
|
146175
|
+
);
|
146176
|
+
}
|
146177
|
+
await Promise.all(requests);
|
146178
|
+
output_manager_default.print(
|
146179
|
+
prependEmoji(`Successfully purged ${typeDesciption}`, emoji("success")) + `
|
146180
|
+
`
|
146181
|
+
);
|
146182
|
+
return 0;
|
146183
|
+
}
|
146184
|
+
var init_purge2 = __esm({
|
146185
|
+
"src/commands/cache/purge.ts"() {
|
146186
|
+
"use strict";
|
146187
|
+
init_get_args();
|
146188
|
+
init_error2();
|
146189
|
+
init_command4();
|
146190
|
+
init_get_flags_specification();
|
146191
|
+
init_output_manager();
|
146192
|
+
init_pkg_name();
|
146193
|
+
init_link2();
|
146194
|
+
init_emoji();
|
146195
|
+
init_purge();
|
146196
|
+
}
|
146197
|
+
});
|
146198
|
+
|
146199
|
+
// src/util/telemetry/commands/cache/index.ts
|
146200
|
+
var CacheTelemetryClient;
|
146201
|
+
var init_cache = __esm({
|
146202
|
+
"src/util/telemetry/commands/cache/index.ts"() {
|
146203
|
+
"use strict";
|
146204
|
+
init_telemetry();
|
146205
|
+
CacheTelemetryClient = class extends TelemetryClient {
|
146206
|
+
trackCliSubcommandPurge(actual) {
|
146207
|
+
this.trackCliSubcommand({
|
146208
|
+
subcommand: "purge",
|
146209
|
+
value: actual
|
146210
|
+
});
|
146211
|
+
}
|
146212
|
+
};
|
146213
|
+
}
|
146214
|
+
});
|
146215
|
+
|
146216
|
+
// src/commands/cache/index.ts
|
146217
|
+
var cache_exports = {};
|
146218
|
+
__export3(cache_exports, {
|
146219
|
+
default: () => main4
|
146220
|
+
});
|
146221
|
+
async function main4(client2) {
|
146222
|
+
const telemetry2 = new CacheTelemetryClient({
|
146223
|
+
opts: {
|
146224
|
+
store: client2.telemetryEventStore
|
146225
|
+
}
|
146226
|
+
});
|
146227
|
+
let parsedArgs;
|
146228
|
+
const flagsSpecification = getFlagsSpecification(cacheCommand.options);
|
146229
|
+
try {
|
146230
|
+
parsedArgs = parseArguments(client2.argv.slice(2), flagsSpecification, {
|
146231
|
+
permissive: true
|
146232
|
+
});
|
146233
|
+
} catch (err) {
|
146234
|
+
printError(err);
|
146235
|
+
return 1;
|
146236
|
+
}
|
146237
|
+
const subArgs = parsedArgs.args.slice(1);
|
146238
|
+
const { subcommand, args: args2, subcommandOriginal } = getSubcommand(
|
146239
|
+
subArgs,
|
146240
|
+
COMMAND_CONFIG4
|
146241
|
+
);
|
146242
|
+
const needHelp = parsedArgs.flags["--help"];
|
146243
|
+
if (!subcommand && needHelp) {
|
146244
|
+
telemetry2.trackCliFlagHelp(cacheCommand.name);
|
146245
|
+
output_manager_default.print(help2(cacheCommand, { columns: client2.stderr.columns }));
|
146246
|
+
return 2;
|
146247
|
+
}
|
146248
|
+
function printHelp(command) {
|
146249
|
+
telemetry2.trackCliFlagHelp(command.name, subcommandOriginal);
|
146250
|
+
output_manager_default.print(
|
146251
|
+
help2(command, { parent: cacheCommand, columns: client2.stderr.columns })
|
146252
|
+
);
|
146253
|
+
}
|
146254
|
+
switch (subcommand) {
|
146255
|
+
case "purge":
|
146256
|
+
if (needHelp) {
|
146257
|
+
printHelp(purgeSubcommand);
|
146258
|
+
return 2;
|
146259
|
+
}
|
146260
|
+
telemetry2.trackCliSubcommandPurge(subcommandOriginal);
|
146261
|
+
return purge(client2, args2);
|
146262
|
+
default:
|
146263
|
+
output_manager_default.error(getInvalidSubcommand(COMMAND_CONFIG4));
|
146264
|
+
output_manager_default.print(help2(cacheCommand, { columns: client2.stderr.columns }));
|
146265
|
+
return 2;
|
146266
|
+
}
|
146267
|
+
}
|
146268
|
+
var COMMAND_CONFIG4;
|
146269
|
+
var init_cache2 = __esm({
|
146270
|
+
"src/commands/cache/index.ts"() {
|
146271
|
+
"use strict";
|
146272
|
+
init_get_args();
|
146273
|
+
init_get_invalid_subcommand();
|
146274
|
+
init_get_subcommand();
|
146275
|
+
init_error2();
|
146276
|
+
init_help();
|
146277
|
+
init_purge2();
|
146278
|
+
init_command4();
|
146279
|
+
init_get_flags_specification();
|
146280
|
+
init_output_manager();
|
146281
|
+
init_commands();
|
146282
|
+
init_cache();
|
146283
|
+
COMMAND_CONFIG4 = {
|
146284
|
+
purge: getCommandAliases(purgeSubcommand)
|
146285
|
+
};
|
146286
|
+
}
|
146287
|
+
});
|
146288
|
+
|
146020
146289
|
// src/util/certs/create-cert-from-file.ts
|
146021
146290
|
async function createCertFromFile(client2, keyPath, certPath, caPath) {
|
146022
146291
|
output_manager_default.spinner("Adding your custom certificate");
|
@@ -146197,7 +146466,7 @@ var init_add2 = __esm({
|
|
146197
146466
|
init_create_cert_for_cns();
|
146198
146467
|
init_pkg_name();
|
146199
146468
|
init_add();
|
146200
|
-
|
146469
|
+
init_command5();
|
146201
146470
|
init_get_flags_specification();
|
146202
146471
|
init_get_args();
|
146203
146472
|
init_error2();
|
@@ -146495,7 +146764,7 @@ var init_issue2 = __esm({
|
|
146495
146764
|
init_pkg_name();
|
146496
146765
|
init_output_manager();
|
146497
146766
|
init_issue();
|
146498
|
-
|
146767
|
+
init_command5();
|
146499
146768
|
init_get_flags_specification();
|
146500
146769
|
init_get_args();
|
146501
146770
|
init_error2();
|
@@ -146658,7 +146927,7 @@ var init_ls3 = __esm({
|
|
146658
146927
|
init_pkg_name();
|
146659
146928
|
init_output_manager();
|
146660
146929
|
init_ls2();
|
146661
|
-
|
146930
|
+
init_command5();
|
146662
146931
|
init_get_flags_specification();
|
146663
146932
|
init_get_args();
|
146664
146933
|
init_error2();
|
@@ -146859,7 +147128,7 @@ var init_rm2 = __esm({
|
|
146859
147128
|
init_pkg_name();
|
146860
147129
|
init_output_manager();
|
146861
147130
|
init_remove2();
|
146862
|
-
|
147131
|
+
init_command5();
|
146863
147132
|
init_get_flags_specification();
|
146864
147133
|
init_get_args();
|
146865
147134
|
init_error2();
|
@@ -146905,9 +147174,9 @@ var init_certs = __esm({
|
|
146905
147174
|
// src/commands/certs/index.ts
|
146906
147175
|
var certs_exports = {};
|
146907
147176
|
__export3(certs_exports, {
|
146908
|
-
default: () =>
|
147177
|
+
default: () => main5
|
146909
147178
|
});
|
146910
|
-
async function
|
147179
|
+
async function main5(client2) {
|
146911
147180
|
const { telemetryEventStore } = client2;
|
146912
147181
|
const telemetry2 = new CertsTelemetryClient({
|
146913
147182
|
opts: {
|
@@ -146926,7 +147195,7 @@ async function main4(client2) {
|
|
146926
147195
|
}
|
146927
147196
|
const { subcommand, subcommandOriginal, args: args2 } = getSubcommand(
|
146928
147197
|
parsedArgs.args.slice(1),
|
146929
|
-
|
147198
|
+
COMMAND_CONFIG5
|
146930
147199
|
);
|
146931
147200
|
const needHelp = parsedArgs.flags["--help"];
|
146932
147201
|
if (!subcommand && needHelp) {
|
@@ -146978,7 +147247,7 @@ async function main4(client2) {
|
|
146978
147247
|
return 2;
|
146979
147248
|
}
|
146980
147249
|
}
|
146981
|
-
var
|
147250
|
+
var COMMAND_CONFIG5;
|
146982
147251
|
var init_certs2 = __esm({
|
146983
147252
|
"src/commands/certs/index.ts"() {
|
146984
147253
|
"use strict";
|
@@ -146989,13 +147258,13 @@ var init_certs2 = __esm({
|
|
146989
147258
|
init_issue2();
|
146990
147259
|
init_ls3();
|
146991
147260
|
init_rm2();
|
146992
|
-
|
147261
|
+
init_command5();
|
146993
147262
|
init_help();
|
146994
147263
|
init_get_flags_specification();
|
146995
147264
|
init_output_manager();
|
146996
147265
|
init_certs();
|
146997
147266
|
init_commands();
|
146998
|
-
|
147267
|
+
COMMAND_CONFIG5 = {
|
146999
147268
|
add: getCommandAliases(addSubcommand),
|
147000
147269
|
issue: getCommandAliases(issueSubcommand),
|
147001
147270
|
ls: getCommandAliases(listSubcommand2),
|
@@ -147547,7 +147816,7 @@ var init_logs = __esm({
|
|
147547
147816
|
import_split2 = __toESM3(require_split2());
|
147548
147817
|
import_url14 = require("url");
|
147549
147818
|
init_events();
|
147550
|
-
|
147819
|
+
init_command21();
|
147551
147820
|
init_output_manager();
|
147552
147821
|
runtimeLogSpinnerMessage = `waiting for new logs...`;
|
147553
147822
|
dateTimeFormat = "HH:mm:ss.SS";
|
@@ -148389,7 +148658,7 @@ var init_deploy = __esm({
|
|
148389
148658
|
"src/util/telemetry/commands/deploy/index.ts"() {
|
148390
148659
|
"use strict";
|
148391
148660
|
init_telemetry();
|
148392
|
-
|
148661
|
+
init_command6();
|
148393
148662
|
import_client10 = __toESM3(require_dist7());
|
148394
148663
|
DeployTelemetryClient = class extends TelemetryClient {
|
148395
148664
|
trackCliArgumentProjectPath(projectPaths) {
|
@@ -148629,7 +148898,7 @@ var init_deploy2 = __esm({
|
|
148629
148898
|
init_project_settings();
|
148630
148899
|
init_validate_paths();
|
148631
148900
|
init_help();
|
148632
|
-
|
148901
|
+
init_command6();
|
148633
148902
|
init_parse_target();
|
148634
148903
|
init_deploy();
|
148635
148904
|
init_output_manager();
|
@@ -168852,9 +169121,9 @@ var init_dev2 = __esm({
|
|
168852
169121
|
// src/commands/dev/index.ts
|
168853
169122
|
var dev_exports = {};
|
168854
169123
|
__export3(dev_exports, {
|
168855
|
-
default: () =>
|
169124
|
+
default: () => main6
|
168856
169125
|
});
|
168857
|
-
async function
|
169126
|
+
async function main6(client2) {
|
168858
169127
|
if (process.env.__VERCEL_DEV_RUNNING) {
|
168859
169128
|
output_manager_default.error(
|
168860
169129
|
`${cmd(
|
@@ -168893,7 +169162,7 @@ async function main5(client2) {
|
|
168893
169162
|
output_manager_default.print(help2(devCommand, { columns: client2.stderr.columns }));
|
168894
169163
|
return 2;
|
168895
169164
|
}
|
168896
|
-
const args2 = getSubcommand(parsedArgs.args.slice(1),
|
169165
|
+
const args2 = getSubcommand(parsedArgs.args.slice(1), COMMAND_CONFIG6).args;
|
168897
169166
|
if ("--confirm" in parsedArgs.flags) {
|
168898
169167
|
output_manager_default.warn("`--confirm` is deprecated, please use `--yes` instead");
|
168899
169168
|
parsedArgs.flags["--yes"] = parsedArgs.flags["--confirm"];
|
@@ -168962,7 +169231,7 @@ ${errMeta}`;
|
|
168962
169231
|
}
|
168963
169232
|
return err.stack;
|
168964
169233
|
}
|
168965
|
-
var import_path37, import_chalk65, import_error_utils23,
|
169234
|
+
var import_path37, import_chalk65, import_error_utils23, COMMAND_CONFIG6;
|
168966
169235
|
var init_dev3 = __esm({
|
168967
169236
|
"src/commands/dev/index.ts"() {
|
168968
169237
|
"use strict";
|
@@ -168981,11 +169250,11 @@ var init_dev3 = __esm({
|
|
168981
169250
|
init_errors_ts();
|
168982
169251
|
import_error_utils23 = __toESM3(require_dist2());
|
168983
169252
|
init_help();
|
168984
|
-
|
169253
|
+
init_command7();
|
168985
169254
|
init_get_flags_specification();
|
168986
169255
|
init_output_manager();
|
168987
169256
|
init_dev2();
|
168988
|
-
|
169257
|
+
COMMAND_CONFIG6 = {
|
168989
169258
|
dev: ["dev"]
|
168990
169259
|
};
|
168991
169260
|
}
|
@@ -169335,7 +169604,7 @@ var init_add4 = __esm({
|
|
169335
169604
|
init_pkg_name();
|
169336
169605
|
init_output_manager();
|
169337
169606
|
init_add3();
|
169338
|
-
|
169607
|
+
init_command8();
|
169339
169608
|
init_get_args();
|
169340
169609
|
init_get_flags_specification();
|
169341
169610
|
init_error2();
|
@@ -169482,7 +169751,7 @@ var init_import2 = __esm({
|
|
169482
169751
|
init_pkg_name();
|
169483
169752
|
init_output_manager();
|
169484
169753
|
init_import();
|
169485
|
-
|
169754
|
+
init_command8();
|
169486
169755
|
init_get_args();
|
169487
169756
|
init_get_flags_specification();
|
169488
169757
|
init_error2();
|
@@ -169808,7 +170077,7 @@ var init_ls5 = __esm({
|
|
169808
170077
|
init_pkg_name();
|
169809
170078
|
init_output_manager();
|
169810
170079
|
init_ls4();
|
169811
|
-
|
170080
|
+
init_command8();
|
169812
170081
|
init_get_args();
|
169813
170082
|
init_get_flags_specification();
|
169814
170083
|
init_error2();
|
@@ -169955,7 +170224,7 @@ var init_rm4 = __esm({
|
|
169955
170224
|
init_pkg_name();
|
169956
170225
|
init_output_manager();
|
169957
170226
|
init_rm3();
|
169958
|
-
|
170227
|
+
init_command8();
|
169959
170228
|
init_get_args();
|
169960
170229
|
init_get_flags_specification();
|
169961
170230
|
init_error2();
|
@@ -170021,7 +170290,7 @@ async function dns(client2) {
|
|
170021
170290
|
});
|
170022
170291
|
const { subcommand, subcommandOriginal, args: args2 } = getSubcommand(
|
170023
170292
|
parsedArgs.args.slice(1),
|
170024
|
-
|
170293
|
+
COMMAND_CONFIG7
|
170025
170294
|
);
|
170026
170295
|
const needHelp = parsedArgs.flags["--help"];
|
170027
170296
|
if (!subcommand && needHelp) {
|
@@ -170069,7 +170338,7 @@ async function dns(client2) {
|
|
170069
170338
|
return ls3(client2, args2);
|
170070
170339
|
}
|
170071
170340
|
}
|
170072
|
-
var
|
170341
|
+
var COMMAND_CONFIG7;
|
170073
170342
|
var init_dns2 = __esm({
|
170074
170343
|
"src/commands/dns/index.ts"() {
|
170075
170344
|
"use strict";
|
@@ -170080,13 +170349,13 @@ var init_dns2 = __esm({
|
|
170080
170349
|
init_import2();
|
170081
170350
|
init_ls5();
|
170082
170351
|
init_rm4();
|
170083
|
-
|
170352
|
+
init_command8();
|
170084
170353
|
init_help();
|
170085
170354
|
init_get_flags_specification();
|
170086
170355
|
init_output_manager();
|
170087
170356
|
init_dns();
|
170088
170357
|
init_commands();
|
170089
|
-
|
170358
|
+
COMMAND_CONFIG7 = {
|
170090
170359
|
add: getCommandAliases(addSubcommand2),
|
170091
170360
|
import: getCommandAliases(importSubcommand),
|
170092
170361
|
ls: getCommandAliases(listSubcommand3),
|
@@ -170443,7 +170712,7 @@ var init_add6 = __esm({
|
|
170443
170712
|
init_code();
|
170444
170713
|
init_output_manager();
|
170445
170714
|
init_add5();
|
170446
|
-
|
170715
|
+
init_command9();
|
170447
170716
|
init_get_args();
|
170448
170717
|
init_get_flags_specification();
|
170449
170718
|
init_error2();
|
@@ -170644,7 +170913,7 @@ var init_buy2 = __esm({
|
|
170644
170913
|
init_pkg_name();
|
170645
170914
|
init_output_manager();
|
170646
170915
|
init_buy();
|
170647
|
-
|
170916
|
+
init_command9();
|
170648
170917
|
init_get_args();
|
170649
170918
|
init_get_flags_specification();
|
170650
170919
|
init_error2();
|
@@ -170903,7 +171172,7 @@ var init_transfer_in2 = __esm({
|
|
170903
171172
|
init_pkg_name();
|
170904
171173
|
init_transfer_in();
|
170905
171174
|
init_output_manager();
|
170906
|
-
|
171175
|
+
init_command9();
|
170907
171176
|
init_get_args();
|
170908
171177
|
init_get_flags_specification();
|
170909
171178
|
init_error2();
|
@@ -171176,7 +171445,7 @@ var init_inspect2 = __esm({
|
|
171176
171445
|
init_get_domain_registrar();
|
171177
171446
|
init_inspect();
|
171178
171447
|
init_output_manager();
|
171179
|
-
|
171448
|
+
init_command9();
|
171180
171449
|
init_get_args();
|
171181
171450
|
init_get_flags_specification();
|
171182
171451
|
init_error2();
|
@@ -171310,7 +171579,7 @@ var init_ls7 = __esm({
|
|
171310
171579
|
init_get_domain_registrar();
|
171311
171580
|
init_output_manager();
|
171312
171581
|
init_ls6();
|
171313
|
-
|
171582
|
+
init_command9();
|
171314
171583
|
init_get_args();
|
171315
171584
|
init_get_flags_specification();
|
171316
171585
|
init_error2();
|
@@ -171629,7 +171898,7 @@ var init_rm6 = __esm({
|
|
171629
171898
|
init_pkg_name();
|
171630
171899
|
init_output_manager();
|
171631
171900
|
init_rm5();
|
171632
|
-
|
171901
|
+
init_command9();
|
171633
171902
|
init_get_args();
|
171634
171903
|
init_get_flags_specification();
|
171635
171904
|
init_error2();
|
@@ -171907,7 +172176,7 @@ var init_move2 = __esm({
|
|
171907
172176
|
init_pkg_name();
|
171908
172177
|
init_output_manager();
|
171909
172178
|
init_move();
|
171910
|
-
|
172179
|
+
init_command9();
|
171911
172180
|
init_get_args();
|
171912
172181
|
init_get_flags_specification();
|
171913
172182
|
init_error2();
|
@@ -171970,9 +172239,9 @@ var init_domains = __esm({
|
|
171970
172239
|
// src/commands/domains/index.ts
|
171971
172240
|
var domains_exports = {};
|
171972
172241
|
__export3(domains_exports, {
|
171973
|
-
default: () =>
|
172242
|
+
default: () => main7
|
171974
172243
|
});
|
171975
|
-
async function
|
172244
|
+
async function main7(client2) {
|
171976
172245
|
let parsedArgs;
|
171977
172246
|
const flagsSpecification = getFlagsSpecification(domainsCommand.options);
|
171978
172247
|
try {
|
@@ -171990,7 +172259,7 @@ async function main6(client2) {
|
|
171990
172259
|
});
|
171991
172260
|
const { subcommand, args: args2, subcommandOriginal } = getSubcommand(
|
171992
172261
|
parsedArgs.args.slice(1),
|
171993
|
-
|
172262
|
+
COMMAND_CONFIG8
|
171994
172263
|
);
|
171995
172264
|
const needHelp = parsedArgs.flags["--help"];
|
171996
172265
|
if (!subcommand && needHelp) {
|
@@ -172056,7 +172325,7 @@ async function main6(client2) {
|
|
172056
172325
|
return ls4(client2, args2);
|
172057
172326
|
}
|
172058
172327
|
}
|
172059
|
-
var
|
172328
|
+
var COMMAND_CONFIG8;
|
172060
172329
|
var init_domains2 = __esm({
|
172061
172330
|
"src/commands/domains/index.ts"() {
|
172062
172331
|
"use strict";
|
@@ -172070,12 +172339,12 @@ var init_domains2 = __esm({
|
|
172070
172339
|
init_ls7();
|
172071
172340
|
init_rm6();
|
172072
172341
|
init_move2();
|
172073
|
-
|
172342
|
+
init_command9();
|
172074
172343
|
init_help();
|
172075
172344
|
init_get_flags_specification();
|
172076
172345
|
init_domains();
|
172077
172346
|
init_output_manager();
|
172078
|
-
|
172347
|
+
COMMAND_CONFIG8 = {
|
172079
172348
|
add: ["add"],
|
172080
172349
|
buy: ["buy"],
|
172081
172350
|
inspect: ["inspect"],
|
@@ -172438,7 +172707,7 @@ var init_add8 = __esm({
|
|
172438
172707
|
init_get_args();
|
172439
172708
|
init_get_flags_specification();
|
172440
172709
|
init_error2();
|
172441
|
-
|
172710
|
+
init_command10();
|
172442
172711
|
init_link2();
|
172443
172712
|
}
|
172444
172713
|
});
|
@@ -172638,7 +172907,7 @@ var init_ls9 = __esm({
|
|
172638
172907
|
init_format_project();
|
172639
172908
|
init_output_manager();
|
172640
172909
|
init_ls8();
|
172641
|
-
|
172910
|
+
init_command10();
|
172642
172911
|
init_get_args();
|
172643
172912
|
init_get_flags_specification();
|
172644
172913
|
init_error2();
|
@@ -172829,7 +173098,7 @@ var init_rm8 = __esm({
|
|
172829
173098
|
init_get_custom_environments();
|
172830
173099
|
init_rm7();
|
172831
173100
|
init_output_manager();
|
172832
|
-
|
173101
|
+
init_command10();
|
172833
173102
|
init_get_args();
|
172834
173103
|
init_get_flags_specification();
|
172835
173104
|
init_error2();
|
@@ -172875,9 +173144,9 @@ var init_env = __esm({
|
|
172875
173144
|
// src/commands/env/index.ts
|
172876
173145
|
var env_exports = {};
|
172877
173146
|
__export3(env_exports, {
|
172878
|
-
default: () =>
|
173147
|
+
default: () => main8
|
172879
173148
|
});
|
172880
|
-
async function
|
173149
|
+
async function main8(client2) {
|
172881
173150
|
const telemetry2 = new EnvTelemetryClient({
|
172882
173151
|
opts: {
|
172883
173152
|
store: client2.telemetryEventStore
|
@@ -172896,7 +173165,7 @@ async function main7(client2) {
|
|
172896
173165
|
const subArgs = parsedArgs.args.slice(1);
|
172897
173166
|
const { subcommand, args: args2, subcommandOriginal } = getSubcommand(
|
172898
173167
|
subArgs,
|
172899
|
-
|
173168
|
+
COMMAND_CONFIG9
|
172900
173169
|
);
|
172901
173170
|
const needHelp = parsedArgs.flags["--help"];
|
172902
173171
|
if (!subcommand && needHelp) {
|
@@ -172943,12 +173212,12 @@ async function main7(client2) {
|
|
172943
173212
|
telemetry2.trackCliSubcommandPull(subcommandOriginal);
|
172944
173213
|
return pull(client2, args2);
|
172945
173214
|
default:
|
172946
|
-
output_manager_default.error(getInvalidSubcommand(
|
173215
|
+
output_manager_default.error(getInvalidSubcommand(COMMAND_CONFIG9));
|
172947
173216
|
output_manager_default.print(help2(envCommand, { columns: client2.stderr.columns }));
|
172948
173217
|
return 2;
|
172949
173218
|
}
|
172950
173219
|
}
|
172951
|
-
var
|
173220
|
+
var COMMAND_CONFIG9;
|
172952
173221
|
var init_env2 = __esm({
|
172953
173222
|
"src/commands/env/index.ts"() {
|
172954
173223
|
"use strict";
|
@@ -172961,12 +173230,12 @@ var init_env2 = __esm({
|
|
172961
173230
|
init_ls9();
|
172962
173231
|
init_pull2();
|
172963
173232
|
init_rm8();
|
172964
|
-
|
173233
|
+
init_command10();
|
172965
173234
|
init_get_flags_specification();
|
172966
173235
|
init_output_manager();
|
172967
173236
|
init_env();
|
172968
173237
|
init_commands();
|
172969
|
-
|
173238
|
+
COMMAND_CONFIG9 = {
|
172970
173239
|
ls: getCommandAliases(listSubcommand5),
|
172971
173240
|
add: getCommandAliases(addSubcommand4),
|
172972
173241
|
rm: getCommandAliases(removeSubcommand5),
|
@@ -173359,7 +173628,7 @@ var init_connect2 = __esm({
|
|
173359
173628
|
init_get_args();
|
173360
173629
|
init_get_flags_specification();
|
173361
173630
|
init_error2();
|
173362
|
-
|
173631
|
+
init_command11();
|
173363
173632
|
init_ensure_link();
|
173364
173633
|
}
|
173365
173634
|
});
|
@@ -173462,7 +173731,7 @@ var init_disconnect2 = __esm({
|
|
173462
173731
|
init_pkg_name();
|
173463
173732
|
init_connect_git_provider();
|
173464
173733
|
init_output_manager();
|
173465
|
-
|
173734
|
+
init_command11();
|
173466
173735
|
init_get_args();
|
173467
173736
|
init_get_flags_specification();
|
173468
173737
|
init_error2();
|
@@ -173497,9 +173766,9 @@ var init_git = __esm({
|
|
173497
173766
|
// src/commands/git/index.ts
|
173498
173767
|
var git_exports = {};
|
173499
173768
|
__export3(git_exports, {
|
173500
|
-
default: () =>
|
173769
|
+
default: () => main9
|
173501
173770
|
});
|
173502
|
-
async function
|
173771
|
+
async function main9(client2) {
|
173503
173772
|
let parsedArgs;
|
173504
173773
|
const flagsSpecification = getFlagsSpecification(gitCommand.options);
|
173505
173774
|
try {
|
@@ -173517,7 +173786,7 @@ async function main8(client2) {
|
|
173517
173786
|
});
|
173518
173787
|
const { subcommand, args: args2, subcommandOriginal } = getSubcommand(
|
173519
173788
|
parsedArgs.args.slice(1),
|
173520
|
-
|
173789
|
+
COMMAND_CONFIG10
|
173521
173790
|
);
|
173522
173791
|
if (parsedArgs.flags["--help"]) {
|
173523
173792
|
telemetry2.trackCliFlagHelp("git", subcommand);
|
@@ -173532,12 +173801,12 @@ async function main8(client2) {
|
|
173532
173801
|
telemetry2.trackCliSubcommandDisconnect(subcommandOriginal);
|
173533
173802
|
return disconnect(client2, args2);
|
173534
173803
|
default:
|
173535
|
-
output_manager_default.error(getInvalidSubcommand(
|
173804
|
+
output_manager_default.error(getInvalidSubcommand(COMMAND_CONFIG10));
|
173536
173805
|
output_manager_default.print(help2(gitCommand, { columns: client2.stderr.columns }));
|
173537
173806
|
return 2;
|
173538
173807
|
}
|
173539
173808
|
}
|
173540
|
-
var
|
173809
|
+
var COMMAND_CONFIG10;
|
173541
173810
|
var init_git2 = __esm({
|
173542
173811
|
"src/commands/git/index.ts"() {
|
173543
173812
|
"use strict";
|
@@ -173547,12 +173816,12 @@ var init_git2 = __esm({
|
|
173547
173816
|
init_connect2();
|
173548
173817
|
init_disconnect2();
|
173549
173818
|
init_help();
|
173550
|
-
|
173819
|
+
init_command11();
|
173551
173820
|
init_get_flags_specification();
|
173552
173821
|
init_output_manager();
|
173553
173822
|
init_git();
|
173554
173823
|
init_get_subcommand();
|
173555
|
-
|
173824
|
+
COMMAND_CONFIG10 = {
|
173556
173825
|
connect: ["connect"],
|
173557
173826
|
disconnect: ["disconnect"]
|
173558
173827
|
};
|
@@ -173863,9 +174132,9 @@ var init_init2 = __esm({
|
|
173863
174132
|
// src/commands/init/index.ts
|
173864
174133
|
var init_exports = {};
|
173865
174134
|
__export3(init_exports, {
|
173866
|
-
default: () =>
|
174135
|
+
default: () => main10
|
173867
174136
|
});
|
173868
|
-
async function
|
174137
|
+
async function main10(client2) {
|
173869
174138
|
let parsedArgs;
|
173870
174139
|
const flagsSpecification = getFlagsSpecification(initCommand.options);
|
173871
174140
|
try {
|
@@ -173884,7 +174153,7 @@ async function main9(client2) {
|
|
173884
174153
|
output_manager_default.print(help2(initCommand, { columns: client2.stderr.columns }));
|
173885
174154
|
return 2;
|
173886
174155
|
}
|
173887
|
-
const args2 = getSubcommand(parsedArgs.args.slice(1),
|
174156
|
+
const args2 = getSubcommand(parsedArgs.args.slice(1), COMMAND_CONFIG11).args;
|
173888
174157
|
if (parsedArgs.args.length > 3) {
|
173889
174158
|
output_manager_default.error("Too many arguments.");
|
173890
174159
|
return 1;
|
@@ -173901,7 +174170,7 @@ async function main9(client2) {
|
|
173901
174170
|
return 1;
|
173902
174171
|
}
|
173903
174172
|
}
|
173904
|
-
var import_error_utils27,
|
174173
|
+
var import_error_utils27, COMMAND_CONFIG11;
|
173905
174174
|
var init_init3 = __esm({
|
173906
174175
|
"src/commands/init/index.ts"() {
|
173907
174176
|
"use strict";
|
@@ -173911,11 +174180,11 @@ var init_init3 = __esm({
|
|
173911
174180
|
init_init();
|
173912
174181
|
import_error_utils27 = __toESM3(require_dist2());
|
173913
174182
|
init_help();
|
173914
|
-
|
174183
|
+
init_command12();
|
173915
174184
|
init_get_flags_specification();
|
173916
174185
|
init_output_manager();
|
173917
174186
|
init_init2();
|
173918
|
-
|
174187
|
+
COMMAND_CONFIG11 = {
|
173919
174188
|
init: ["init"]
|
173920
174189
|
};
|
173921
174190
|
}
|
@@ -174005,8 +174274,8 @@ var init_builds = __esm({
|
|
174005
174274
|
}
|
174006
174275
|
}
|
174007
174276
|
const corner = isLast ? "\u2514\u2500\u2500" : "\u251C\u2500\u2500";
|
174008
|
-
const
|
174009
|
-
return `${import_chalk92.default.grey(corner)} ${color(
|
174277
|
+
const main17 = prefix + path11 + finalSize + finalRegion;
|
174278
|
+
return `${import_chalk92.default.grey(corner)} ${color(main17)}`;
|
174010
174279
|
};
|
174011
174280
|
getDirPath = (path11, level = 0, highestLevel = null) => {
|
174012
174281
|
const parts = path11.split("/").slice(0, -1);
|
@@ -174508,7 +174777,7 @@ var init_inspect4 = __esm({
|
|
174508
174777
|
init_pkg_name();
|
174509
174778
|
init_sleep();
|
174510
174779
|
init_help();
|
174511
|
-
|
174780
|
+
init_command13();
|
174512
174781
|
init_output_manager();
|
174513
174782
|
init_inspect3();
|
174514
174783
|
}
|
@@ -175351,7 +175620,7 @@ var init_install2 = __esm({
|
|
175351
175620
|
init_get_args();
|
175352
175621
|
init_help();
|
175353
175622
|
init_add10();
|
175354
|
-
|
175623
|
+
init_command14();
|
175355
175624
|
init_output_manager();
|
175356
175625
|
init_install();
|
175357
175626
|
}
|
@@ -175866,7 +176135,7 @@ var init_list6 = __esm({
|
|
175866
176135
|
init_get_scope();
|
175867
176136
|
init_link2();
|
175868
176137
|
init_get_resources();
|
175869
|
-
|
176138
|
+
init_command16();
|
175870
176139
|
init_get_flags_specification();
|
175871
176140
|
init_get_args();
|
175872
176141
|
init_error2();
|
@@ -176082,7 +176351,7 @@ var init_remove_integration2 = __esm({
|
|
176082
176351
|
init_error2();
|
176083
176352
|
init_fetch_marketplace_integrations();
|
176084
176353
|
init_remove_integration();
|
176085
|
-
|
176354
|
+
init_command16();
|
176086
176355
|
init_remove3();
|
176087
176356
|
}
|
176088
176357
|
});
|
@@ -176090,9 +176359,9 @@ var init_remove_integration2 = __esm({
|
|
176090
176359
|
// src/commands/integration/index.ts
|
176091
176360
|
var integration_exports = {};
|
176092
176361
|
__export3(integration_exports, {
|
176093
|
-
default: () =>
|
176362
|
+
default: () => main11
|
176094
176363
|
});
|
176095
|
-
async function
|
176364
|
+
async function main11(client2) {
|
176096
176365
|
const telemetry2 = new IntegrationTelemetryClient({
|
176097
176366
|
opts: {
|
176098
176367
|
store: client2.telemetryEventStore
|
@@ -176107,7 +176376,7 @@ async function main10(client2) {
|
|
176107
176376
|
subcommand,
|
176108
176377
|
subcommandOriginal,
|
176109
176378
|
args: subArgs
|
176110
|
-
} = getSubcommand(args2.slice(1),
|
176379
|
+
} = getSubcommand(args2.slice(1), COMMAND_CONFIG12);
|
176111
176380
|
const needHelp = flags["--help"];
|
176112
176381
|
function printHelp(command) {
|
176113
176382
|
output_manager_default.print(
|
@@ -176173,12 +176442,12 @@ async function main10(client2) {
|
|
176173
176442
|
return remove3(client2);
|
176174
176443
|
}
|
176175
176444
|
default: {
|
176176
|
-
output_manager_default.error(getInvalidSubcommand(
|
176445
|
+
output_manager_default.error(getInvalidSubcommand(COMMAND_CONFIG12));
|
176177
176446
|
return 2;
|
176178
176447
|
}
|
176179
176448
|
}
|
176180
176449
|
}
|
176181
|
-
var
|
176450
|
+
var COMMAND_CONFIG12;
|
176182
176451
|
var init_integration2 = __esm({
|
176183
176452
|
"src/commands/integration/index.ts"() {
|
176184
176453
|
"use strict";
|
@@ -176192,11 +176461,11 @@ var init_integration2 = __esm({
|
|
176192
176461
|
init_help();
|
176193
176462
|
init_add10();
|
176194
176463
|
init_balance2();
|
176195
|
-
|
176464
|
+
init_command16();
|
176196
176465
|
init_list6();
|
176197
176466
|
init_open_integration();
|
176198
176467
|
init_remove_integration2();
|
176199
|
-
|
176468
|
+
COMMAND_CONFIG12 = {
|
176200
176469
|
add: getCommandAliases(addSubcommand5),
|
176201
176470
|
open: getCommandAliases(openSubcommand),
|
176202
176471
|
list: getCommandAliases(listSubcommand6),
|
@@ -176603,7 +176872,7 @@ var init_create_threshold2 = __esm({
|
|
176603
176872
|
init_get_flags_specification();
|
176604
176873
|
init_get_resources();
|
176605
176874
|
init_create_threshold();
|
176606
|
-
|
176875
|
+
init_command15();
|
176607
176876
|
init_get_scope();
|
176608
176877
|
init_fetch_installation_prepayment_info();
|
176609
176878
|
init_update_threshold();
|
@@ -176864,7 +177133,7 @@ var init_disconnect4 = __esm({
|
|
176864
177133
|
init_link2();
|
176865
177134
|
init_disconnect3();
|
176866
177135
|
init_types();
|
176867
|
-
|
177136
|
+
init_command15();
|
176868
177137
|
}
|
176869
177138
|
});
|
176870
177139
|
|
@@ -177027,7 +177296,7 @@ var init_remove_resource = __esm({
|
|
177027
177296
|
init_get_resources();
|
177028
177297
|
init_types();
|
177029
177298
|
init_remove4();
|
177030
|
-
|
177299
|
+
init_command15();
|
177031
177300
|
init_disconnect4();
|
177032
177301
|
}
|
177033
177302
|
});
|
@@ -177035,9 +177304,9 @@ var init_remove_resource = __esm({
|
|
177035
177304
|
// src/commands/integration-resource/index.ts
|
177036
177305
|
var integration_resource_exports = {};
|
177037
177306
|
__export3(integration_resource_exports, {
|
177038
|
-
default: () =>
|
177307
|
+
default: () => main12
|
177039
177308
|
});
|
177040
|
-
async function
|
177309
|
+
async function main12(client2) {
|
177041
177310
|
const telemetry2 = new IntegrationResourceTelemetryClient({
|
177042
177311
|
opts: {
|
177043
177312
|
store: client2.telemetryEventStore
|
@@ -177050,7 +177319,7 @@ async function main11(client2) {
|
|
177050
177319
|
);
|
177051
177320
|
const { subcommand, subcommandOriginal } = getSubcommand(
|
177052
177321
|
args2.slice(1),
|
177053
|
-
|
177322
|
+
COMMAND_CONFIG13
|
177054
177323
|
);
|
177055
177324
|
const needHelp = flags["--help"];
|
177056
177325
|
if (!subcommand && needHelp) {
|
@@ -177096,12 +177365,12 @@ async function main11(client2) {
|
|
177096
177365
|
return disconnect2(client2);
|
177097
177366
|
}
|
177098
177367
|
default: {
|
177099
|
-
output_manager_default.error(getInvalidSubcommand(
|
177368
|
+
output_manager_default.error(getInvalidSubcommand(COMMAND_CONFIG13));
|
177100
177369
|
return 2;
|
177101
177370
|
}
|
177102
177371
|
}
|
177103
177372
|
}
|
177104
|
-
var
|
177373
|
+
var COMMAND_CONFIG13;
|
177105
177374
|
var init_integration_resource2 = __esm({
|
177106
177375
|
"src/commands/integration-resource/index.ts"() {
|
177107
177376
|
"use strict";
|
@@ -177113,11 +177382,11 @@ var init_integration_resource2 = __esm({
|
|
177113
177382
|
init_get_subcommand();
|
177114
177383
|
init_integration_resource();
|
177115
177384
|
init_help();
|
177116
|
-
|
177385
|
+
init_command15();
|
177117
177386
|
init_create_threshold2();
|
177118
177387
|
init_disconnect4();
|
177119
177388
|
init_remove_resource();
|
177120
|
-
|
177389
|
+
COMMAND_CONFIG13 = {
|
177121
177390
|
remove: getCommandAliases(removeSubcommand6),
|
177122
177391
|
disconnect: getCommandAliases(disconnectSubcommand2),
|
177123
177392
|
"create-threshold": getCommandAliases(createThresholdSubcommand)
|
@@ -177238,7 +177507,7 @@ var init_link4 = __esm({
|
|
177238
177507
|
init_ensure_link();
|
177239
177508
|
init_repo();
|
177240
177509
|
init_help();
|
177241
|
-
|
177510
|
+
init_command17();
|
177242
177511
|
init_get_flags_specification();
|
177243
177512
|
init_error2();
|
177244
177513
|
init_output_manager();
|
@@ -177617,7 +177886,7 @@ var init_list8 = __esm({
|
|
177617
177886
|
init_errors_ts();
|
177618
177887
|
import_error_utils29 = __toESM3(require_dist2());
|
177619
177888
|
init_help();
|
177620
|
-
|
177889
|
+
init_command18();
|
177621
177890
|
init_parse_target();
|
177622
177891
|
init_get_flags_specification();
|
177623
177892
|
init_get_deployment();
|
@@ -177828,7 +178097,7 @@ var init_logs3 = __esm({
|
|
177828
178097
|
init_logs2();
|
177829
178098
|
init_help();
|
177830
178099
|
init_list8();
|
177831
|
-
|
178100
|
+
init_command21();
|
177832
178101
|
init_output_manager();
|
177833
178102
|
deprecatedFlags = [
|
177834
178103
|
"--follow",
|
@@ -178120,7 +178389,7 @@ var init_login3 = __esm({
|
|
178120
178389
|
init_global_path();
|
178121
178390
|
init_files();
|
178122
178391
|
init_help();
|
178123
|
-
|
178392
|
+
init_command19();
|
178124
178393
|
init_update_current_team_after_login();
|
178125
178394
|
init_get_flags_specification();
|
178126
178395
|
init_error2();
|
@@ -178269,7 +178538,7 @@ var init_logout2 = __esm({
|
|
178269
178538
|
init_errors_ts();
|
178270
178539
|
import_error_utils32 = __toESM3(require_dist2());
|
178271
178540
|
init_help();
|
178272
|
-
|
178541
|
+
init_command20();
|
178273
178542
|
init_get_flags_specification();
|
178274
178543
|
init_output_manager();
|
178275
178544
|
init_logout();
|
@@ -178366,7 +178635,7 @@ var init_pull5 = __esm({
|
|
178366
178635
|
init_humanize_path();
|
178367
178636
|
init_stamp();
|
178368
178637
|
import_fs_extra23 = __toESM3(require_lib());
|
178369
|
-
|
178638
|
+
init_command22();
|
178370
178639
|
init_get_flags_specification();
|
178371
178640
|
init_get_args();
|
178372
178641
|
init_error2();
|
@@ -178395,9 +178664,9 @@ var init_microfrontends = __esm({
|
|
178395
178664
|
// src/commands/microfrontends/index.ts
|
178396
178665
|
var microfrontends_exports = {};
|
178397
178666
|
__export3(microfrontends_exports, {
|
178398
|
-
default: () =>
|
178667
|
+
default: () => main13
|
178399
178668
|
});
|
178400
|
-
async function
|
178669
|
+
async function main13(client2) {
|
178401
178670
|
const telemetry2 = new MicrofrontendsTelemetryClient({
|
178402
178671
|
opts: {
|
178403
178672
|
store: client2.telemetryEventStore
|
@@ -178417,7 +178686,7 @@ async function main12(client2) {
|
|
178417
178686
|
}
|
178418
178687
|
let { subcommand, subcommandOriginal } = getSubcommand(
|
178419
178688
|
parsedArgs.args.slice(1),
|
178420
|
-
|
178689
|
+
COMMAND_CONFIG14
|
178421
178690
|
);
|
178422
178691
|
const needHelp = parsedArgs.flags["--help"];
|
178423
178692
|
if (!subcommand && needHelp) {
|
@@ -178445,14 +178714,14 @@ async function main12(client2) {
|
|
178445
178714
|
telemetry2.trackCliSubcommandPull(subcommandOriginal);
|
178446
178715
|
return pull2(client2);
|
178447
178716
|
default:
|
178448
|
-
output_manager_default.error(getInvalidSubcommand(
|
178717
|
+
output_manager_default.error(getInvalidSubcommand(COMMAND_CONFIG14));
|
178449
178718
|
output_manager_default.print(
|
178450
178719
|
help2(microfrontendsCommand, { columns: client2.stderr.columns })
|
178451
178720
|
);
|
178452
178721
|
return 2;
|
178453
178722
|
}
|
178454
178723
|
}
|
178455
|
-
var
|
178724
|
+
var COMMAND_CONFIG14;
|
178456
178725
|
var init_microfrontends2 = __esm({
|
178457
178726
|
"src/commands/microfrontends/index.ts"() {
|
178458
178727
|
"use strict";
|
@@ -178461,13 +178730,13 @@ var init_microfrontends2 = __esm({
|
|
178461
178730
|
init_error2();
|
178462
178731
|
init_help();
|
178463
178732
|
init_pull5();
|
178464
|
-
|
178733
|
+
init_command22();
|
178465
178734
|
init_get_flags_specification();
|
178466
178735
|
init_output_manager();
|
178467
178736
|
init_commands();
|
178468
178737
|
init_get_subcommand();
|
178469
178738
|
init_microfrontends();
|
178470
|
-
|
178739
|
+
COMMAND_CONFIG14 = {
|
178471
178740
|
pull: getCommandAliases(pullSubcommand2)
|
178472
178741
|
};
|
178473
178742
|
}
|
@@ -178560,7 +178829,7 @@ var init_add12 = __esm({
|
|
178560
178829
|
init_create_project();
|
178561
178830
|
init_output_manager();
|
178562
178831
|
init_add11();
|
178563
|
-
|
178832
|
+
init_command23();
|
178564
178833
|
init_get_args();
|
178565
178834
|
init_get_flags_specification();
|
178566
178835
|
init_error2();
|
@@ -178717,7 +178986,7 @@ var init_inspect6 = __esm({
|
|
178717
178986
|
init_pkg_name();
|
178718
178987
|
init_inspect5();
|
178719
178988
|
init_output_manager();
|
178720
|
-
|
178989
|
+
init_command23();
|
178721
178990
|
init_get_args();
|
178722
178991
|
init_get_flags_specification();
|
178723
178992
|
init_error2();
|
@@ -178851,7 +179120,7 @@ var init_list10 = __esm({
|
|
178851
179120
|
init_pkg_name();
|
178852
179121
|
init_list9();
|
178853
179122
|
init_output_manager();
|
178854
|
-
|
179123
|
+
init_command23();
|
178855
179124
|
init_get_args();
|
178856
179125
|
init_get_flags_specification();
|
178857
179126
|
init_error2();
|
@@ -178960,7 +179229,7 @@ var init_rm10 = __esm({
|
|
178960
179229
|
init_get_args();
|
178961
179230
|
init_get_flags_specification();
|
178962
179231
|
init_error2();
|
178963
|
-
|
179232
|
+
init_command23();
|
178964
179233
|
e = encodeURIComponent;
|
178965
179234
|
}
|
178966
179235
|
});
|
@@ -179003,9 +179272,9 @@ var init_project = __esm({
|
|
179003
179272
|
// src/commands/project/index.ts
|
179004
179273
|
var project_exports = {};
|
179005
179274
|
__export3(project_exports, {
|
179006
|
-
default: () =>
|
179275
|
+
default: () => main14
|
179007
179276
|
});
|
179008
|
-
async function
|
179277
|
+
async function main14(client2) {
|
179009
179278
|
const telemetry2 = new ProjectTelemetryClient({
|
179010
179279
|
opts: {
|
179011
179280
|
store: client2.telemetryEventStore
|
@@ -179023,7 +179292,7 @@ async function main13(client2) {
|
|
179023
179292
|
}
|
179024
179293
|
let { subcommand, args: args2, subcommandOriginal } = getSubcommand(
|
179025
179294
|
parsedArgs.args.slice(1),
|
179026
|
-
|
179295
|
+
COMMAND_CONFIG15
|
179027
179296
|
);
|
179028
179297
|
const needHelp = parsedArgs.flags["--help"];
|
179029
179298
|
if (!subcommand && needHelp) {
|
@@ -179070,12 +179339,12 @@ async function main13(client2) {
|
|
179070
179339
|
telemetry2.trackCliSubcommandRemove(subcommandOriginal);
|
179071
179340
|
return rm6(client2, args2);
|
179072
179341
|
default:
|
179073
|
-
output_manager_default.error(getInvalidSubcommand(
|
179342
|
+
output_manager_default.error(getInvalidSubcommand(COMMAND_CONFIG15));
|
179074
179343
|
output_manager_default.print(help2(projectCommand, { columns: client2.stderr.columns }));
|
179075
179344
|
return 2;
|
179076
179345
|
}
|
179077
179346
|
}
|
179078
|
-
var
|
179347
|
+
var COMMAND_CONFIG15;
|
179079
179348
|
var init_project2 = __esm({
|
179080
179349
|
"src/commands/project/index.ts"() {
|
179081
179350
|
"use strict";
|
@@ -179087,13 +179356,13 @@ var init_project2 = __esm({
|
|
179087
179356
|
init_inspect6();
|
179088
179357
|
init_list10();
|
179089
179358
|
init_rm10();
|
179090
|
-
|
179359
|
+
init_command23();
|
179091
179360
|
init_get_flags_specification();
|
179092
179361
|
init_project();
|
179093
179362
|
init_output_manager();
|
179094
179363
|
init_commands();
|
179095
179364
|
init_get_subcommand();
|
179096
|
-
|
179365
|
+
COMMAND_CONFIG15 = {
|
179097
179366
|
inspect: getCommandAliases(inspectSubcommand2),
|
179098
179367
|
list: getCommandAliases(listSubcommand7),
|
179099
179368
|
add: getCommandAliases(addSubcommand6),
|
@@ -179550,7 +179819,7 @@ var init_promote2 = __esm({
|
|
179550
179819
|
import_error_utils33 = __toESM3(require_dist2());
|
179551
179820
|
init_request_promote();
|
179552
179821
|
init_status();
|
179553
|
-
|
179822
|
+
init_command24();
|
179554
179823
|
init_help();
|
179555
179824
|
init_get_flags_specification();
|
179556
179825
|
init_promote();
|
@@ -179933,7 +180202,7 @@ var init_redeploy2 = __esm({
|
|
179933
180202
|
init_stamp();
|
179934
180203
|
init_ua();
|
179935
180204
|
init_help();
|
179936
|
-
|
180205
|
+
init_command26();
|
179937
180206
|
init_get_flags_specification();
|
179938
180207
|
init_output_manager();
|
179939
180208
|
init_redeploy();
|
@@ -180319,7 +180588,7 @@ var init_remove6 = __esm({
|
|
180319
180588
|
init_error2();
|
180320
180589
|
init_now_error();
|
180321
180590
|
init_help();
|
180322
|
-
|
180591
|
+
init_command27();
|
180323
180592
|
init_get_flags_specification();
|
180324
180593
|
init_remove5();
|
180325
180594
|
init_output_manager();
|
@@ -180592,7 +180861,7 @@ var init_rollback2 = __esm({
|
|
180592
180861
|
init_request_rollback();
|
180593
180862
|
init_status2();
|
180594
180863
|
init_help();
|
180595
|
-
|
180864
|
+
init_command28();
|
180596
180865
|
init_get_flags_specification();
|
180597
180866
|
init_rollback();
|
180598
180867
|
init_output_manager();
|
@@ -180959,7 +181228,7 @@ async function rollingRelease(client2) {
|
|
180959
181228
|
subcommand,
|
180960
181229
|
args: subcommandArgs,
|
180961
181230
|
subcommandOriginal
|
180962
|
-
} = getSubcommand(client2.argv.slice(3),
|
181231
|
+
} = getSubcommand(client2.argv.slice(3), COMMAND_CONFIG16);
|
180963
181232
|
const needHelp = client2.argv.includes("--help") || client2.argv.includes("-h");
|
180964
181233
|
if (!subcommand && needHelp) {
|
180965
181234
|
telemetry2.trackCliFlagHelp("rolling-release");
|
@@ -181148,7 +181417,7 @@ async function rollingRelease(client2) {
|
|
181148
181417
|
}
|
181149
181418
|
default: {
|
181150
181419
|
output_manager_default.debug(`Invalid subcommand: ${subcommand}`);
|
181151
|
-
output_manager_default.error(getInvalidSubcommand(
|
181420
|
+
output_manager_default.error(getInvalidSubcommand(COMMAND_CONFIG16));
|
181152
181421
|
output_manager_default.print(
|
181153
181422
|
help2(rollingReleaseCommand, { columns: client2.stderr.columns })
|
181154
181423
|
);
|
@@ -181161,14 +181430,14 @@ async function rollingRelease(client2) {
|
|
181161
181430
|
return 1;
|
181162
181431
|
}
|
181163
181432
|
}
|
181164
|
-
var
|
181433
|
+
var COMMAND_CONFIG16;
|
181165
181434
|
var init_rolling_release2 = __esm({
|
181166
181435
|
"src/commands/rolling-release/index.ts"() {
|
181167
181436
|
"use strict";
|
181168
181437
|
init_get_args();
|
181169
181438
|
init_get_flags_specification();
|
181170
181439
|
init_help();
|
181171
|
-
|
181440
|
+
init_command29();
|
181172
181441
|
init_request_rolling_release();
|
181173
181442
|
init_start_rolling_release();
|
181174
181443
|
init_configure_rolling_release();
|
@@ -181182,7 +181451,7 @@ var init_rolling_release2 = __esm({
|
|
181182
181451
|
init_get_subcommand();
|
181183
181452
|
init_commands();
|
181184
181453
|
init_get_invalid_subcommand();
|
181185
|
-
|
181454
|
+
COMMAND_CONFIG16 = {
|
181186
181455
|
configure: getCommandAliases(configureSubcommand),
|
181187
181456
|
start: getCommandAliases(startSubcommand),
|
181188
181457
|
approve: getCommandAliases(approveSubcommand),
|
@@ -181300,7 +181569,7 @@ var init_list11 = __esm({
|
|
181300
181569
|
import_chalk121 = __toESM3(require_source());
|
181301
181570
|
init_table();
|
181302
181571
|
init_output_manager();
|
181303
|
-
|
181572
|
+
init_command30();
|
181304
181573
|
init_pkg_name();
|
181305
181574
|
init_ensure_link();
|
181306
181575
|
init_format_project();
|
@@ -181338,9 +181607,9 @@ var init_target = __esm({
|
|
181338
181607
|
// src/commands/target/index.ts
|
181339
181608
|
var target_exports = {};
|
181340
181609
|
__export3(target_exports, {
|
181341
|
-
default: () =>
|
181610
|
+
default: () => main15
|
181342
181611
|
});
|
181343
|
-
async function
|
181612
|
+
async function main15(client2) {
|
181344
181613
|
let parsedArgs;
|
181345
181614
|
const flagsSpecification = getFlagsSpecification(targetCommand.options);
|
181346
181615
|
try {
|
@@ -181380,12 +181649,12 @@ async function main14(client2) {
|
|
181380
181649
|
telemetry2.trackCliSubcommandList(subcommand);
|
181381
181650
|
return await list7(client2, args2);
|
181382
181651
|
default:
|
181383
|
-
output_manager_default.error(getInvalidSubcommand(
|
181652
|
+
output_manager_default.error(getInvalidSubcommand(COMMAND_CONFIG17));
|
181384
181653
|
output_manager_default.print(help2(targetCommand, { columns: client2.stderr.columns }));
|
181385
181654
|
return 2;
|
181386
181655
|
}
|
181387
181656
|
}
|
181388
|
-
var
|
181657
|
+
var COMMAND_CONFIG17;
|
181389
181658
|
var init_target2 = __esm({
|
181390
181659
|
"src/commands/target/index.ts"() {
|
181391
181660
|
"use strict";
|
@@ -181393,13 +181662,13 @@ var init_target2 = __esm({
|
|
181393
181662
|
init_get_invalid_subcommand();
|
181394
181663
|
init_help();
|
181395
181664
|
init_list11();
|
181396
|
-
|
181665
|
+
init_command30();
|
181397
181666
|
init_get_flags_specification();
|
181398
181667
|
init_error2();
|
181399
181668
|
init_output_manager();
|
181400
181669
|
init_target();
|
181401
181670
|
init_commands();
|
181402
|
-
|
181671
|
+
COMMAND_CONFIG17 = {
|
181403
181672
|
ls: getCommandAliases(listSubcommand8)
|
181404
181673
|
};
|
181405
181674
|
}
|
@@ -181540,7 +181809,7 @@ var init_list13 = __esm({
|
|
181540
181809
|
init_get_args();
|
181541
181810
|
init_error2();
|
181542
181811
|
init_get_flags_specification();
|
181543
|
-
|
181812
|
+
init_command31();
|
181544
181813
|
init_output_manager();
|
181545
181814
|
init_list12();
|
181546
181815
|
}
|
@@ -181739,7 +182008,7 @@ var init_invite2 = __esm({
|
|
181739
182008
|
init_get_args();
|
181740
182009
|
init_get_flags_specification();
|
181741
182010
|
init_error2();
|
181742
|
-
|
182011
|
+
init_command31();
|
181743
182012
|
validateEmail2 = (data) => email.test(data.trim()) || data.length === 0;
|
181744
182013
|
domains = Array.from(
|
181745
182014
|
/* @__PURE__ */ new Set([
|
@@ -182040,7 +182309,7 @@ var init_switch2 = __esm({
|
|
182040
182309
|
init_files();
|
182041
182310
|
init_output_manager();
|
182042
182311
|
init_switch();
|
182043
|
-
|
182312
|
+
init_command31();
|
182044
182313
|
init_get_args();
|
182045
182314
|
init_get_flags_specification();
|
182046
182315
|
init_error2();
|
@@ -182124,7 +182393,7 @@ async function teams(client2) {
|
|
182124
182393
|
}
|
182125
182394
|
const { subcommand, args: args2, subcommandOriginal } = getSubcommand(
|
182126
182395
|
parsedArgs.args.slice(1),
|
182127
|
-
|
182396
|
+
COMMAND_CONFIG18
|
182128
182397
|
);
|
182129
182398
|
const needHelp = parsedArgs.flags["--help"];
|
182130
182399
|
if (!subcommand && needHelp) {
|
@@ -182183,7 +182452,7 @@ async function teams(client2) {
|
|
182183
182452
|
}
|
182184
182453
|
}
|
182185
182454
|
}
|
182186
|
-
var
|
182455
|
+
var COMMAND_CONFIG18;
|
182187
182456
|
var init_teams2 = __esm({
|
182188
182457
|
"src/commands/teams/index.ts"() {
|
182189
182458
|
"use strict";
|
@@ -182192,14 +182461,14 @@ var init_teams2 = __esm({
|
|
182192
182461
|
init_switch2();
|
182193
182462
|
init_invite2();
|
182194
182463
|
init_get_args();
|
182195
|
-
|
182464
|
+
init_command31();
|
182196
182465
|
init_help();
|
182197
182466
|
init_get_flags_specification();
|
182198
182467
|
init_error2();
|
182199
182468
|
init_teams();
|
182200
182469
|
init_output_manager();
|
182201
182470
|
init_get_subcommand();
|
182202
|
-
|
182471
|
+
COMMAND_CONFIG18 = {
|
182203
182472
|
list: ["ls", "list"],
|
182204
182473
|
switch: ["switch", "change"],
|
182205
182474
|
add: ["create", "add"],
|
@@ -182368,7 +182637,7 @@ async function telemetry(client2) {
|
|
182368
182637
|
}
|
182369
182638
|
const { subcommand, args: args2, subcommandOriginal } = getSubcommand(
|
182370
182639
|
parsedArguments.args.slice(1),
|
182371
|
-
|
182640
|
+
COMMAND_CONFIG19
|
182372
182641
|
);
|
182373
182642
|
const needHelp = parsedArguments.flags["--help"];
|
182374
182643
|
function printHelp(command) {
|
@@ -182421,7 +182690,7 @@ async function telemetry(client2) {
|
|
182421
182690
|
}
|
182422
182691
|
}
|
182423
182692
|
}
|
182424
|
-
var import_chalk127,
|
182693
|
+
var import_chalk127, COMMAND_CONFIG19;
|
182425
182694
|
var init_telemetry3 = __esm({
|
182426
182695
|
"src/commands/telemetry/index.ts"() {
|
182427
182696
|
"use strict";
|
@@ -182433,13 +182702,13 @@ var init_telemetry3 = __esm({
|
|
182433
182702
|
init_enable();
|
182434
182703
|
init_disable();
|
182435
182704
|
init_flush();
|
182436
|
-
|
182705
|
+
init_command32();
|
182437
182706
|
init_get_flags_specification();
|
182438
182707
|
init_telemetry2();
|
182439
182708
|
import_chalk127 = __toESM3(require_source());
|
182440
182709
|
init_output_manager();
|
182441
182710
|
init_commands();
|
182442
|
-
|
182711
|
+
COMMAND_CONFIG19 = {
|
182443
182712
|
status: getCommandAliases(statusSubcommand3),
|
182444
182713
|
enable: getCommandAliases(enableSubcommand),
|
182445
182714
|
disable: getCommandAliases(disableSubcommand),
|
@@ -182496,7 +182765,7 @@ var init_whoami2 = __esm({
|
|
182496
182765
|
"src/commands/whoami/index.ts"() {
|
182497
182766
|
"use strict";
|
182498
182767
|
init_help();
|
182499
|
-
|
182768
|
+
init_command33();
|
182500
182769
|
init_get_scope();
|
182501
182770
|
init_get_args();
|
182502
182771
|
init_get_flags_specification();
|
@@ -182937,6 +183206,12 @@ var RootTelemetryClient = class extends TelemetryClient {
|
|
182937
183206
|
value: actual
|
182938
183207
|
});
|
182939
183208
|
}
|
183209
|
+
trackCliCommandCache(actual) {
|
183210
|
+
this.trackCliCommand({
|
183211
|
+
command: "cache",
|
183212
|
+
value: actual
|
183213
|
+
});
|
183214
|
+
}
|
182940
183215
|
trackCliCommandCerts(actual) {
|
182941
183216
|
this.trackCliCommand({
|
182942
183217
|
command: "certs",
|
@@ -183213,6 +183488,7 @@ var help = () => `
|
|
183213
183488
|
"(default)"
|
183214
183489
|
)}
|
183215
183490
|
build Build the project locally into './vercel/output'
|
183491
|
+
cache [cmd] Manages cache for your current Project
|
183216
183492
|
dev Start a local development server
|
183217
183493
|
env Manages the Environment Variables for your current Project
|
183218
183494
|
git Manage Git provider repository for your current Project
|
@@ -183352,7 +183628,7 @@ Sentry.init({
|
|
183352
183628
|
var client;
|
183353
183629
|
var { isTTY: isTTY2 } = process.stdout;
|
183354
183630
|
var apiUrl = "https://api.vercel.com";
|
183355
|
-
var
|
183631
|
+
var main16 = async () => {
|
183356
183632
|
if (process.env.FORCE_TTY === "1") {
|
183357
183633
|
isTTY2 = true;
|
183358
183634
|
process.stdout.isTTY = true;
|
@@ -183738,6 +184014,10 @@ var main15 = async () => {
|
|
183738
184014
|
telemetry2.trackCliCommandBuild(userSuppliedSubCommand);
|
183739
184015
|
func = (init_build2(), __toCommonJS3(build_exports)).default;
|
183740
184016
|
break;
|
184017
|
+
case "cache":
|
184018
|
+
telemetry2.trackCliCommandCache(userSuppliedSubCommand);
|
184019
|
+
func = (init_cache2(), __toCommonJS3(cache_exports)).default;
|
184020
|
+
break;
|
183741
184021
|
case "certs":
|
183742
184022
|
telemetry2.trackCliCommandCerts(userSuppliedSubCommand);
|
183743
184023
|
func = (init_certs2(), __toCommonJS3(certs_exports)).default;
|
@@ -183950,7 +184230,7 @@ ${err.stack}`);
|
|
183950
184230
|
};
|
183951
184231
|
process.on("unhandledRejection", handleRejection);
|
183952
184232
|
process.on("uncaughtException", handleUnexpected);
|
183953
|
-
|
184233
|
+
main16().then(async (exitCode2) => {
|
183954
184234
|
if (isTTY2 && !process.env.NO_UPDATE_NOTIFIER) {
|
183955
184235
|
const latest = getLatestVersion({
|
183956
184236
|
pkg: pkg_default
|