vercel 51.0.0 → 51.1.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/chunks/{chunk-UV6I5R3Q.js → chunk-E6ZEBMUP.js} +1 -1
- package/dist/chunks/{chunk-3ZDQHZB3.js → chunk-Q4UET42E.js} +1 -1
- package/dist/chunks/{chunk-CCEUMQG3.js → chunk-VOT6BE6P.js} +29 -9
- package/dist/commands/deploy/index.js +2 -2
- package/dist/commands/env/index.js +1 -1
- package/dist/commands/link/index.js +1 -1
- package/dist/commands-bulk.js +733 -663
- package/dist/index.js +2 -2
- package/dist/version.mjs +1 -1
- package/package.json +13 -13
|
@@ -6304,6 +6304,14 @@ var accessOption = {
|
|
|
6304
6304
|
argument: "String",
|
|
6305
6305
|
choices: ["public", "private"]
|
|
6306
6306
|
};
|
|
6307
|
+
var environmentOption = {
|
|
6308
|
+
name: "environment",
|
|
6309
|
+
shorthand: "e",
|
|
6310
|
+
type: [String],
|
|
6311
|
+
deprecated: false,
|
|
6312
|
+
argument: "ENV",
|
|
6313
|
+
description: "Environment to connect (can be repeated: production, preview, development). Defaults to all when --yes is used."
|
|
6314
|
+
};
|
|
6307
6315
|
var listSubcommand15 = {
|
|
6308
6316
|
name: "list",
|
|
6309
6317
|
aliases: ["ls"],
|
|
@@ -6510,7 +6518,9 @@ var addStoreSubcommand = {
|
|
|
6510
6518
|
deprecated: false,
|
|
6511
6519
|
description: 'Region to create the Blob store in (default: "iad1"). See https://vercel.com/docs/edge-network/regions#region-list for all available regions',
|
|
6512
6520
|
argument: "STRING"
|
|
6513
|
-
}
|
|
6521
|
+
},
|
|
6522
|
+
yesOption,
|
|
6523
|
+
environmentOption
|
|
6514
6524
|
],
|
|
6515
6525
|
examples: [
|
|
6516
6526
|
{
|
|
@@ -6537,7 +6547,7 @@ var removeStoreSubcommand = {
|
|
|
6537
6547
|
required: false
|
|
6538
6548
|
}
|
|
6539
6549
|
],
|
|
6540
|
-
options: [],
|
|
6550
|
+
options: [yesOption],
|
|
6541
6551
|
examples: []
|
|
6542
6552
|
};
|
|
6543
6553
|
var getStoreSubcommand = {
|
|
@@ -6572,20 +6582,22 @@ var createStoreSubcommand = {
|
|
|
6572
6582
|
deprecated: false,
|
|
6573
6583
|
description: 'Region to create the Blob store in (default: "iad1"). See https://vercel.com/docs/edge-network/regions#region-list for all available regions',
|
|
6574
6584
|
argument: "STRING"
|
|
6575
|
-
}
|
|
6585
|
+
},
|
|
6586
|
+
yesOption,
|
|
6587
|
+
environmentOption
|
|
6576
6588
|
],
|
|
6577
6589
|
examples: [
|
|
6578
6590
|
{
|
|
6579
6591
|
name: 'Create a blob store (uses default region "iad1")',
|
|
6580
|
-
value: "vercel blob create-store my-store"
|
|
6592
|
+
value: "vercel blob create-store my-store --access private"
|
|
6581
6593
|
},
|
|
6582
6594
|
{
|
|
6583
6595
|
name: "Create a blob store in a specific region",
|
|
6584
|
-
value: "vercel blob create-store my-store --region cdg1"
|
|
6596
|
+
value: "vercel blob create-store my-store --access private --region cdg1"
|
|
6585
6597
|
},
|
|
6586
6598
|
{
|
|
6587
|
-
name: "Create
|
|
6588
|
-
value: "vercel blob create-store my-
|
|
6599
|
+
name: "Create and connect to project in CI",
|
|
6600
|
+
value: "vercel blob create-store my-store --access private --yes --environment production --environment preview"
|
|
6589
6601
|
}
|
|
6590
6602
|
]
|
|
6591
6603
|
};
|
|
@@ -6599,7 +6611,7 @@ var deleteStoreSubcommand = {
|
|
|
6599
6611
|
required: false
|
|
6600
6612
|
}
|
|
6601
6613
|
],
|
|
6602
|
-
options: [],
|
|
6614
|
+
options: [yesOption],
|
|
6603
6615
|
examples: []
|
|
6604
6616
|
};
|
|
6605
6617
|
var emptyStoreSubcommand = {
|
|
@@ -6628,7 +6640,15 @@ var listStoresSubcommand = {
|
|
|
6628
6640
|
aliases: ["ls-stores"],
|
|
6629
6641
|
description: "List all Blob stores",
|
|
6630
6642
|
arguments: [],
|
|
6631
|
-
options: [
|
|
6643
|
+
options: [
|
|
6644
|
+
{
|
|
6645
|
+
name: "all",
|
|
6646
|
+
shorthand: "a",
|
|
6647
|
+
type: Boolean,
|
|
6648
|
+
deprecated: false,
|
|
6649
|
+
description: "List all blob stores for the team, not just the ones connected to the current project"
|
|
6650
|
+
}
|
|
6651
|
+
],
|
|
6632
6652
|
examples: []
|
|
6633
6653
|
};
|
|
6634
6654
|
var blobCommand = {
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
purchaseDomainIfAvailable,
|
|
14
14
|
require_cjs,
|
|
15
15
|
setupDomain
|
|
16
|
-
} from "../../chunks/chunk-
|
|
16
|
+
} from "../../chunks/chunk-E6ZEBMUP.js";
|
|
17
17
|
import {
|
|
18
18
|
readLocalConfig
|
|
19
19
|
} from "../../chunks/chunk-K4IC7LFB.js";
|
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
deprecatedArchiveSplitTgz,
|
|
43
43
|
getCommandAliases,
|
|
44
44
|
initSubcommand
|
|
45
|
-
} from "../../chunks/chunk-
|
|
45
|
+
} from "../../chunks/chunk-VOT6BE6P.js";
|
|
46
46
|
import "../../chunks/chunk-BQUQ5F7R.js";
|
|
47
47
|
import "../../chunks/chunk-BUBUVE23.js";
|
|
48
48
|
import "../../chunks/chunk-2IAZZEVQ.js";
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
} from "../../chunks/chunk-YPQSDAEW.js";
|
|
29
29
|
import {
|
|
30
30
|
getCommandAliases
|
|
31
|
-
} from "../../chunks/chunk-
|
|
31
|
+
} from "../../chunks/chunk-VOT6BE6P.js";
|
|
32
32
|
import "../../chunks/chunk-BQUQ5F7R.js";
|
|
33
33
|
import "../../chunks/chunk-BUBUVE23.js";
|
|
34
34
|
import "../../chunks/chunk-2IAZZEVQ.js";
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
addSubcommand7 as addSubcommand,
|
|
15
15
|
getCommandAliases,
|
|
16
16
|
linkCommand
|
|
17
|
-
} from "../../chunks/chunk-
|
|
17
|
+
} from "../../chunks/chunk-VOT6BE6P.js";
|
|
18
18
|
import "../../chunks/chunk-BQUQ5F7R.js";
|
|
19
19
|
import "../../chunks/chunk-BUBUVE23.js";
|
|
20
20
|
import "../../chunks/chunk-2IAZZEVQ.js";
|