eas-cli 2.9.0 → 3.0.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 +78 -54
- package/build/commands/build/run.js +2 -2
- package/build/commands/update/index.js +64 -133
- package/build/commands/update/republish.d.ts +36 -0
- package/build/commands/update/republish.js +218 -0
- package/build/graphql/generated.d.ts +63 -0
- package/build/graphql/types/Update.js +6 -0
- package/build/run/android/emulator.js +3 -3
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -107,6 +107,7 @@ eas --help COMMAND
|
|
|
107
107
|
* [`eas update:configure`](#eas-updateconfigure)
|
|
108
108
|
* [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
|
|
109
109
|
* [`eas update:list`](#eas-updatelist)
|
|
110
|
+
* [`eas update:republish`](#eas-updaterepublish)
|
|
110
111
|
* [`eas update:view GROUPID`](#eas-updateview-groupid)
|
|
111
112
|
* [`eas webhook:create`](#eas-webhookcreate)
|
|
112
113
|
* [`eas webhook:delete [ID]`](#eas-webhookdelete-id)
|
|
@@ -130,7 +131,7 @@ ALIASES
|
|
|
130
131
|
$ eas login
|
|
131
132
|
```
|
|
132
133
|
|
|
133
|
-
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/
|
|
134
|
+
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
134
135
|
|
|
135
136
|
## `eas account:logout`
|
|
136
137
|
|
|
@@ -147,7 +148,7 @@ ALIASES
|
|
|
147
148
|
$ eas logout
|
|
148
149
|
```
|
|
149
150
|
|
|
150
|
-
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/
|
|
151
|
+
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
151
152
|
|
|
152
153
|
## `eas account:view`
|
|
153
154
|
|
|
@@ -164,7 +165,7 @@ ALIASES
|
|
|
164
165
|
$ eas whoami
|
|
165
166
|
```
|
|
166
167
|
|
|
167
|
-
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/
|
|
168
|
+
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
168
169
|
|
|
169
170
|
## `eas analytics [STATUS]`
|
|
170
171
|
|
|
@@ -178,7 +179,7 @@ DESCRIPTION
|
|
|
178
179
|
display or change analytics settings
|
|
179
180
|
```
|
|
180
181
|
|
|
181
|
-
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/
|
|
182
|
+
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
182
183
|
|
|
183
184
|
## `eas autocomplete [SHELL]`
|
|
184
185
|
|
|
@@ -228,7 +229,7 @@ DESCRIPTION
|
|
|
228
229
|
create a branch
|
|
229
230
|
```
|
|
230
231
|
|
|
231
|
-
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/
|
|
232
|
+
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
232
233
|
|
|
233
234
|
## `eas branch:delete [NAME]`
|
|
234
235
|
|
|
@@ -249,7 +250,7 @@ DESCRIPTION
|
|
|
249
250
|
delete a branch
|
|
250
251
|
```
|
|
251
252
|
|
|
252
|
-
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
253
|
+
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
253
254
|
|
|
254
255
|
## `eas branch:list`
|
|
255
256
|
|
|
@@ -269,7 +270,7 @@ DESCRIPTION
|
|
|
269
270
|
list all branches
|
|
270
271
|
```
|
|
271
272
|
|
|
272
|
-
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/
|
|
273
|
+
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
273
274
|
|
|
274
275
|
## `eas branch:rename`
|
|
275
276
|
|
|
@@ -289,7 +290,7 @@ DESCRIPTION
|
|
|
289
290
|
rename a branch
|
|
290
291
|
```
|
|
291
292
|
|
|
292
|
-
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/
|
|
293
|
+
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
293
294
|
|
|
294
295
|
## `eas branch:view [NAME]`
|
|
295
296
|
|
|
@@ -312,7 +313,7 @@ DESCRIPTION
|
|
|
312
313
|
view a branch
|
|
313
314
|
```
|
|
314
315
|
|
|
315
|
-
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/
|
|
316
|
+
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
316
317
|
|
|
317
318
|
## `eas build`
|
|
318
319
|
|
|
@@ -342,7 +343,7 @@ DESCRIPTION
|
|
|
342
343
|
start a build
|
|
343
344
|
```
|
|
344
345
|
|
|
345
|
-
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/
|
|
346
|
+
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
346
347
|
|
|
347
348
|
## `eas build:cancel [BUILD_ID]`
|
|
348
349
|
|
|
@@ -359,7 +360,7 @@ DESCRIPTION
|
|
|
359
360
|
cancel a build
|
|
360
361
|
```
|
|
361
362
|
|
|
362
|
-
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/
|
|
363
|
+
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
363
364
|
|
|
364
365
|
## `eas build:configure`
|
|
365
366
|
|
|
@@ -376,7 +377,7 @@ DESCRIPTION
|
|
|
376
377
|
configure the project to support EAS Build
|
|
377
378
|
```
|
|
378
379
|
|
|
379
|
-
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/
|
|
380
|
+
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
380
381
|
|
|
381
382
|
## `eas build:inspect`
|
|
382
383
|
|
|
@@ -411,7 +412,7 @@ DESCRIPTION
|
|
|
411
412
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
412
413
|
```
|
|
413
414
|
|
|
414
|
-
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/
|
|
415
|
+
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
415
416
|
|
|
416
417
|
## `eas build:list`
|
|
417
418
|
|
|
@@ -448,7 +449,7 @@ DESCRIPTION
|
|
|
448
449
|
list all builds for your project
|
|
449
450
|
```
|
|
450
451
|
|
|
451
|
-
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/
|
|
452
|
+
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
452
453
|
|
|
453
454
|
## `eas build:run`
|
|
454
455
|
|
|
@@ -472,7 +473,7 @@ DESCRIPTION
|
|
|
472
473
|
run simulator/emulator builds from eas-cli
|
|
473
474
|
```
|
|
474
475
|
|
|
475
|
-
_See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/
|
|
476
|
+
_See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
476
477
|
|
|
477
478
|
## `eas build:submit`
|
|
478
479
|
|
|
@@ -519,7 +520,7 @@ DESCRIPTION
|
|
|
519
520
|
Update version of an app.
|
|
520
521
|
```
|
|
521
522
|
|
|
522
|
-
_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/
|
|
523
|
+
_See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
523
524
|
|
|
524
525
|
## `eas build:version:sync`
|
|
525
526
|
|
|
@@ -538,7 +539,7 @@ DESCRIPTION
|
|
|
538
539
|
Update a version in native code with a value stored on EAS servers
|
|
539
540
|
```
|
|
540
541
|
|
|
541
|
-
_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/
|
|
542
|
+
_See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
542
543
|
|
|
543
544
|
## `eas build:view [BUILD_ID]`
|
|
544
545
|
|
|
@@ -555,7 +556,7 @@ DESCRIPTION
|
|
|
555
556
|
view a build for your project
|
|
556
557
|
```
|
|
557
558
|
|
|
558
|
-
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/
|
|
559
|
+
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
559
560
|
|
|
560
561
|
## `eas channel:create [NAME]`
|
|
561
562
|
|
|
@@ -576,7 +577,7 @@ DESCRIPTION
|
|
|
576
577
|
create a channel
|
|
577
578
|
```
|
|
578
579
|
|
|
579
|
-
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/
|
|
580
|
+
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
580
581
|
|
|
581
582
|
## `eas channel:edit [NAME]`
|
|
582
583
|
|
|
@@ -598,7 +599,7 @@ DESCRIPTION
|
|
|
598
599
|
point a channel at a new branch
|
|
599
600
|
```
|
|
600
601
|
|
|
601
|
-
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/
|
|
602
|
+
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
602
603
|
|
|
603
604
|
## `eas channel:list`
|
|
604
605
|
|
|
@@ -618,7 +619,7 @@ DESCRIPTION
|
|
|
618
619
|
list all channels
|
|
619
620
|
```
|
|
620
621
|
|
|
621
|
-
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/
|
|
622
|
+
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
622
623
|
|
|
623
624
|
## `eas channel:view [NAME]`
|
|
624
625
|
|
|
@@ -641,7 +642,7 @@ DESCRIPTION
|
|
|
641
642
|
view a channel
|
|
642
643
|
```
|
|
643
644
|
|
|
644
|
-
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/
|
|
645
|
+
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
645
646
|
|
|
646
647
|
## `eas config`
|
|
647
648
|
|
|
@@ -660,7 +661,7 @@ DESCRIPTION
|
|
|
660
661
|
display project configuration (app.json + eas.json)
|
|
661
662
|
```
|
|
662
663
|
|
|
663
|
-
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/
|
|
664
|
+
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/config.ts)_
|
|
664
665
|
|
|
665
666
|
## `eas credentials`
|
|
666
667
|
|
|
@@ -677,7 +678,7 @@ DESCRIPTION
|
|
|
677
678
|
manage credentials
|
|
678
679
|
```
|
|
679
680
|
|
|
680
|
-
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/
|
|
681
|
+
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/credentials.ts)_
|
|
681
682
|
|
|
682
683
|
## `eas device:create`
|
|
683
684
|
|
|
@@ -691,7 +692,7 @@ DESCRIPTION
|
|
|
691
692
|
register new Apple Devices to use for internal distribution
|
|
692
693
|
```
|
|
693
694
|
|
|
694
|
-
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/
|
|
695
|
+
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
695
696
|
|
|
696
697
|
## `eas device:delete`
|
|
697
698
|
|
|
@@ -711,7 +712,7 @@ DESCRIPTION
|
|
|
711
712
|
remove a registered device from your account
|
|
712
713
|
```
|
|
713
714
|
|
|
714
|
-
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
715
|
+
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
715
716
|
|
|
716
717
|
## `eas device:list`
|
|
717
718
|
|
|
@@ -732,7 +733,7 @@ DESCRIPTION
|
|
|
732
733
|
list all registered devices for your account
|
|
733
734
|
```
|
|
734
735
|
|
|
735
|
-
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/
|
|
736
|
+
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
736
737
|
|
|
737
738
|
## `eas device:view [UDID]`
|
|
738
739
|
|
|
@@ -746,7 +747,7 @@ DESCRIPTION
|
|
|
746
747
|
view a device for your project
|
|
747
748
|
```
|
|
748
749
|
|
|
749
|
-
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/
|
|
750
|
+
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
750
751
|
|
|
751
752
|
## `eas diagnostics`
|
|
752
753
|
|
|
@@ -760,7 +761,7 @@ DESCRIPTION
|
|
|
760
761
|
display environment info
|
|
761
762
|
```
|
|
762
763
|
|
|
763
|
-
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/
|
|
764
|
+
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
764
765
|
|
|
765
766
|
## `eas help [COMMAND]`
|
|
766
767
|
|
|
@@ -848,7 +849,7 @@ DESCRIPTION
|
|
|
848
849
|
validate the local store configuration
|
|
849
850
|
```
|
|
850
851
|
|
|
851
|
-
_See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/
|
|
852
|
+
_See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
852
853
|
|
|
853
854
|
## `eas metadata:pull`
|
|
854
855
|
|
|
@@ -865,7 +866,7 @@ DESCRIPTION
|
|
|
865
866
|
generate the local store configuration from the app stores
|
|
866
867
|
```
|
|
867
868
|
|
|
868
|
-
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/
|
|
869
|
+
_See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
869
870
|
|
|
870
871
|
## `eas metadata:push`
|
|
871
872
|
|
|
@@ -882,7 +883,7 @@ DESCRIPTION
|
|
|
882
883
|
sync the local store configuration to the app stores
|
|
883
884
|
```
|
|
884
885
|
|
|
885
|
-
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/
|
|
886
|
+
_See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
886
887
|
|
|
887
888
|
## `eas open`
|
|
888
889
|
|
|
@@ -896,7 +897,7 @@ DESCRIPTION
|
|
|
896
897
|
open the project page in a web browser
|
|
897
898
|
```
|
|
898
899
|
|
|
899
|
-
_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/
|
|
900
|
+
_See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/open.ts)_
|
|
900
901
|
|
|
901
902
|
## `eas project:info`
|
|
902
903
|
|
|
@@ -910,7 +911,7 @@ DESCRIPTION
|
|
|
910
911
|
information about the current project
|
|
911
912
|
```
|
|
912
913
|
|
|
913
|
-
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/
|
|
914
|
+
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
914
915
|
|
|
915
916
|
## `eas project:init`
|
|
916
917
|
|
|
@@ -932,7 +933,7 @@ ALIASES
|
|
|
932
933
|
$ eas init
|
|
933
934
|
```
|
|
934
935
|
|
|
935
|
-
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/
|
|
936
|
+
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
936
937
|
|
|
937
938
|
## `eas run`
|
|
938
939
|
|
|
@@ -956,7 +957,7 @@ DESCRIPTION
|
|
|
956
957
|
run simulator build
|
|
957
958
|
```
|
|
958
959
|
|
|
959
|
-
_See code: [src/commands/run/index.ts](https://github.com/expo/eas-cli/blob/
|
|
960
|
+
_See code: [src/commands/run/index.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/run/index.ts)_
|
|
960
961
|
|
|
961
962
|
## `eas run:run`
|
|
962
963
|
|
|
@@ -980,7 +981,7 @@ DESCRIPTION
|
|
|
980
981
|
run simulator build
|
|
981
982
|
```
|
|
982
983
|
|
|
983
|
-
_See code: [src/commands/run/run.ts](https://github.com/expo/eas-cli/blob/
|
|
984
|
+
_See code: [src/commands/run/run.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/run/run.ts)_
|
|
984
985
|
|
|
985
986
|
## `eas secret:create`
|
|
986
987
|
|
|
@@ -1003,7 +1004,7 @@ DESCRIPTION
|
|
|
1003
1004
|
create an environment secret on the current project or owner account
|
|
1004
1005
|
```
|
|
1005
1006
|
|
|
1006
|
-
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/
|
|
1007
|
+
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/secret/create.ts)_
|
|
1007
1008
|
|
|
1008
1009
|
## `eas secret:delete`
|
|
1009
1010
|
|
|
@@ -1021,7 +1022,7 @@ DESCRIPTION
|
|
|
1021
1022
|
delete an environment secret by ID
|
|
1022
1023
|
```
|
|
1023
1024
|
|
|
1024
|
-
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1025
|
+
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
1025
1026
|
|
|
1026
1027
|
## `eas secret:list`
|
|
1027
1028
|
|
|
@@ -1035,7 +1036,7 @@ DESCRIPTION
|
|
|
1035
1036
|
list environment secrets available for your current app
|
|
1036
1037
|
```
|
|
1037
1038
|
|
|
1038
|
-
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1039
|
+
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/secret/list.ts)_
|
|
1039
1040
|
|
|
1040
1041
|
## `eas secret:push`
|
|
1041
1042
|
|
|
@@ -1055,7 +1056,7 @@ DESCRIPTION
|
|
|
1055
1056
|
read environment secrets from env file and store on the server
|
|
1056
1057
|
```
|
|
1057
1058
|
|
|
1058
|
-
_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/
|
|
1059
|
+
_See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/secret/push.ts)_
|
|
1059
1060
|
|
|
1060
1061
|
## `eas submit`
|
|
1061
1062
|
|
|
@@ -1085,7 +1086,7 @@ ALIASES
|
|
|
1085
1086
|
$ eas build:submit
|
|
1086
1087
|
```
|
|
1087
1088
|
|
|
1088
|
-
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/
|
|
1089
|
+
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1089
1090
|
|
|
1090
1091
|
## `eas update`
|
|
1091
1092
|
|
|
@@ -1100,7 +1101,7 @@ FLAGS
|
|
|
1100
1101
|
-p, --platform=(android|ios|all) [default: all]
|
|
1101
1102
|
--auto Use the current git branch and commit message for the EAS branch and update message
|
|
1102
1103
|
--branch=<value> Branch to publish the update group on
|
|
1103
|
-
--group=<value> Update group to republish
|
|
1104
|
+
--group=<value> Update group to republish (deprecated, see republish command)
|
|
1104
1105
|
--input-dir=<value> [default: dist] Location of the bundle
|
|
1105
1106
|
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1106
1107
|
--message=<value> A short message describing the update
|
|
@@ -1108,14 +1109,14 @@ FLAGS
|
|
|
1108
1109
|
--private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
|
|
1109
1110
|
expo-updates' configuration. Defaults to a file named "private-key.pem" in the
|
|
1110
1111
|
certificate's directory.
|
|
1111
|
-
--republish Republish an update group
|
|
1112
|
+
--republish Republish an update group (deprecated, see republish command)
|
|
1112
1113
|
--skip-bundler Skip running Expo CLI to bundle the app before publishing
|
|
1113
1114
|
|
|
1114
1115
|
DESCRIPTION
|
|
1115
1116
|
publish an update group
|
|
1116
1117
|
```
|
|
1117
1118
|
|
|
1118
|
-
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/
|
|
1119
|
+
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1119
1120
|
|
|
1120
1121
|
## `eas update:configure`
|
|
1121
1122
|
|
|
@@ -1133,7 +1134,7 @@ DESCRIPTION
|
|
|
1133
1134
|
configure the project to support EAS Update
|
|
1134
1135
|
```
|
|
1135
1136
|
|
|
1136
|
-
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/
|
|
1137
|
+
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1137
1138
|
|
|
1138
1139
|
## `eas update:delete GROUPID`
|
|
1139
1140
|
|
|
@@ -1154,7 +1155,7 @@ DESCRIPTION
|
|
|
1154
1155
|
delete all the updates in an update group
|
|
1155
1156
|
```
|
|
1156
1157
|
|
|
1157
|
-
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1158
|
+
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1158
1159
|
|
|
1159
1160
|
## `eas update:list`
|
|
1160
1161
|
|
|
@@ -1176,7 +1177,30 @@ DESCRIPTION
|
|
|
1176
1177
|
view the recent updates
|
|
1177
1178
|
```
|
|
1178
1179
|
|
|
1179
|
-
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1180
|
+
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1181
|
+
|
|
1182
|
+
## `eas update:republish`
|
|
1183
|
+
|
|
1184
|
+
rollback to an existing update
|
|
1185
|
+
|
|
1186
|
+
```
|
|
1187
|
+
USAGE
|
|
1188
|
+
$ eas update:republish [--branch <value> | --group <value>] [--message <value>] [-p android|ios|all] [--json
|
|
1189
|
+
--non-interactive]
|
|
1190
|
+
|
|
1191
|
+
FLAGS
|
|
1192
|
+
-p, --platform=(android|ios|all) [default: all]
|
|
1193
|
+
--branch=<value> Branch name to select an update to republish from
|
|
1194
|
+
--group=<value> Update group ID to republish
|
|
1195
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1196
|
+
--message=<value> Short message describing the republished update
|
|
1197
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1198
|
+
|
|
1199
|
+
DESCRIPTION
|
|
1200
|
+
rollback to an existing update
|
|
1201
|
+
```
|
|
1202
|
+
|
|
1203
|
+
_See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1180
1204
|
|
|
1181
1205
|
## `eas update:view GROUPID`
|
|
1182
1206
|
|
|
@@ -1196,7 +1220,7 @@ DESCRIPTION
|
|
|
1196
1220
|
update group details
|
|
1197
1221
|
```
|
|
1198
1222
|
|
|
1199
|
-
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/
|
|
1223
|
+
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1200
1224
|
|
|
1201
1225
|
## `eas webhook:create`
|
|
1202
1226
|
|
|
@@ -1217,7 +1241,7 @@ DESCRIPTION
|
|
|
1217
1241
|
create a webhook
|
|
1218
1242
|
```
|
|
1219
1243
|
|
|
1220
|
-
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/
|
|
1244
|
+
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1221
1245
|
|
|
1222
1246
|
## `eas webhook:delete [ID]`
|
|
1223
1247
|
|
|
@@ -1237,7 +1261,7 @@ DESCRIPTION
|
|
|
1237
1261
|
delete a webhook
|
|
1238
1262
|
```
|
|
1239
1263
|
|
|
1240
|
-
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/
|
|
1264
|
+
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1241
1265
|
|
|
1242
1266
|
## `eas webhook:list`
|
|
1243
1267
|
|
|
@@ -1254,7 +1278,7 @@ DESCRIPTION
|
|
|
1254
1278
|
list webhooks
|
|
1255
1279
|
```
|
|
1256
1280
|
|
|
1257
|
-
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/
|
|
1281
|
+
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1258
1282
|
|
|
1259
1283
|
## `eas webhook:update`
|
|
1260
1284
|
|
|
@@ -1276,7 +1300,7 @@ DESCRIPTION
|
|
|
1276
1300
|
update a webhook
|
|
1277
1301
|
```
|
|
1278
1302
|
|
|
1279
|
-
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/
|
|
1303
|
+
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1280
1304
|
|
|
1281
1305
|
## `eas webhook:view ID`
|
|
1282
1306
|
|
|
@@ -1293,7 +1317,7 @@ DESCRIPTION
|
|
|
1293
1317
|
view a webhook
|
|
1294
1318
|
```
|
|
1295
1319
|
|
|
1296
|
-
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/
|
|
1320
|
+
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.0.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1297
1321
|
|
|
1298
1322
|
## `eas whoami`
|
|
1299
1323
|
|
|
@@ -3,8 +3,8 @@ var _a;
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const core_1 = require("@oclif/core");
|
|
6
|
+
const assert_1 = tslib_1.__importDefault(require("assert"));
|
|
6
7
|
const fs_extra_1 = require("fs-extra");
|
|
7
|
-
const node_assert_1 = tslib_1.__importDefault(require("node:assert"));
|
|
8
8
|
const path_1 = tslib_1.__importDefault(require("path"));
|
|
9
9
|
const queries_1 = require("../../build/queries");
|
|
10
10
|
const EasCommand_1 = tslib_1.__importDefault(require("../../commandUtils/EasCommand"));
|
|
@@ -164,6 +164,6 @@ async function getPathToSimulatorBuildAppAsync(graphqlClient, projectId, flags,
|
|
|
164
164
|
return await (0, download_1.extractAppFromLocalArchiveAsync)(flags.runArchiveFlags.path, flags.selectedPlatform);
|
|
165
165
|
}
|
|
166
166
|
// this should never fail, due to the validation in sanitizeFlagsAsync
|
|
167
|
-
(0,
|
|
167
|
+
(0, assert_1.default)(flags.runArchiveFlags.path);
|
|
168
168
|
return flags.runArchiveFlags.path;
|
|
169
169
|
}
|