eas-cli 18.6.0 → 18.7.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/README.md +90 -89
- package/build/commands/build/dev.d.ts +1 -0
- package/build/commands/build/dev.js +10 -2
- package/oclif.manifest.json +627 -621
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -1796,6 +1796,12 @@
|
|
|
1796
1796
|
"name": "skip-build-if-not-found",
|
|
1797
1797
|
"allowNo": false,
|
|
1798
1798
|
"type": "boolean"
|
|
1799
|
+
},
|
|
1800
|
+
"skip-bundler": {
|
|
1801
|
+
"description": "Install and run the development build without starting the bundler server.",
|
|
1802
|
+
"name": "skip-bundler",
|
|
1803
|
+
"allowNo": false,
|
|
1804
|
+
"type": "boolean"
|
|
1799
1805
|
}
|
|
1800
1806
|
},
|
|
1801
1807
|
"hasDynamicHelp": false,
|
|
@@ -3991,14 +3997,90 @@
|
|
|
3991
3997
|
"index.js"
|
|
3992
3998
|
]
|
|
3993
3999
|
},
|
|
3994
|
-
"
|
|
4000
|
+
"env:create": {
|
|
3995
4001
|
"aliases": [],
|
|
3996
|
-
"args": {
|
|
3997
|
-
|
|
3998
|
-
|
|
4002
|
+
"args": {
|
|
4003
|
+
"environment": {
|
|
4004
|
+
"description": "Environment to create the variable in. Default environments are 'production', 'preview', and 'development'.",
|
|
4005
|
+
"name": "environment",
|
|
4006
|
+
"required": false
|
|
4007
|
+
}
|
|
4008
|
+
},
|
|
4009
|
+
"description": "create an environment variable for the current project or account",
|
|
4010
|
+
"flags": {
|
|
4011
|
+
"name": {
|
|
4012
|
+
"description": "Name of the variable",
|
|
4013
|
+
"name": "name",
|
|
4014
|
+
"hasDynamicHelp": false,
|
|
4015
|
+
"multiple": false,
|
|
4016
|
+
"type": "option"
|
|
4017
|
+
},
|
|
4018
|
+
"value": {
|
|
4019
|
+
"description": "Text value or the variable",
|
|
4020
|
+
"name": "value",
|
|
4021
|
+
"hasDynamicHelp": false,
|
|
4022
|
+
"multiple": false,
|
|
4023
|
+
"type": "option"
|
|
4024
|
+
},
|
|
4025
|
+
"force": {
|
|
4026
|
+
"description": "Overwrite existing variable",
|
|
4027
|
+
"name": "force",
|
|
4028
|
+
"allowNo": false,
|
|
4029
|
+
"type": "boolean"
|
|
4030
|
+
},
|
|
4031
|
+
"type": {
|
|
4032
|
+
"description": "The type of variable",
|
|
4033
|
+
"name": "type",
|
|
4034
|
+
"hasDynamicHelp": false,
|
|
4035
|
+
"multiple": false,
|
|
4036
|
+
"options": [
|
|
4037
|
+
"string",
|
|
4038
|
+
"file"
|
|
4039
|
+
],
|
|
4040
|
+
"type": "option"
|
|
4041
|
+
},
|
|
4042
|
+
"visibility": {
|
|
4043
|
+
"description": "Visibility of the variable",
|
|
4044
|
+
"name": "visibility",
|
|
4045
|
+
"hasDynamicHelp": false,
|
|
4046
|
+
"multiple": false,
|
|
4047
|
+
"options": [
|
|
4048
|
+
"plaintext",
|
|
4049
|
+
"sensitive",
|
|
4050
|
+
"secret"
|
|
4051
|
+
],
|
|
4052
|
+
"type": "option"
|
|
4053
|
+
},
|
|
4054
|
+
"scope": {
|
|
4055
|
+
"description": "Scope for the variable",
|
|
4056
|
+
"name": "scope",
|
|
4057
|
+
"default": "project",
|
|
4058
|
+
"hasDynamicHelp": false,
|
|
4059
|
+
"multiple": false,
|
|
4060
|
+
"options": [
|
|
4061
|
+
"project",
|
|
4062
|
+
"account"
|
|
4063
|
+
],
|
|
4064
|
+
"type": "option"
|
|
4065
|
+
},
|
|
4066
|
+
"environment": {
|
|
4067
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4068
|
+
"name": "environment",
|
|
4069
|
+
"hasDynamicHelp": false,
|
|
4070
|
+
"multiple": true,
|
|
4071
|
+
"type": "option"
|
|
4072
|
+
},
|
|
4073
|
+
"non-interactive": {
|
|
4074
|
+
"description": "Run the command in non-interactive mode.",
|
|
4075
|
+
"name": "non-interactive",
|
|
4076
|
+
"noCacheDefault": true,
|
|
4077
|
+
"allowNo": false,
|
|
4078
|
+
"type": "boolean"
|
|
4079
|
+
}
|
|
4080
|
+
},
|
|
3999
4081
|
"hasDynamicHelp": false,
|
|
4000
4082
|
"hiddenAliases": [],
|
|
4001
|
-
"id": "
|
|
4083
|
+
"id": "env:create",
|
|
4002
4084
|
"pluginAlias": "eas-cli",
|
|
4003
4085
|
"pluginName": "eas-cli",
|
|
4004
4086
|
"pluginType": "core",
|
|
@@ -4045,41 +4127,54 @@
|
|
|
4045
4127
|
}
|
|
4046
4128
|
},
|
|
4047
4129
|
"contextDefinition": {
|
|
4048
|
-
"
|
|
4049
|
-
"
|
|
4130
|
+
"projectId": {},
|
|
4131
|
+
"analytics": {},
|
|
4132
|
+
"loggedIn": {}
|
|
4050
4133
|
},
|
|
4051
4134
|
"isESM": false,
|
|
4052
4135
|
"relativePath": [
|
|
4053
4136
|
"build",
|
|
4054
4137
|
"commands",
|
|
4055
|
-
"
|
|
4138
|
+
"env",
|
|
4056
4139
|
"create.js"
|
|
4057
4140
|
]
|
|
4058
4141
|
},
|
|
4059
|
-
"
|
|
4142
|
+
"env:delete": {
|
|
4060
4143
|
"aliases": [],
|
|
4061
|
-
"args": {
|
|
4062
|
-
|
|
4144
|
+
"args": {
|
|
4145
|
+
"environment": {
|
|
4146
|
+
"description": "Current environment of the variable to delete. Default environments are 'production', 'preview', and 'development'.",
|
|
4147
|
+
"name": "environment",
|
|
4148
|
+
"required": false
|
|
4149
|
+
}
|
|
4150
|
+
},
|
|
4151
|
+
"description": "delete an environment variable for the current project or account",
|
|
4063
4152
|
"flags": {
|
|
4064
|
-
"
|
|
4065
|
-
"description": "
|
|
4066
|
-
"name": "
|
|
4153
|
+
"variable-name": {
|
|
4154
|
+
"description": "Name of the variable to delete",
|
|
4155
|
+
"name": "variable-name",
|
|
4067
4156
|
"hasDynamicHelp": false,
|
|
4068
4157
|
"multiple": false,
|
|
4069
4158
|
"type": "option"
|
|
4070
4159
|
},
|
|
4071
|
-
"
|
|
4072
|
-
"description": "
|
|
4073
|
-
"name": "
|
|
4160
|
+
"variable-environment": {
|
|
4161
|
+
"description": "Current environment of the variable to delete",
|
|
4162
|
+
"name": "variable-environment",
|
|
4074
4163
|
"hasDynamicHelp": false,
|
|
4075
4164
|
"multiple": false,
|
|
4076
4165
|
"type": "option"
|
|
4077
4166
|
},
|
|
4078
|
-
"
|
|
4079
|
-
"description": "
|
|
4080
|
-
"name": "
|
|
4081
|
-
"
|
|
4082
|
-
"
|
|
4167
|
+
"scope": {
|
|
4168
|
+
"description": "Scope for the variable",
|
|
4169
|
+
"name": "scope",
|
|
4170
|
+
"default": "project",
|
|
4171
|
+
"hasDynamicHelp": false,
|
|
4172
|
+
"multiple": false,
|
|
4173
|
+
"options": [
|
|
4174
|
+
"project",
|
|
4175
|
+
"account"
|
|
4176
|
+
],
|
|
4177
|
+
"type": "option"
|
|
4083
4178
|
},
|
|
4084
4179
|
"non-interactive": {
|
|
4085
4180
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -4091,7 +4186,7 @@
|
|
|
4091
4186
|
},
|
|
4092
4187
|
"hasDynamicHelp": false,
|
|
4093
4188
|
"hiddenAliases": [],
|
|
4094
|
-
"id": "
|
|
4189
|
+
"id": "env:delete",
|
|
4095
4190
|
"pluginAlias": "eas-cli",
|
|
4096
4191
|
"pluginName": "eas-cli",
|
|
4097
4192
|
"pluginType": "core",
|
|
@@ -4145,41 +4240,26 @@
|
|
|
4145
4240
|
"relativePath": [
|
|
4146
4241
|
"build",
|
|
4147
4242
|
"commands",
|
|
4148
|
-
"
|
|
4243
|
+
"env",
|
|
4149
4244
|
"delete.js"
|
|
4150
4245
|
]
|
|
4151
4246
|
},
|
|
4152
|
-
"
|
|
4247
|
+
"env:exec": {
|
|
4153
4248
|
"aliases": [],
|
|
4154
|
-
"args": {
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
"
|
|
4159
|
-
"hasDynamicHelp": false,
|
|
4160
|
-
"multiple": false,
|
|
4161
|
-
"type": "option"
|
|
4162
|
-
},
|
|
4163
|
-
"offset": {
|
|
4164
|
-
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
4165
|
-
"name": "offset",
|
|
4166
|
-
"hasDynamicHelp": false,
|
|
4167
|
-
"multiple": false,
|
|
4168
|
-
"type": "option"
|
|
4169
|
-
},
|
|
4170
|
-
"limit": {
|
|
4171
|
-
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
4172
|
-
"name": "limit",
|
|
4173
|
-
"hasDynamicHelp": false,
|
|
4174
|
-
"multiple": false,
|
|
4175
|
-
"type": "option"
|
|
4176
|
-
},
|
|
4177
|
-
"json": {
|
|
4178
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4179
|
-
"name": "json",
|
|
4180
|
-
"allowNo": false,
|
|
4181
|
-
"type": "boolean"
|
|
4249
|
+
"args": {
|
|
4250
|
+
"environment": {
|
|
4251
|
+
"description": "Environment to execute the command in. Default environments are 'production', 'preview', and 'development'.",
|
|
4252
|
+
"name": "environment",
|
|
4253
|
+
"required": true
|
|
4182
4254
|
},
|
|
4255
|
+
"bash_command": {
|
|
4256
|
+
"description": "bash command to execute with the environment variables from the environment",
|
|
4257
|
+
"name": "bash_command",
|
|
4258
|
+
"required": true
|
|
4259
|
+
}
|
|
4260
|
+
},
|
|
4261
|
+
"description": "execute a command with environment variables from the selected environment",
|
|
4262
|
+
"flags": {
|
|
4183
4263
|
"non-interactive": {
|
|
4184
4264
|
"description": "Run the command in non-interactive mode.",
|
|
4185
4265
|
"name": "non-interactive",
|
|
@@ -4190,7 +4270,7 @@
|
|
|
4190
4270
|
},
|
|
4191
4271
|
"hasDynamicHelp": false,
|
|
4192
4272
|
"hiddenAliases": [],
|
|
4193
|
-
"id": "
|
|
4273
|
+
"id": "env:exec",
|
|
4194
4274
|
"pluginAlias": "eas-cli",
|
|
4195
4275
|
"pluginName": "eas-cli",
|
|
4196
4276
|
"pluginType": "core",
|
|
@@ -4244,41 +4324,58 @@
|
|
|
4244
4324
|
"relativePath": [
|
|
4245
4325
|
"build",
|
|
4246
4326
|
"commands",
|
|
4247
|
-
"
|
|
4248
|
-
"
|
|
4327
|
+
"env",
|
|
4328
|
+
"exec.js"
|
|
4249
4329
|
]
|
|
4250
4330
|
},
|
|
4251
|
-
"
|
|
4331
|
+
"env:get": {
|
|
4252
4332
|
"aliases": [],
|
|
4253
|
-
"args": {
|
|
4254
|
-
|
|
4333
|
+
"args": {
|
|
4334
|
+
"environment": {
|
|
4335
|
+
"description": "Current environment of the variable. Default environments are 'production', 'preview', and 'development'.",
|
|
4336
|
+
"name": "environment",
|
|
4337
|
+
"required": false
|
|
4338
|
+
}
|
|
4339
|
+
},
|
|
4340
|
+
"description": "view an environment variable for the current project or account",
|
|
4255
4341
|
"flags": {
|
|
4256
|
-
"
|
|
4257
|
-
"description": "
|
|
4258
|
-
"name": "
|
|
4342
|
+
"variable-name": {
|
|
4343
|
+
"description": "Name of the variable",
|
|
4344
|
+
"name": "variable-name",
|
|
4259
4345
|
"hasDynamicHelp": false,
|
|
4260
4346
|
"multiple": false,
|
|
4261
4347
|
"type": "option"
|
|
4262
4348
|
},
|
|
4263
|
-
"
|
|
4264
|
-
"description": "
|
|
4265
|
-
"name": "
|
|
4349
|
+
"variable-environment": {
|
|
4350
|
+
"description": "Current environment of the variable",
|
|
4351
|
+
"name": "variable-environment",
|
|
4266
4352
|
"hasDynamicHelp": false,
|
|
4267
4353
|
"multiple": false,
|
|
4268
4354
|
"type": "option"
|
|
4269
4355
|
},
|
|
4270
|
-
"
|
|
4271
|
-
"description": "
|
|
4272
|
-
"name": "
|
|
4356
|
+
"format": {
|
|
4357
|
+
"description": "Output format",
|
|
4358
|
+
"name": "format",
|
|
4359
|
+
"default": "short",
|
|
4273
4360
|
"hasDynamicHelp": false,
|
|
4274
4361
|
"multiple": false,
|
|
4362
|
+
"options": [
|
|
4363
|
+
"long",
|
|
4364
|
+
"short"
|
|
4365
|
+
],
|
|
4275
4366
|
"type": "option"
|
|
4276
4367
|
},
|
|
4277
|
-
"
|
|
4278
|
-
"description": "
|
|
4279
|
-
"name": "
|
|
4280
|
-
"
|
|
4281
|
-
"
|
|
4368
|
+
"scope": {
|
|
4369
|
+
"description": "Scope for the variable",
|
|
4370
|
+
"name": "scope",
|
|
4371
|
+
"default": "project",
|
|
4372
|
+
"hasDynamicHelp": false,
|
|
4373
|
+
"multiple": false,
|
|
4374
|
+
"options": [
|
|
4375
|
+
"project",
|
|
4376
|
+
"account"
|
|
4377
|
+
],
|
|
4378
|
+
"type": "option"
|
|
4282
4379
|
},
|
|
4283
4380
|
"non-interactive": {
|
|
4284
4381
|
"description": "Run the command in non-interactive mode.",
|
|
@@ -4290,7 +4387,7 @@
|
|
|
4290
4387
|
},
|
|
4291
4388
|
"hasDynamicHelp": false,
|
|
4292
4389
|
"hiddenAliases": [],
|
|
4293
|
-
"id": "
|
|
4390
|
+
"id": "env:get",
|
|
4294
4391
|
"pluginAlias": "eas-cli",
|
|
4295
4392
|
"pluginName": "eas-cli",
|
|
4296
4393
|
"pluginType": "core",
|
|
@@ -4344,22 +4441,68 @@
|
|
|
4344
4441
|
"relativePath": [
|
|
4345
4442
|
"build",
|
|
4346
4443
|
"commands",
|
|
4347
|
-
"
|
|
4348
|
-
"
|
|
4444
|
+
"env",
|
|
4445
|
+
"get.js"
|
|
4349
4446
|
]
|
|
4350
4447
|
},
|
|
4351
|
-
"
|
|
4448
|
+
"env:list": {
|
|
4352
4449
|
"aliases": [],
|
|
4353
4450
|
"args": {
|
|
4354
|
-
"
|
|
4355
|
-
"
|
|
4451
|
+
"environment": {
|
|
4452
|
+
"description": "Environment to list the variables from. Default environments are 'production', 'preview', and 'development'.",
|
|
4453
|
+
"name": "environment",
|
|
4454
|
+
"required": false
|
|
4455
|
+
}
|
|
4456
|
+
},
|
|
4457
|
+
"description": "list environment variables for the current project or account",
|
|
4458
|
+
"flags": {
|
|
4459
|
+
"include-sensitive": {
|
|
4460
|
+
"description": "Display sensitive values in the output",
|
|
4461
|
+
"name": "include-sensitive",
|
|
4462
|
+
"allowNo": false,
|
|
4463
|
+
"type": "boolean"
|
|
4464
|
+
},
|
|
4465
|
+
"include-file-content": {
|
|
4466
|
+
"description": "Display files content in the output",
|
|
4467
|
+
"name": "include-file-content",
|
|
4468
|
+
"allowNo": false,
|
|
4469
|
+
"type": "boolean"
|
|
4470
|
+
},
|
|
4471
|
+
"environment": {
|
|
4472
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4473
|
+
"name": "environment",
|
|
4474
|
+
"hasDynamicHelp": false,
|
|
4475
|
+
"multiple": true,
|
|
4476
|
+
"type": "option"
|
|
4477
|
+
},
|
|
4478
|
+
"format": {
|
|
4479
|
+
"description": "Output format",
|
|
4480
|
+
"name": "format",
|
|
4481
|
+
"default": "short",
|
|
4482
|
+
"hasDynamicHelp": false,
|
|
4483
|
+
"multiple": false,
|
|
4484
|
+
"options": [
|
|
4485
|
+
"long",
|
|
4486
|
+
"short"
|
|
4487
|
+
],
|
|
4488
|
+
"type": "option"
|
|
4489
|
+
},
|
|
4490
|
+
"scope": {
|
|
4491
|
+
"description": "Scope for the variable",
|
|
4492
|
+
"name": "scope",
|
|
4493
|
+
"default": "project",
|
|
4494
|
+
"hasDynamicHelp": false,
|
|
4495
|
+
"multiple": false,
|
|
4496
|
+
"options": [
|
|
4497
|
+
"project",
|
|
4498
|
+
"account"
|
|
4499
|
+
],
|
|
4500
|
+
"type": "option"
|
|
4356
4501
|
}
|
|
4357
4502
|
},
|
|
4358
|
-
"description": "view a device for your project",
|
|
4359
|
-
"flags": {},
|
|
4360
4503
|
"hasDynamicHelp": false,
|
|
4361
4504
|
"hiddenAliases": [],
|
|
4362
|
-
"id": "
|
|
4505
|
+
"id": "env:list",
|
|
4363
4506
|
"pluginAlias": "eas-cli",
|
|
4364
4507
|
"pluginName": "eas-cli",
|
|
4365
4508
|
"pluginType": "core",
|
|
@@ -4413,42 +4556,50 @@
|
|
|
4413
4556
|
"relativePath": [
|
|
4414
4557
|
"build",
|
|
4415
4558
|
"commands",
|
|
4416
|
-
"
|
|
4417
|
-
"
|
|
4559
|
+
"env",
|
|
4560
|
+
"list.js"
|
|
4418
4561
|
]
|
|
4419
4562
|
},
|
|
4420
|
-
"
|
|
4421
|
-
"aliases": [
|
|
4422
|
-
"worker:delete"
|
|
4423
|
-
],
|
|
4563
|
+
"env:pull": {
|
|
4564
|
+
"aliases": [],
|
|
4424
4565
|
"args": {
|
|
4425
|
-
"
|
|
4426
|
-
"
|
|
4566
|
+
"environment": {
|
|
4567
|
+
"description": "Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.",
|
|
4568
|
+
"name": "environment",
|
|
4569
|
+
"required": false
|
|
4427
4570
|
}
|
|
4428
4571
|
},
|
|
4429
|
-
"description": "
|
|
4572
|
+
"description": "pull environment variables for the selected environment to .env file",
|
|
4430
4573
|
"flags": {
|
|
4431
|
-
"json": {
|
|
4432
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4433
|
-
"name": "json",
|
|
4434
|
-
"allowNo": false,
|
|
4435
|
-
"type": "boolean"
|
|
4436
|
-
},
|
|
4437
4574
|
"non-interactive": {
|
|
4438
4575
|
"description": "Run the command in non-interactive mode.",
|
|
4439
4576
|
"name": "non-interactive",
|
|
4440
4577
|
"noCacheDefault": true,
|
|
4441
4578
|
"allowNo": false,
|
|
4442
4579
|
"type": "boolean"
|
|
4580
|
+
},
|
|
4581
|
+
"environment": {
|
|
4582
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4583
|
+
"name": "environment",
|
|
4584
|
+
"hasDynamicHelp": false,
|
|
4585
|
+
"multiple": false,
|
|
4586
|
+
"type": "option"
|
|
4587
|
+
},
|
|
4588
|
+
"path": {
|
|
4589
|
+
"description": "Path to the result `.env` file",
|
|
4590
|
+
"name": "path",
|
|
4591
|
+
"default": ".env.local",
|
|
4592
|
+
"hasDynamicHelp": false,
|
|
4593
|
+
"multiple": false,
|
|
4594
|
+
"type": "option"
|
|
4443
4595
|
}
|
|
4444
4596
|
},
|
|
4445
4597
|
"hasDynamicHelp": false,
|
|
4446
4598
|
"hiddenAliases": [],
|
|
4447
|
-
"id": "
|
|
4599
|
+
"id": "env:pull",
|
|
4448
4600
|
"pluginAlias": "eas-cli",
|
|
4449
4601
|
"pluginName": "eas-cli",
|
|
4450
4602
|
"pluginType": "core",
|
|
4451
|
-
"state": "preview",
|
|
4452
4603
|
"strict": true,
|
|
4453
4604
|
"enableJsonFlag": false,
|
|
4454
4605
|
"ContextOptions": {
|
|
@@ -4492,105 +4643,58 @@
|
|
|
4492
4643
|
}
|
|
4493
4644
|
},
|
|
4494
4645
|
"contextDefinition": {
|
|
4495
|
-
"
|
|
4496
|
-
"
|
|
4497
|
-
"projectDir": {}
|
|
4498
|
-
"loggedIn": {}
|
|
4646
|
+
"projectId": {},
|
|
4647
|
+
"loggedIn": {},
|
|
4648
|
+
"projectDir": {}
|
|
4499
4649
|
},
|
|
4500
4650
|
"isESM": false,
|
|
4501
4651
|
"relativePath": [
|
|
4502
4652
|
"build",
|
|
4503
4653
|
"commands",
|
|
4504
|
-
"
|
|
4505
|
-
"
|
|
4654
|
+
"env",
|
|
4655
|
+
"pull.js"
|
|
4506
4656
|
]
|
|
4507
4657
|
},
|
|
4508
|
-
"
|
|
4509
|
-
"aliases": [
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
4658
|
+
"env:push": {
|
|
4659
|
+
"aliases": [],
|
|
4660
|
+
"args": {
|
|
4661
|
+
"environment": {
|
|
4662
|
+
"description": "Environment to push variables to. Default environments are 'production', 'preview', and 'development'.",
|
|
4663
|
+
"name": "environment",
|
|
4664
|
+
"required": false
|
|
4665
|
+
}
|
|
4666
|
+
},
|
|
4667
|
+
"description": "push environment variables from .env file to the selected environment",
|
|
4514
4668
|
"flags": {
|
|
4515
|
-
"prod": {
|
|
4516
|
-
"aliases": [
|
|
4517
|
-
"production"
|
|
4518
|
-
],
|
|
4519
|
-
"description": "Create a new production deployment.",
|
|
4520
|
-
"name": "prod",
|
|
4521
|
-
"allowNo": false,
|
|
4522
|
-
"type": "boolean"
|
|
4523
|
-
},
|
|
4524
|
-
"alias": {
|
|
4525
|
-
"description": "Custom alias to assign to the new deployment.",
|
|
4526
|
-
"name": "alias",
|
|
4527
|
-
"hasDynamicHelp": false,
|
|
4528
|
-
"helpValue": "name",
|
|
4529
|
-
"multiple": false,
|
|
4530
|
-
"type": "option"
|
|
4531
|
-
},
|
|
4532
|
-
"id": {
|
|
4533
|
-
"description": "Custom unique identifier for the new deployment.",
|
|
4534
|
-
"name": "id",
|
|
4535
|
-
"hasDynamicHelp": false,
|
|
4536
|
-
"helpValue": "xyz123",
|
|
4537
|
-
"multiple": false,
|
|
4538
|
-
"type": "option"
|
|
4539
|
-
},
|
|
4540
|
-
"export-dir": {
|
|
4541
|
-
"description": "Directory where the Expo project was exported.",
|
|
4542
|
-
"name": "export-dir",
|
|
4543
|
-
"default": "dist",
|
|
4544
|
-
"hasDynamicHelp": false,
|
|
4545
|
-
"helpValue": "dir",
|
|
4546
|
-
"multiple": false,
|
|
4547
|
-
"type": "option"
|
|
4548
|
-
},
|
|
4549
|
-
"dry-run": {
|
|
4550
|
-
"description": "Outputs a tarball of the new deployment instead of uploading it.",
|
|
4551
|
-
"name": "dry-run",
|
|
4552
|
-
"allowNo": false,
|
|
4553
|
-
"type": "boolean"
|
|
4554
|
-
},
|
|
4555
|
-
"source-maps": {
|
|
4556
|
-
"description": "Include source maps in the deployment.",
|
|
4557
|
-
"name": "source-maps",
|
|
4558
|
-
"allowNo": true,
|
|
4559
|
-
"type": "boolean"
|
|
4560
|
-
},
|
|
4561
4669
|
"environment": {
|
|
4562
4670
|
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4563
4671
|
"name": "environment",
|
|
4564
4672
|
"hasDynamicHelp": false,
|
|
4565
|
-
"multiple":
|
|
4673
|
+
"multiple": true,
|
|
4566
4674
|
"type": "option"
|
|
4567
4675
|
},
|
|
4568
|
-
"
|
|
4569
|
-
"description": "
|
|
4570
|
-
"name": "
|
|
4571
|
-
"
|
|
4572
|
-
"
|
|
4676
|
+
"path": {
|
|
4677
|
+
"description": "Path to the input `.env` file",
|
|
4678
|
+
"name": "path",
|
|
4679
|
+
"default": ".env.local",
|
|
4680
|
+
"hasDynamicHelp": false,
|
|
4681
|
+
"multiple": false,
|
|
4682
|
+
"type": "option"
|
|
4573
4683
|
},
|
|
4574
|
-
"
|
|
4575
|
-
"description": "
|
|
4576
|
-
"name": "
|
|
4577
|
-
"noCacheDefault": true,
|
|
4684
|
+
"force": {
|
|
4685
|
+
"description": "Skip confirmation and automatically override existing variables",
|
|
4686
|
+
"name": "force",
|
|
4578
4687
|
"allowNo": false,
|
|
4579
4688
|
"type": "boolean"
|
|
4580
4689
|
}
|
|
4581
4690
|
},
|
|
4582
4691
|
"hasDynamicHelp": false,
|
|
4583
4692
|
"hiddenAliases": [],
|
|
4584
|
-
"id": "
|
|
4693
|
+
"id": "env:push",
|
|
4585
4694
|
"pluginAlias": "eas-cli",
|
|
4586
4695
|
"pluginName": "eas-cli",
|
|
4587
4696
|
"pluginType": "core",
|
|
4588
|
-
"state": "preview",
|
|
4589
4697
|
"strict": true,
|
|
4590
|
-
"usage": [
|
|
4591
|
-
"deploy [options]",
|
|
4592
|
-
"deploy --prod"
|
|
4593
|
-
],
|
|
4594
4698
|
"enableJsonFlag": false,
|
|
4595
4699
|
"ContextOptions": {
|
|
4596
4700
|
"LoggedIn": {
|
|
@@ -4633,50 +4737,56 @@
|
|
|
4633
4737
|
}
|
|
4634
4738
|
},
|
|
4635
4739
|
"contextDefinition": {
|
|
4636
|
-
"
|
|
4637
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
4638
|
-
"projectDir": {},
|
|
4740
|
+
"projectId": {},
|
|
4639
4741
|
"loggedIn": {}
|
|
4640
4742
|
},
|
|
4641
4743
|
"isESM": false,
|
|
4642
4744
|
"relativePath": [
|
|
4643
4745
|
"build",
|
|
4644
4746
|
"commands",
|
|
4645
|
-
"
|
|
4646
|
-
"
|
|
4747
|
+
"env",
|
|
4748
|
+
"push.js"
|
|
4647
4749
|
]
|
|
4648
4750
|
},
|
|
4649
|
-
"env:
|
|
4751
|
+
"env:update": {
|
|
4650
4752
|
"aliases": [],
|
|
4651
4753
|
"args": {
|
|
4652
4754
|
"environment": {
|
|
4653
|
-
"description": "
|
|
4755
|
+
"description": "Current environment of the variable to update. Default environments are 'production', 'preview', and 'development'.",
|
|
4654
4756
|
"name": "environment",
|
|
4655
4757
|
"required": false
|
|
4656
4758
|
}
|
|
4657
4759
|
},
|
|
4658
|
-
"description": "
|
|
4760
|
+
"description": "update an environment variable on the current project or account",
|
|
4659
4761
|
"flags": {
|
|
4762
|
+
"variable-name": {
|
|
4763
|
+
"description": "Current name of the variable",
|
|
4764
|
+
"name": "variable-name",
|
|
4765
|
+
"hasDynamicHelp": false,
|
|
4766
|
+
"multiple": false,
|
|
4767
|
+
"type": "option"
|
|
4768
|
+
},
|
|
4769
|
+
"variable-environment": {
|
|
4770
|
+
"description": "Current environment of the variable to update",
|
|
4771
|
+
"name": "variable-environment",
|
|
4772
|
+
"hasDynamicHelp": false,
|
|
4773
|
+
"multiple": false,
|
|
4774
|
+
"type": "option"
|
|
4775
|
+
},
|
|
4660
4776
|
"name": {
|
|
4661
|
-
"description": "
|
|
4777
|
+
"description": "New name of the variable",
|
|
4662
4778
|
"name": "name",
|
|
4663
4779
|
"hasDynamicHelp": false,
|
|
4664
4780
|
"multiple": false,
|
|
4665
4781
|
"type": "option"
|
|
4666
4782
|
},
|
|
4667
4783
|
"value": {
|
|
4668
|
-
"description": "
|
|
4784
|
+
"description": "New value or the variable",
|
|
4669
4785
|
"name": "value",
|
|
4670
4786
|
"hasDynamicHelp": false,
|
|
4671
4787
|
"multiple": false,
|
|
4672
4788
|
"type": "option"
|
|
4673
4789
|
},
|
|
4674
|
-
"force": {
|
|
4675
|
-
"description": "Overwrite existing variable",
|
|
4676
|
-
"name": "force",
|
|
4677
|
-
"allowNo": false,
|
|
4678
|
-
"type": "boolean"
|
|
4679
|
-
},
|
|
4680
4790
|
"type": {
|
|
4681
4791
|
"description": "The type of variable",
|
|
4682
4792
|
"name": "type",
|
|
@@ -4729,7 +4839,7 @@
|
|
|
4729
4839
|
},
|
|
4730
4840
|
"hasDynamicHelp": false,
|
|
4731
4841
|
"hiddenAliases": [],
|
|
4732
|
-
"id": "env:
|
|
4842
|
+
"id": "env:update",
|
|
4733
4843
|
"pluginAlias": "eas-cli",
|
|
4734
4844
|
"pluginName": "eas-cli",
|
|
4735
4845
|
"pluginType": "core",
|
|
@@ -4785,130 +4895,74 @@
|
|
|
4785
4895
|
"build",
|
|
4786
4896
|
"commands",
|
|
4787
4897
|
"env",
|
|
4788
|
-
"
|
|
4898
|
+
"update.js"
|
|
4789
4899
|
]
|
|
4790
4900
|
},
|
|
4791
|
-
"
|
|
4901
|
+
"fingerprint:compare": {
|
|
4792
4902
|
"aliases": [],
|
|
4793
4903
|
"args": {
|
|
4794
|
-
"
|
|
4795
|
-
"description": "
|
|
4796
|
-
"name": "
|
|
4904
|
+
"hash1": {
|
|
4905
|
+
"description": "If provided alone, HASH1 is compared against the current project's fingerprint.",
|
|
4906
|
+
"name": "hash1",
|
|
4907
|
+
"required": false
|
|
4908
|
+
},
|
|
4909
|
+
"hash2": {
|
|
4910
|
+
"description": "If two hashes are provided, HASH1 is compared against HASH2.",
|
|
4911
|
+
"name": "hash2",
|
|
4797
4912
|
"required": false
|
|
4798
4913
|
}
|
|
4799
4914
|
},
|
|
4800
|
-
"description": "
|
|
4801
|
-
"
|
|
4802
|
-
"
|
|
4803
|
-
|
|
4804
|
-
|
|
4805
|
-
|
|
4806
|
-
|
|
4807
|
-
|
|
4808
|
-
|
|
4809
|
-
"
|
|
4810
|
-
|
|
4811
|
-
|
|
4915
|
+
"description": "compare fingerprints of the current project, builds, and updates",
|
|
4916
|
+
"examples": [
|
|
4917
|
+
"$ eas fingerprint:compare \t # Compare fingerprints in interactive mode",
|
|
4918
|
+
"$ eas fingerprint:compare <FINGERPRINT-HASH> \t # Compare fingerprint against local directory",
|
|
4919
|
+
"$ eas fingerprint:compare <FINGERPRINT-HASH-1> <FINGERPRINT-HASH-2> \t # Compare provided fingerprints",
|
|
4920
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID> \t # Compare fingerprint from build against local directory",
|
|
4921
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID> --environment production \t # Compare fingerprint from build against local directory with the \"production\" environment",
|
|
4922
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2>\t # Compare fingerprint from a build against another build",
|
|
4923
|
+
"$ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID>\t # Compare fingerprint from build against fingerprint from update",
|
|
4924
|
+
"$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> \t # Compare fingerprint from update against provided fingerprint"
|
|
4925
|
+
],
|
|
4926
|
+
"flags": {
|
|
4927
|
+
"build-id": {
|
|
4928
|
+
"aliases": [
|
|
4929
|
+
"buildId"
|
|
4930
|
+
],
|
|
4931
|
+
"description": "Compare the fingerprint with the build with the specified ID",
|
|
4932
|
+
"name": "build-id",
|
|
4812
4933
|
"hasDynamicHelp": false,
|
|
4813
|
-
"multiple":
|
|
4934
|
+
"multiple": true,
|
|
4814
4935
|
"type": "option"
|
|
4815
4936
|
},
|
|
4816
|
-
"
|
|
4817
|
-
"
|
|
4818
|
-
|
|
4819
|
-
"default": "project",
|
|
4820
|
-
"hasDynamicHelp": false,
|
|
4821
|
-
"multiple": false,
|
|
4822
|
-
"options": [
|
|
4823
|
-
"project",
|
|
4824
|
-
"account"
|
|
4937
|
+
"update-id": {
|
|
4938
|
+
"aliases": [
|
|
4939
|
+
"updateId"
|
|
4825
4940
|
],
|
|
4941
|
+
"description": "Compare the fingerprint with the update with the specified ID",
|
|
4942
|
+
"name": "update-id",
|
|
4943
|
+
"hasDynamicHelp": false,
|
|
4944
|
+
"multiple": true,
|
|
4826
4945
|
"type": "option"
|
|
4827
4946
|
},
|
|
4828
|
-
"
|
|
4829
|
-
"description": "
|
|
4830
|
-
"name": "
|
|
4831
|
-
"noCacheDefault": true,
|
|
4947
|
+
"open": {
|
|
4948
|
+
"description": "Open the fingerprint comparison in the browser",
|
|
4949
|
+
"name": "open",
|
|
4832
4950
|
"allowNo": false,
|
|
4833
4951
|
"type": "boolean"
|
|
4834
|
-
}
|
|
4835
|
-
},
|
|
4836
|
-
"hasDynamicHelp": false,
|
|
4837
|
-
"hiddenAliases": [],
|
|
4838
|
-
"id": "env:delete",
|
|
4839
|
-
"pluginAlias": "eas-cli",
|
|
4840
|
-
"pluginName": "eas-cli",
|
|
4841
|
-
"pluginType": "core",
|
|
4842
|
-
"strict": true,
|
|
4843
|
-
"enableJsonFlag": false,
|
|
4844
|
-
"ContextOptions": {
|
|
4845
|
-
"LoggedIn": {
|
|
4846
|
-
"loggedIn": {}
|
|
4847
4952
|
},
|
|
4848
|
-
"MaybeLoggedIn": {
|
|
4849
|
-
"maybeLoggedIn": {}
|
|
4850
|
-
},
|
|
4851
|
-
"DynamicLoggedIn": {
|
|
4852
|
-
"getDynamicLoggedInAsync": {}
|
|
4853
|
-
},
|
|
4854
|
-
"SessionManagment": {
|
|
4855
|
-
"sessionManager": {}
|
|
4856
|
-
},
|
|
4857
|
-
"OptionalProjectConfig": {
|
|
4858
|
-
"optionalPrivateProjectConfig": {}
|
|
4859
|
-
},
|
|
4860
|
-
"ProjectDir": {
|
|
4861
|
-
"projectDir": {}
|
|
4862
|
-
},
|
|
4863
|
-
"DynamicProjectConfig": {
|
|
4864
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
4865
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
4866
|
-
},
|
|
4867
|
-
"ProjectConfig": {
|
|
4868
|
-
"loggedIn": {},
|
|
4869
|
-
"privateProjectConfig": {}
|
|
4870
|
-
},
|
|
4871
|
-
"Analytics": {
|
|
4872
|
-
"analytics": {}
|
|
4873
|
-
},
|
|
4874
|
-
"Vcs": {
|
|
4875
|
-
"vcsClient": {}
|
|
4876
|
-
},
|
|
4877
|
-
"ServerSideEnvironmentVariables": {
|
|
4878
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
4879
|
-
},
|
|
4880
|
-
"ProjectId": {
|
|
4881
|
-
"projectId": {}
|
|
4882
|
-
}
|
|
4883
|
-
},
|
|
4884
|
-
"contextDefinition": {
|
|
4885
|
-
"projectId": {},
|
|
4886
|
-
"loggedIn": {}
|
|
4887
|
-
},
|
|
4888
|
-
"isESM": false,
|
|
4889
|
-
"relativePath": [
|
|
4890
|
-
"build",
|
|
4891
|
-
"commands",
|
|
4892
|
-
"env",
|
|
4893
|
-
"delete.js"
|
|
4894
|
-
]
|
|
4895
|
-
},
|
|
4896
|
-
"env:exec": {
|
|
4897
|
-
"aliases": [],
|
|
4898
|
-
"args": {
|
|
4899
4953
|
"environment": {
|
|
4900
|
-
"description": "
|
|
4954
|
+
"description": "If generating a fingerprint from the local directory, use the specified environment.",
|
|
4901
4955
|
"name": "environment",
|
|
4902
|
-
"
|
|
4956
|
+
"hasDynamicHelp": false,
|
|
4957
|
+
"multiple": false,
|
|
4958
|
+
"type": "option"
|
|
4959
|
+
},
|
|
4960
|
+
"json": {
|
|
4961
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4962
|
+
"name": "json",
|
|
4963
|
+
"allowNo": false,
|
|
4964
|
+
"type": "boolean"
|
|
4903
4965
|
},
|
|
4904
|
-
"bash_command": {
|
|
4905
|
-
"description": "bash command to execute with the environment variables from the environment",
|
|
4906
|
-
"name": "bash_command",
|
|
4907
|
-
"required": true
|
|
4908
|
-
}
|
|
4909
|
-
},
|
|
4910
|
-
"description": "execute a command with environment variables from the selected environment",
|
|
4911
|
-
"flags": {
|
|
4912
4966
|
"non-interactive": {
|
|
4913
4967
|
"description": "Run the command in non-interactive mode.",
|
|
4914
4968
|
"name": "non-interactive",
|
|
@@ -4919,11 +4973,11 @@
|
|
|
4919
4973
|
},
|
|
4920
4974
|
"hasDynamicHelp": false,
|
|
4921
4975
|
"hiddenAliases": [],
|
|
4922
|
-
"id": "
|
|
4976
|
+
"id": "fingerprint:compare",
|
|
4923
4977
|
"pluginAlias": "eas-cli",
|
|
4924
4978
|
"pluginName": "eas-cli",
|
|
4925
4979
|
"pluginType": "core",
|
|
4926
|
-
"strict":
|
|
4980
|
+
"strict": false,
|
|
4927
4981
|
"enableJsonFlag": false,
|
|
4928
4982
|
"ContextOptions": {
|
|
4929
4983
|
"LoggedIn": {
|
|
@@ -4967,65 +5021,68 @@
|
|
|
4967
5021
|
},
|
|
4968
5022
|
"contextDefinition": {
|
|
4969
5023
|
"projectId": {},
|
|
4970
|
-
"loggedIn": {}
|
|
5024
|
+
"loggedIn": {},
|
|
5025
|
+
"privateProjectConfig": {},
|
|
5026
|
+
"vcsClient": {},
|
|
5027
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
4971
5028
|
},
|
|
4972
5029
|
"isESM": false,
|
|
4973
5030
|
"relativePath": [
|
|
4974
5031
|
"build",
|
|
4975
5032
|
"commands",
|
|
4976
|
-
"
|
|
4977
|
-
"
|
|
5033
|
+
"fingerprint",
|
|
5034
|
+
"compare.js"
|
|
4978
5035
|
]
|
|
4979
5036
|
},
|
|
4980
|
-
"
|
|
5037
|
+
"fingerprint:generate": {
|
|
4981
5038
|
"aliases": [],
|
|
4982
|
-
"args": {
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
|
|
4989
|
-
|
|
5039
|
+
"args": {},
|
|
5040
|
+
"description": "generate fingerprints from the current project",
|
|
5041
|
+
"examples": [
|
|
5042
|
+
"$ eas fingerprint:generate \t # Generate fingerprint in interactive mode",
|
|
5043
|
+
"$ eas fingerprint:generate --build-profile preview \t # Generate a fingerprint using the \"preview\" build profile",
|
|
5044
|
+
"$ eas fingerprint:generate --environment preview \t # Generate a fingerprint using the \"preview\" environment",
|
|
5045
|
+
"$ eas fingerprint:generate --json --non-interactive --platform android \t # Output fingerprint json to stdout"
|
|
5046
|
+
],
|
|
4990
5047
|
"flags": {
|
|
4991
|
-
"
|
|
4992
|
-
"
|
|
4993
|
-
"name": "
|
|
5048
|
+
"platform": {
|
|
5049
|
+
"char": "p",
|
|
5050
|
+
"name": "platform",
|
|
4994
5051
|
"hasDynamicHelp": false,
|
|
4995
5052
|
"multiple": false,
|
|
5053
|
+
"options": [
|
|
5054
|
+
"android",
|
|
5055
|
+
"ios"
|
|
5056
|
+
],
|
|
4996
5057
|
"type": "option"
|
|
4997
5058
|
},
|
|
4998
|
-
"
|
|
4999
|
-
"description": "
|
|
5000
|
-
"
|
|
5059
|
+
"environment": {
|
|
5060
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5061
|
+
"exclusive": [
|
|
5062
|
+
"build-profile"
|
|
5063
|
+
],
|
|
5064
|
+
"name": "environment",
|
|
5001
5065
|
"hasDynamicHelp": false,
|
|
5002
5066
|
"multiple": false,
|
|
5003
5067
|
"type": "option"
|
|
5004
5068
|
},
|
|
5005
|
-
"
|
|
5006
|
-
"
|
|
5007
|
-
"
|
|
5008
|
-
"
|
|
5009
|
-
|
|
5010
|
-
"multiple": false,
|
|
5011
|
-
"options": [
|
|
5012
|
-
"long",
|
|
5013
|
-
"short"
|
|
5069
|
+
"build-profile": {
|
|
5070
|
+
"char": "e",
|
|
5071
|
+
"description": "Name of the build profile from eas.json.",
|
|
5072
|
+
"exclusive": [
|
|
5073
|
+
"environment"
|
|
5014
5074
|
],
|
|
5015
|
-
"
|
|
5016
|
-
},
|
|
5017
|
-
"scope": {
|
|
5018
|
-
"description": "Scope for the variable",
|
|
5019
|
-
"name": "scope",
|
|
5020
|
-
"default": "project",
|
|
5075
|
+
"name": "build-profile",
|
|
5021
5076
|
"hasDynamicHelp": false,
|
|
5022
5077
|
"multiple": false,
|
|
5023
|
-
"options": [
|
|
5024
|
-
"project",
|
|
5025
|
-
"account"
|
|
5026
|
-
],
|
|
5027
5078
|
"type": "option"
|
|
5028
5079
|
},
|
|
5080
|
+
"json": {
|
|
5081
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5082
|
+
"name": "json",
|
|
5083
|
+
"allowNo": false,
|
|
5084
|
+
"type": "boolean"
|
|
5085
|
+
},
|
|
5029
5086
|
"non-interactive": {
|
|
5030
5087
|
"description": "Run the command in non-interactive mode.",
|
|
5031
5088
|
"name": "non-interactive",
|
|
@@ -5036,11 +5093,11 @@
|
|
|
5036
5093
|
},
|
|
5037
5094
|
"hasDynamicHelp": false,
|
|
5038
5095
|
"hiddenAliases": [],
|
|
5039
|
-
"id": "
|
|
5096
|
+
"id": "fingerprint:generate",
|
|
5040
5097
|
"pluginAlias": "eas-cli",
|
|
5041
5098
|
"pluginName": "eas-cli",
|
|
5042
5099
|
"pluginType": "core",
|
|
5043
|
-
"strict":
|
|
5100
|
+
"strict": false,
|
|
5044
5101
|
"enableJsonFlag": false,
|
|
5045
5102
|
"ContextOptions": {
|
|
5046
5103
|
"LoggedIn": {
|
|
@@ -5084,74 +5141,29 @@
|
|
|
5084
5141
|
},
|
|
5085
5142
|
"contextDefinition": {
|
|
5086
5143
|
"projectId": {},
|
|
5087
|
-
"loggedIn": {}
|
|
5144
|
+
"loggedIn": {},
|
|
5145
|
+
"privateProjectConfig": {},
|
|
5146
|
+
"vcsClient": {},
|
|
5147
|
+
"getServerSideEnvironmentVariablesAsync": {},
|
|
5148
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
5149
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
5088
5150
|
},
|
|
5089
5151
|
"isESM": false,
|
|
5090
5152
|
"relativePath": [
|
|
5091
5153
|
"build",
|
|
5092
5154
|
"commands",
|
|
5093
|
-
"
|
|
5094
|
-
"
|
|
5155
|
+
"fingerprint",
|
|
5156
|
+
"generate.js"
|
|
5095
5157
|
]
|
|
5096
5158
|
},
|
|
5097
|
-
"
|
|
5159
|
+
"device:create": {
|
|
5098
5160
|
"aliases": [],
|
|
5099
|
-
"args": {
|
|
5100
|
-
|
|
5101
|
-
|
|
5102
|
-
"name": "environment",
|
|
5103
|
-
"required": false
|
|
5104
|
-
}
|
|
5105
|
-
},
|
|
5106
|
-
"description": "list environment variables for the current project or account",
|
|
5107
|
-
"flags": {
|
|
5108
|
-
"include-sensitive": {
|
|
5109
|
-
"description": "Display sensitive values in the output",
|
|
5110
|
-
"name": "include-sensitive",
|
|
5111
|
-
"allowNo": false,
|
|
5112
|
-
"type": "boolean"
|
|
5113
|
-
},
|
|
5114
|
-
"include-file-content": {
|
|
5115
|
-
"description": "Display files content in the output",
|
|
5116
|
-
"name": "include-file-content",
|
|
5117
|
-
"allowNo": false,
|
|
5118
|
-
"type": "boolean"
|
|
5119
|
-
},
|
|
5120
|
-
"environment": {
|
|
5121
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5122
|
-
"name": "environment",
|
|
5123
|
-
"hasDynamicHelp": false,
|
|
5124
|
-
"multiple": true,
|
|
5125
|
-
"type": "option"
|
|
5126
|
-
},
|
|
5127
|
-
"format": {
|
|
5128
|
-
"description": "Output format",
|
|
5129
|
-
"name": "format",
|
|
5130
|
-
"default": "short",
|
|
5131
|
-
"hasDynamicHelp": false,
|
|
5132
|
-
"multiple": false,
|
|
5133
|
-
"options": [
|
|
5134
|
-
"long",
|
|
5135
|
-
"short"
|
|
5136
|
-
],
|
|
5137
|
-
"type": "option"
|
|
5138
|
-
},
|
|
5139
|
-
"scope": {
|
|
5140
|
-
"description": "Scope for the variable",
|
|
5141
|
-
"name": "scope",
|
|
5142
|
-
"default": "project",
|
|
5143
|
-
"hasDynamicHelp": false,
|
|
5144
|
-
"multiple": false,
|
|
5145
|
-
"options": [
|
|
5146
|
-
"project",
|
|
5147
|
-
"account"
|
|
5148
|
-
],
|
|
5149
|
-
"type": "option"
|
|
5150
|
-
}
|
|
5151
|
-
},
|
|
5161
|
+
"args": {},
|
|
5162
|
+
"description": "register new Apple Devices to use for internal distribution",
|
|
5163
|
+
"flags": {},
|
|
5152
5164
|
"hasDynamicHelp": false,
|
|
5153
5165
|
"hiddenAliases": [],
|
|
5154
|
-
"id": "
|
|
5166
|
+
"id": "device:create",
|
|
5155
5167
|
"pluginAlias": "eas-cli",
|
|
5156
5168
|
"pluginName": "eas-cli",
|
|
5157
5169
|
"pluginType": "core",
|
|
@@ -5198,54 +5210,53 @@
|
|
|
5198
5210
|
}
|
|
5199
5211
|
},
|
|
5200
5212
|
"contextDefinition": {
|
|
5201
|
-
"
|
|
5202
|
-
"
|
|
5213
|
+
"loggedIn": {},
|
|
5214
|
+
"optionalPrivateProjectConfig": {}
|
|
5203
5215
|
},
|
|
5204
5216
|
"isESM": false,
|
|
5205
5217
|
"relativePath": [
|
|
5206
5218
|
"build",
|
|
5207
5219
|
"commands",
|
|
5208
|
-
"
|
|
5209
|
-
"
|
|
5220
|
+
"device",
|
|
5221
|
+
"create.js"
|
|
5210
5222
|
]
|
|
5211
5223
|
},
|
|
5212
|
-
"
|
|
5224
|
+
"device:delete": {
|
|
5213
5225
|
"aliases": [],
|
|
5214
|
-
"args": {
|
|
5215
|
-
|
|
5216
|
-
"description": "Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.",
|
|
5217
|
-
"name": "environment",
|
|
5218
|
-
"required": false
|
|
5219
|
-
}
|
|
5220
|
-
},
|
|
5221
|
-
"description": "pull environment variables for the selected environment to .env file",
|
|
5226
|
+
"args": {},
|
|
5227
|
+
"description": "remove a registered device from your account",
|
|
5222
5228
|
"flags": {
|
|
5223
|
-
"
|
|
5224
|
-
"description": "
|
|
5225
|
-
"name": "
|
|
5226
|
-
"noCacheDefault": true,
|
|
5227
|
-
"allowNo": false,
|
|
5228
|
-
"type": "boolean"
|
|
5229
|
-
},
|
|
5230
|
-
"environment": {
|
|
5231
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5232
|
-
"name": "environment",
|
|
5229
|
+
"apple-team-id": {
|
|
5230
|
+
"description": "The Apple team ID on which to find the device",
|
|
5231
|
+
"name": "apple-team-id",
|
|
5233
5232
|
"hasDynamicHelp": false,
|
|
5234
5233
|
"multiple": false,
|
|
5235
5234
|
"type": "option"
|
|
5236
5235
|
},
|
|
5237
|
-
"
|
|
5238
|
-
"description": "
|
|
5239
|
-
"name": "
|
|
5240
|
-
"default": ".env.local",
|
|
5236
|
+
"udid": {
|
|
5237
|
+
"description": "The Apple device ID to disable",
|
|
5238
|
+
"name": "udid",
|
|
5241
5239
|
"hasDynamicHelp": false,
|
|
5242
5240
|
"multiple": false,
|
|
5243
5241
|
"type": "option"
|
|
5242
|
+
},
|
|
5243
|
+
"json": {
|
|
5244
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5245
|
+
"name": "json",
|
|
5246
|
+
"allowNo": false,
|
|
5247
|
+
"type": "boolean"
|
|
5248
|
+
},
|
|
5249
|
+
"non-interactive": {
|
|
5250
|
+
"description": "Run the command in non-interactive mode.",
|
|
5251
|
+
"name": "non-interactive",
|
|
5252
|
+
"noCacheDefault": true,
|
|
5253
|
+
"allowNo": false,
|
|
5254
|
+
"type": "boolean"
|
|
5244
5255
|
}
|
|
5245
5256
|
},
|
|
5246
5257
|
"hasDynamicHelp": false,
|
|
5247
5258
|
"hiddenAliases": [],
|
|
5248
|
-
"id": "
|
|
5259
|
+
"id": "device:delete",
|
|
5249
5260
|
"pluginAlias": "eas-cli",
|
|
5250
5261
|
"pluginName": "eas-cli",
|
|
5251
5262
|
"pluginType": "core",
|
|
@@ -5293,53 +5304,58 @@
|
|
|
5293
5304
|
},
|
|
5294
5305
|
"contextDefinition": {
|
|
5295
5306
|
"projectId": {},
|
|
5296
|
-
"loggedIn": {}
|
|
5297
|
-
"projectDir": {}
|
|
5307
|
+
"loggedIn": {}
|
|
5298
5308
|
},
|
|
5299
5309
|
"isESM": false,
|
|
5300
5310
|
"relativePath": [
|
|
5301
5311
|
"build",
|
|
5302
5312
|
"commands",
|
|
5303
|
-
"
|
|
5304
|
-
"
|
|
5313
|
+
"device",
|
|
5314
|
+
"delete.js"
|
|
5305
5315
|
]
|
|
5306
5316
|
},
|
|
5307
|
-
"
|
|
5317
|
+
"device:list": {
|
|
5308
5318
|
"aliases": [],
|
|
5309
|
-
"args": {
|
|
5310
|
-
|
|
5311
|
-
"description": "Environment to push variables to. Default environments are 'production', 'preview', and 'development'.",
|
|
5312
|
-
"name": "environment",
|
|
5313
|
-
"required": false
|
|
5314
|
-
}
|
|
5315
|
-
},
|
|
5316
|
-
"description": "push environment variables from .env file to the selected environment",
|
|
5319
|
+
"args": {},
|
|
5320
|
+
"description": "list all registered devices for your account",
|
|
5317
5321
|
"flags": {
|
|
5318
|
-
"
|
|
5319
|
-
"
|
|
5320
|
-
"name": "environment",
|
|
5322
|
+
"apple-team-id": {
|
|
5323
|
+
"name": "apple-team-id",
|
|
5321
5324
|
"hasDynamicHelp": false,
|
|
5322
|
-
"multiple":
|
|
5325
|
+
"multiple": false,
|
|
5323
5326
|
"type": "option"
|
|
5324
5327
|
},
|
|
5325
|
-
"
|
|
5326
|
-
"description": "
|
|
5327
|
-
"name": "
|
|
5328
|
-
"default": ".env.local",
|
|
5328
|
+
"offset": {
|
|
5329
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
5330
|
+
"name": "offset",
|
|
5329
5331
|
"hasDynamicHelp": false,
|
|
5330
5332
|
"multiple": false,
|
|
5331
5333
|
"type": "option"
|
|
5332
5334
|
},
|
|
5333
|
-
"
|
|
5334
|
-
"description": "
|
|
5335
|
-
"name": "
|
|
5335
|
+
"limit": {
|
|
5336
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
5337
|
+
"name": "limit",
|
|
5338
|
+
"hasDynamicHelp": false,
|
|
5339
|
+
"multiple": false,
|
|
5340
|
+
"type": "option"
|
|
5341
|
+
},
|
|
5342
|
+
"json": {
|
|
5343
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5344
|
+
"name": "json",
|
|
5345
|
+
"allowNo": false,
|
|
5346
|
+
"type": "boolean"
|
|
5347
|
+
},
|
|
5348
|
+
"non-interactive": {
|
|
5349
|
+
"description": "Run the command in non-interactive mode.",
|
|
5350
|
+
"name": "non-interactive",
|
|
5351
|
+
"noCacheDefault": true,
|
|
5336
5352
|
"allowNo": false,
|
|
5337
5353
|
"type": "boolean"
|
|
5338
5354
|
}
|
|
5339
5355
|
},
|
|
5340
5356
|
"hasDynamicHelp": false,
|
|
5341
5357
|
"hiddenAliases": [],
|
|
5342
|
-
"id": "
|
|
5358
|
+
"id": "device:list",
|
|
5343
5359
|
"pluginAlias": "eas-cli",
|
|
5344
5360
|
"pluginName": "eas-cli",
|
|
5345
5361
|
"pluginType": "core",
|
|
@@ -5393,91 +5409,42 @@
|
|
|
5393
5409
|
"relativePath": [
|
|
5394
5410
|
"build",
|
|
5395
5411
|
"commands",
|
|
5396
|
-
"
|
|
5397
|
-
"
|
|
5412
|
+
"device",
|
|
5413
|
+
"list.js"
|
|
5398
5414
|
]
|
|
5399
5415
|
},
|
|
5400
|
-
"
|
|
5416
|
+
"device:rename": {
|
|
5401
5417
|
"aliases": [],
|
|
5402
|
-
"args": {
|
|
5403
|
-
|
|
5404
|
-
"description": "Current environment of the variable to update. Default environments are 'production', 'preview', and 'development'.",
|
|
5405
|
-
"name": "environment",
|
|
5406
|
-
"required": false
|
|
5407
|
-
}
|
|
5408
|
-
},
|
|
5409
|
-
"description": "update an environment variable on the current project or account",
|
|
5418
|
+
"args": {},
|
|
5419
|
+
"description": "rename a registered device",
|
|
5410
5420
|
"flags": {
|
|
5411
|
-
"
|
|
5412
|
-
"description": "
|
|
5413
|
-
"name": "
|
|
5414
|
-
"hasDynamicHelp": false,
|
|
5415
|
-
"multiple": false,
|
|
5416
|
-
"type": "option"
|
|
5417
|
-
},
|
|
5418
|
-
"variable-environment": {
|
|
5419
|
-
"description": "Current environment of the variable to update",
|
|
5420
|
-
"name": "variable-environment",
|
|
5421
|
-
"hasDynamicHelp": false,
|
|
5422
|
-
"multiple": false,
|
|
5423
|
-
"type": "option"
|
|
5424
|
-
},
|
|
5425
|
-
"name": {
|
|
5426
|
-
"description": "New name of the variable",
|
|
5427
|
-
"name": "name",
|
|
5428
|
-
"hasDynamicHelp": false,
|
|
5429
|
-
"multiple": false,
|
|
5430
|
-
"type": "option"
|
|
5431
|
-
},
|
|
5432
|
-
"value": {
|
|
5433
|
-
"description": "New value or the variable",
|
|
5434
|
-
"name": "value",
|
|
5435
|
-
"hasDynamicHelp": false,
|
|
5436
|
-
"multiple": false,
|
|
5437
|
-
"type": "option"
|
|
5438
|
-
},
|
|
5439
|
-
"type": {
|
|
5440
|
-
"description": "The type of variable",
|
|
5441
|
-
"name": "type",
|
|
5442
|
-
"hasDynamicHelp": false,
|
|
5443
|
-
"multiple": false,
|
|
5444
|
-
"options": [
|
|
5445
|
-
"string",
|
|
5446
|
-
"file"
|
|
5447
|
-
],
|
|
5448
|
-
"type": "option"
|
|
5449
|
-
},
|
|
5450
|
-
"visibility": {
|
|
5451
|
-
"description": "Visibility of the variable",
|
|
5452
|
-
"name": "visibility",
|
|
5421
|
+
"apple-team-id": {
|
|
5422
|
+
"description": "The Apple team ID on which to find the device",
|
|
5423
|
+
"name": "apple-team-id",
|
|
5453
5424
|
"hasDynamicHelp": false,
|
|
5454
5425
|
"multiple": false,
|
|
5455
|
-
"options": [
|
|
5456
|
-
"plaintext",
|
|
5457
|
-
"sensitive",
|
|
5458
|
-
"secret"
|
|
5459
|
-
],
|
|
5460
5426
|
"type": "option"
|
|
5461
5427
|
},
|
|
5462
|
-
"
|
|
5463
|
-
"description": "
|
|
5464
|
-
"name": "
|
|
5465
|
-
"default": "project",
|
|
5428
|
+
"udid": {
|
|
5429
|
+
"description": "The Apple device ID to rename",
|
|
5430
|
+
"name": "udid",
|
|
5466
5431
|
"hasDynamicHelp": false,
|
|
5467
5432
|
"multiple": false,
|
|
5468
|
-
"options": [
|
|
5469
|
-
"project",
|
|
5470
|
-
"account"
|
|
5471
|
-
],
|
|
5472
5433
|
"type": "option"
|
|
5473
5434
|
},
|
|
5474
|
-
"
|
|
5475
|
-
"description": "
|
|
5476
|
-
"name": "
|
|
5435
|
+
"name": {
|
|
5436
|
+
"description": "The new name for the device",
|
|
5437
|
+
"name": "name",
|
|
5477
5438
|
"hasDynamicHelp": false,
|
|
5478
|
-
"multiple":
|
|
5439
|
+
"multiple": false,
|
|
5479
5440
|
"type": "option"
|
|
5480
5441
|
},
|
|
5442
|
+
"json": {
|
|
5443
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5444
|
+
"name": "json",
|
|
5445
|
+
"allowNo": false,
|
|
5446
|
+
"type": "boolean"
|
|
5447
|
+
},
|
|
5481
5448
|
"non-interactive": {
|
|
5482
5449
|
"description": "Run the command in non-interactive mode.",
|
|
5483
5450
|
"name": "non-interactive",
|
|
@@ -5488,7 +5455,7 @@
|
|
|
5488
5455
|
},
|
|
5489
5456
|
"hasDynamicHelp": false,
|
|
5490
5457
|
"hiddenAliases": [],
|
|
5491
|
-
"id": "
|
|
5458
|
+
"id": "device:rename",
|
|
5492
5459
|
"pluginAlias": "eas-cli",
|
|
5493
5460
|
"pluginName": "eas-cli",
|
|
5494
5461
|
"pluginType": "core",
|
|
@@ -5536,76 +5503,96 @@
|
|
|
5536
5503
|
},
|
|
5537
5504
|
"contextDefinition": {
|
|
5538
5505
|
"projectId": {},
|
|
5539
|
-
"analytics": {},
|
|
5540
5506
|
"loggedIn": {}
|
|
5541
5507
|
},
|
|
5542
5508
|
"isESM": false,
|
|
5543
5509
|
"relativePath": [
|
|
5544
5510
|
"build",
|
|
5545
5511
|
"commands",
|
|
5546
|
-
"
|
|
5547
|
-
"
|
|
5512
|
+
"device",
|
|
5513
|
+
"rename.js"
|
|
5548
5514
|
]
|
|
5549
5515
|
},
|
|
5550
|
-
"
|
|
5516
|
+
"device:view": {
|
|
5551
5517
|
"aliases": [],
|
|
5552
5518
|
"args": {
|
|
5553
|
-
"
|
|
5554
|
-
"
|
|
5555
|
-
"name": "hash1",
|
|
5556
|
-
"required": false
|
|
5557
|
-
},
|
|
5558
|
-
"hash2": {
|
|
5559
|
-
"description": "If two hashes are provided, HASH1 is compared against HASH2.",
|
|
5560
|
-
"name": "hash2",
|
|
5561
|
-
"required": false
|
|
5519
|
+
"UDID": {
|
|
5520
|
+
"name": "UDID"
|
|
5562
5521
|
}
|
|
5563
5522
|
},
|
|
5564
|
-
"description": "
|
|
5565
|
-
"
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
|
|
5573
|
-
|
|
5574
|
-
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
"aliases": [
|
|
5578
|
-
"buildId"
|
|
5579
|
-
],
|
|
5580
|
-
"description": "Compare the fingerprint with the build with the specified ID",
|
|
5581
|
-
"name": "build-id",
|
|
5582
|
-
"hasDynamicHelp": false,
|
|
5583
|
-
"multiple": true,
|
|
5584
|
-
"type": "option"
|
|
5523
|
+
"description": "view a device for your project",
|
|
5524
|
+
"flags": {},
|
|
5525
|
+
"hasDynamicHelp": false,
|
|
5526
|
+
"hiddenAliases": [],
|
|
5527
|
+
"id": "device:view",
|
|
5528
|
+
"pluginAlias": "eas-cli",
|
|
5529
|
+
"pluginName": "eas-cli",
|
|
5530
|
+
"pluginType": "core",
|
|
5531
|
+
"strict": true,
|
|
5532
|
+
"enableJsonFlag": false,
|
|
5533
|
+
"ContextOptions": {
|
|
5534
|
+
"LoggedIn": {
|
|
5535
|
+
"loggedIn": {}
|
|
5585
5536
|
},
|
|
5586
|
-
"
|
|
5587
|
-
"
|
|
5588
|
-
"updateId"
|
|
5589
|
-
],
|
|
5590
|
-
"description": "Compare the fingerprint with the update with the specified ID",
|
|
5591
|
-
"name": "update-id",
|
|
5592
|
-
"hasDynamicHelp": false,
|
|
5593
|
-
"multiple": true,
|
|
5594
|
-
"type": "option"
|
|
5537
|
+
"MaybeLoggedIn": {
|
|
5538
|
+
"maybeLoggedIn": {}
|
|
5595
5539
|
},
|
|
5596
|
-
"
|
|
5597
|
-
"
|
|
5598
|
-
"name": "open",
|
|
5599
|
-
"allowNo": false,
|
|
5600
|
-
"type": "boolean"
|
|
5540
|
+
"DynamicLoggedIn": {
|
|
5541
|
+
"getDynamicLoggedInAsync": {}
|
|
5601
5542
|
},
|
|
5602
|
-
"
|
|
5603
|
-
"
|
|
5604
|
-
|
|
5605
|
-
|
|
5606
|
-
"
|
|
5607
|
-
|
|
5543
|
+
"SessionManagment": {
|
|
5544
|
+
"sessionManager": {}
|
|
5545
|
+
},
|
|
5546
|
+
"OptionalProjectConfig": {
|
|
5547
|
+
"optionalPrivateProjectConfig": {}
|
|
5548
|
+
},
|
|
5549
|
+
"ProjectDir": {
|
|
5550
|
+
"projectDir": {}
|
|
5551
|
+
},
|
|
5552
|
+
"DynamicProjectConfig": {
|
|
5553
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
5554
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
5555
|
+
},
|
|
5556
|
+
"ProjectConfig": {
|
|
5557
|
+
"loggedIn": {},
|
|
5558
|
+
"privateProjectConfig": {}
|
|
5559
|
+
},
|
|
5560
|
+
"Analytics": {
|
|
5561
|
+
"analytics": {}
|
|
5562
|
+
},
|
|
5563
|
+
"Vcs": {
|
|
5564
|
+
"vcsClient": {}
|
|
5565
|
+
},
|
|
5566
|
+
"ServerSideEnvironmentVariables": {
|
|
5567
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
5608
5568
|
},
|
|
5569
|
+
"ProjectId": {
|
|
5570
|
+
"projectId": {}
|
|
5571
|
+
}
|
|
5572
|
+
},
|
|
5573
|
+
"contextDefinition": {
|
|
5574
|
+
"projectId": {},
|
|
5575
|
+
"loggedIn": {}
|
|
5576
|
+
},
|
|
5577
|
+
"isESM": false,
|
|
5578
|
+
"relativePath": [
|
|
5579
|
+
"build",
|
|
5580
|
+
"commands",
|
|
5581
|
+
"device",
|
|
5582
|
+
"view.js"
|
|
5583
|
+
]
|
|
5584
|
+
},
|
|
5585
|
+
"deploy:delete": {
|
|
5586
|
+
"aliases": [
|
|
5587
|
+
"worker:delete"
|
|
5588
|
+
],
|
|
5589
|
+
"args": {
|
|
5590
|
+
"DEPLOYMENT_ID": {
|
|
5591
|
+
"name": "DEPLOYMENT_ID"
|
|
5592
|
+
}
|
|
5593
|
+
},
|
|
5594
|
+
"description": "Delete a deployment.",
|
|
5595
|
+
"flags": {
|
|
5609
5596
|
"json": {
|
|
5610
5597
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
5611
5598
|
"name": "json",
|
|
@@ -5622,11 +5609,12 @@
|
|
|
5622
5609
|
},
|
|
5623
5610
|
"hasDynamicHelp": false,
|
|
5624
5611
|
"hiddenAliases": [],
|
|
5625
|
-
"id": "
|
|
5612
|
+
"id": "deploy:delete",
|
|
5626
5613
|
"pluginAlias": "eas-cli",
|
|
5627
5614
|
"pluginName": "eas-cli",
|
|
5628
5615
|
"pluginType": "core",
|
|
5629
|
-
"
|
|
5616
|
+
"state": "preview",
|
|
5617
|
+
"strict": true,
|
|
5630
5618
|
"enableJsonFlag": false,
|
|
5631
5619
|
"ContextOptions": {
|
|
5632
5620
|
"LoggedIn": {
|
|
@@ -5669,59 +5657,75 @@
|
|
|
5669
5657
|
}
|
|
5670
5658
|
},
|
|
5671
5659
|
"contextDefinition": {
|
|
5672
|
-
"
|
|
5673
|
-
"
|
|
5674
|
-
"
|
|
5675
|
-
"
|
|
5676
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
5660
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
5661
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
5662
|
+
"projectDir": {},
|
|
5663
|
+
"loggedIn": {}
|
|
5677
5664
|
},
|
|
5678
5665
|
"isESM": false,
|
|
5679
5666
|
"relativePath": [
|
|
5680
5667
|
"build",
|
|
5681
5668
|
"commands",
|
|
5682
|
-
"
|
|
5683
|
-
"
|
|
5669
|
+
"deploy",
|
|
5670
|
+
"delete.js"
|
|
5684
5671
|
]
|
|
5685
5672
|
},
|
|
5686
|
-
"
|
|
5687
|
-
"aliases": [
|
|
5688
|
-
|
|
5689
|
-
"description": "generate fingerprints from the current project",
|
|
5690
|
-
"examples": [
|
|
5691
|
-
"$ eas fingerprint:generate \t # Generate fingerprint in interactive mode",
|
|
5692
|
-
"$ eas fingerprint:generate --build-profile preview \t # Generate a fingerprint using the \"preview\" build profile",
|
|
5693
|
-
"$ eas fingerprint:generate --environment preview \t # Generate a fingerprint using the \"preview\" environment",
|
|
5694
|
-
"$ eas fingerprint:generate --json --non-interactive --platform android \t # Output fingerprint json to stdout"
|
|
5673
|
+
"deploy": {
|
|
5674
|
+
"aliases": [
|
|
5675
|
+
"worker:deploy"
|
|
5695
5676
|
],
|
|
5677
|
+
"args": {},
|
|
5678
|
+
"description": "deploy your Expo Router web build and API Routes",
|
|
5696
5679
|
"flags": {
|
|
5697
|
-
"
|
|
5698
|
-
"
|
|
5699
|
-
|
|
5680
|
+
"prod": {
|
|
5681
|
+
"aliases": [
|
|
5682
|
+
"production"
|
|
5683
|
+
],
|
|
5684
|
+
"description": "Create a new production deployment.",
|
|
5685
|
+
"name": "prod",
|
|
5686
|
+
"allowNo": false,
|
|
5687
|
+
"type": "boolean"
|
|
5688
|
+
},
|
|
5689
|
+
"alias": {
|
|
5690
|
+
"description": "Custom alias to assign to the new deployment.",
|
|
5691
|
+
"name": "alias",
|
|
5700
5692
|
"hasDynamicHelp": false,
|
|
5693
|
+
"helpValue": "name",
|
|
5701
5694
|
"multiple": false,
|
|
5702
|
-
"options": [
|
|
5703
|
-
"android",
|
|
5704
|
-
"ios"
|
|
5705
|
-
],
|
|
5706
5695
|
"type": "option"
|
|
5707
5696
|
},
|
|
5708
|
-
"
|
|
5709
|
-
"description": "
|
|
5710
|
-
"
|
|
5711
|
-
"build-profile"
|
|
5712
|
-
],
|
|
5713
|
-
"name": "environment",
|
|
5697
|
+
"id": {
|
|
5698
|
+
"description": "Custom unique identifier for the new deployment.",
|
|
5699
|
+
"name": "id",
|
|
5714
5700
|
"hasDynamicHelp": false,
|
|
5701
|
+
"helpValue": "xyz123",
|
|
5715
5702
|
"multiple": false,
|
|
5716
5703
|
"type": "option"
|
|
5717
5704
|
},
|
|
5718
|
-
"
|
|
5719
|
-
"
|
|
5720
|
-
"
|
|
5721
|
-
"
|
|
5722
|
-
|
|
5723
|
-
|
|
5724
|
-
"
|
|
5705
|
+
"export-dir": {
|
|
5706
|
+
"description": "Directory where the Expo project was exported.",
|
|
5707
|
+
"name": "export-dir",
|
|
5708
|
+
"default": "dist",
|
|
5709
|
+
"hasDynamicHelp": false,
|
|
5710
|
+
"helpValue": "dir",
|
|
5711
|
+
"multiple": false,
|
|
5712
|
+
"type": "option"
|
|
5713
|
+
},
|
|
5714
|
+
"dry-run": {
|
|
5715
|
+
"description": "Outputs a tarball of the new deployment instead of uploading it.",
|
|
5716
|
+
"name": "dry-run",
|
|
5717
|
+
"allowNo": false,
|
|
5718
|
+
"type": "boolean"
|
|
5719
|
+
},
|
|
5720
|
+
"source-maps": {
|
|
5721
|
+
"description": "Include source maps in the deployment.",
|
|
5722
|
+
"name": "source-maps",
|
|
5723
|
+
"allowNo": true,
|
|
5724
|
+
"type": "boolean"
|
|
5725
|
+
},
|
|
5726
|
+
"environment": {
|
|
5727
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
5728
|
+
"name": "environment",
|
|
5725
5729
|
"hasDynamicHelp": false,
|
|
5726
5730
|
"multiple": false,
|
|
5727
5731
|
"type": "option"
|
|
@@ -5742,11 +5746,16 @@
|
|
|
5742
5746
|
},
|
|
5743
5747
|
"hasDynamicHelp": false,
|
|
5744
5748
|
"hiddenAliases": [],
|
|
5745
|
-
"id": "
|
|
5749
|
+
"id": "deploy",
|
|
5746
5750
|
"pluginAlias": "eas-cli",
|
|
5747
5751
|
"pluginName": "eas-cli",
|
|
5748
5752
|
"pluginType": "core",
|
|
5749
|
-
"
|
|
5753
|
+
"state": "preview",
|
|
5754
|
+
"strict": true,
|
|
5755
|
+
"usage": [
|
|
5756
|
+
"deploy [options]",
|
|
5757
|
+
"deploy --prod"
|
|
5758
|
+
],
|
|
5750
5759
|
"enableJsonFlag": false,
|
|
5751
5760
|
"ContextOptions": {
|
|
5752
5761
|
"LoggedIn": {
|
|
@@ -5789,20 +5798,17 @@
|
|
|
5789
5798
|
}
|
|
5790
5799
|
},
|
|
5791
5800
|
"contextDefinition": {
|
|
5792
|
-
"projectId": {},
|
|
5793
|
-
"loggedIn": {},
|
|
5794
|
-
"privateProjectConfig": {},
|
|
5795
|
-
"vcsClient": {},
|
|
5796
|
-
"getServerSideEnvironmentVariablesAsync": {},
|
|
5797
5801
|
"getDynamicPublicProjectConfigAsync": {},
|
|
5798
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
5802
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
5803
|
+
"projectDir": {},
|
|
5804
|
+
"loggedIn": {}
|
|
5799
5805
|
},
|
|
5800
5806
|
"isESM": false,
|
|
5801
5807
|
"relativePath": [
|
|
5802
5808
|
"build",
|
|
5803
5809
|
"commands",
|
|
5804
|
-
"
|
|
5805
|
-
"
|
|
5810
|
+
"deploy",
|
|
5811
|
+
"index.js"
|
|
5806
5812
|
]
|
|
5807
5813
|
},
|
|
5808
5814
|
"metadata:lint": {
|
|
@@ -10201,5 +10207,5 @@
|
|
|
10201
10207
|
]
|
|
10202
10208
|
}
|
|
10203
10209
|
},
|
|
10204
|
-
"version": "18.
|
|
10210
|
+
"version": "18.7.0"
|
|
10205
10211
|
}
|