eas-cli 18.2.0 → 18.4.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 +94 -93
- package/build/build/build.js +27 -6
- package/build/commandUtils/flags.d.ts +1 -0
- package/build/commandUtils/flags.js +12 -0
- package/build/commands/account/view.js +6 -2
- package/build/commands/build/dev.d.ts +1 -0
- package/build/commands/build/dev.js +9 -1
- package/build/graphql/generated.d.ts +1 -0
- package/build/graphql/queries/UserQuery.js +3 -0
- package/oclif.manifest.json +1083 -1018
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -109,6 +109,7 @@
|
|
|
109
109
|
"non-interactive": {
|
|
110
110
|
"description": "Run the command in non-interactive mode.",
|
|
111
111
|
"name": "non-interactive",
|
|
112
|
+
"noCacheDefault": true,
|
|
112
113
|
"allowNo": false,
|
|
113
114
|
"type": "boolean"
|
|
114
115
|
}
|
|
@@ -603,6 +604,7 @@
|
|
|
603
604
|
"non-interactive": {
|
|
604
605
|
"description": "Run the command in non-interactive mode.",
|
|
605
606
|
"name": "non-interactive",
|
|
607
|
+
"noCacheDefault": true,
|
|
606
608
|
"allowNo": false,
|
|
607
609
|
"type": "boolean"
|
|
608
610
|
}
|
|
@@ -833,6 +835,7 @@
|
|
|
833
835
|
"non-interactive": {
|
|
834
836
|
"description": "Run the command in non-interactive mode.",
|
|
835
837
|
"name": "non-interactive",
|
|
838
|
+
"noCacheDefault": true,
|
|
836
839
|
"allowNo": false,
|
|
837
840
|
"type": "boolean"
|
|
838
841
|
}
|
|
@@ -982,6 +985,7 @@
|
|
|
982
985
|
"non-interactive": {
|
|
983
986
|
"description": "Run the command in non-interactive mode.",
|
|
984
987
|
"name": "non-interactive",
|
|
988
|
+
"noCacheDefault": true,
|
|
985
989
|
"allowNo": false,
|
|
986
990
|
"type": "boolean"
|
|
987
991
|
}
|
|
@@ -1067,6 +1071,7 @@
|
|
|
1067
1071
|
"non-interactive": {
|
|
1068
1072
|
"description": "Run the command in non-interactive mode.",
|
|
1069
1073
|
"name": "non-interactive",
|
|
1074
|
+
"noCacheDefault": true,
|
|
1070
1075
|
"allowNo": false,
|
|
1071
1076
|
"type": "boolean"
|
|
1072
1077
|
}
|
|
@@ -1159,6 +1164,7 @@
|
|
|
1159
1164
|
"non-interactive": {
|
|
1160
1165
|
"description": "Run the command in non-interactive mode.",
|
|
1161
1166
|
"name": "non-interactive",
|
|
1167
|
+
"noCacheDefault": true,
|
|
1162
1168
|
"allowNo": false,
|
|
1163
1169
|
"type": "boolean"
|
|
1164
1170
|
}
|
|
@@ -1316,6 +1322,7 @@
|
|
|
1316
1322
|
"non-interactive": {
|
|
1317
1323
|
"description": "Run the command in non-interactive mode.",
|
|
1318
1324
|
"name": "non-interactive",
|
|
1325
|
+
"noCacheDefault": true,
|
|
1319
1326
|
"allowNo": false,
|
|
1320
1327
|
"type": "boolean"
|
|
1321
1328
|
}
|
|
@@ -1414,6 +1421,7 @@
|
|
|
1414
1421
|
"non-interactive": {
|
|
1415
1422
|
"description": "Run the command in non-interactive mode.",
|
|
1416
1423
|
"name": "non-interactive",
|
|
1424
|
+
"noCacheDefault": true,
|
|
1417
1425
|
"allowNo": false,
|
|
1418
1426
|
"type": "boolean"
|
|
1419
1427
|
}
|
|
@@ -1478,47 +1486,34 @@
|
|
|
1478
1486
|
"view.js"
|
|
1479
1487
|
]
|
|
1480
1488
|
},
|
|
1481
|
-
"
|
|
1489
|
+
"channel:create": {
|
|
1482
1490
|
"aliases": [],
|
|
1483
1491
|
"args": {
|
|
1484
|
-
"
|
|
1485
|
-
"
|
|
1492
|
+
"name": {
|
|
1493
|
+
"description": "Name of the channel to create",
|
|
1494
|
+
"name": "name",
|
|
1495
|
+
"required": false
|
|
1486
1496
|
}
|
|
1487
1497
|
},
|
|
1488
|
-
"description": "
|
|
1498
|
+
"description": "create a channel",
|
|
1489
1499
|
"flags": {
|
|
1500
|
+
"json": {
|
|
1501
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1502
|
+
"name": "json",
|
|
1503
|
+
"allowNo": false,
|
|
1504
|
+
"type": "boolean"
|
|
1505
|
+
},
|
|
1490
1506
|
"non-interactive": {
|
|
1491
1507
|
"description": "Run the command in non-interactive mode.",
|
|
1492
1508
|
"name": "non-interactive",
|
|
1509
|
+
"noCacheDefault": true,
|
|
1493
1510
|
"allowNo": false,
|
|
1494
1511
|
"type": "boolean"
|
|
1495
|
-
},
|
|
1496
|
-
"platform": {
|
|
1497
|
-
"char": "p",
|
|
1498
|
-
"description": "Filter builds by the platform if build ID is not provided",
|
|
1499
|
-
"name": "platform",
|
|
1500
|
-
"hasDynamicHelp": false,
|
|
1501
|
-
"multiple": false,
|
|
1502
|
-
"options": [
|
|
1503
|
-
"android",
|
|
1504
|
-
"ios",
|
|
1505
|
-
"all"
|
|
1506
|
-
],
|
|
1507
|
-
"type": "option"
|
|
1508
|
-
},
|
|
1509
|
-
"profile": {
|
|
1510
|
-
"char": "e",
|
|
1511
|
-
"description": "Filter builds by build profile if build ID is not provided",
|
|
1512
|
-
"name": "profile",
|
|
1513
|
-
"hasDynamicHelp": false,
|
|
1514
|
-
"helpValue": "PROFILE_NAME",
|
|
1515
|
-
"multiple": false,
|
|
1516
|
-
"type": "option"
|
|
1517
1512
|
}
|
|
1518
1513
|
},
|
|
1519
1514
|
"hasDynamicHelp": false,
|
|
1520
1515
|
"hiddenAliases": [],
|
|
1521
|
-
"id": "
|
|
1516
|
+
"id": "channel:create",
|
|
1522
1517
|
"pluginAlias": "eas-cli",
|
|
1523
1518
|
"pluginName": "eas-cli",
|
|
1524
1519
|
"pluginType": "core",
|
|
@@ -1566,39 +1561,44 @@
|
|
|
1566
1561
|
},
|
|
1567
1562
|
"contextDefinition": {
|
|
1568
1563
|
"projectId": {},
|
|
1569
|
-
"loggedIn": {}
|
|
1570
|
-
"vcsClient": {}
|
|
1564
|
+
"loggedIn": {}
|
|
1571
1565
|
},
|
|
1572
1566
|
"isESM": false,
|
|
1573
1567
|
"relativePath": [
|
|
1574
1568
|
"build",
|
|
1575
1569
|
"commands",
|
|
1576
|
-
"
|
|
1577
|
-
"
|
|
1570
|
+
"channel",
|
|
1571
|
+
"create.js"
|
|
1578
1572
|
]
|
|
1579
1573
|
},
|
|
1580
|
-
"
|
|
1574
|
+
"channel:delete": {
|
|
1581
1575
|
"aliases": [],
|
|
1582
|
-
"args": {
|
|
1583
|
-
|
|
1576
|
+
"args": {
|
|
1577
|
+
"name": {
|
|
1578
|
+
"description": "Name of the channel to delete",
|
|
1579
|
+
"name": "name",
|
|
1580
|
+
"required": false
|
|
1581
|
+
}
|
|
1582
|
+
},
|
|
1583
|
+
"description": "Delete a channel",
|
|
1584
1584
|
"flags": {
|
|
1585
|
-
"
|
|
1586
|
-
"
|
|
1587
|
-
"
|
|
1588
|
-
"
|
|
1589
|
-
"
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
"type": "
|
|
1585
|
+
"json": {
|
|
1586
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1587
|
+
"name": "json",
|
|
1588
|
+
"allowNo": false,
|
|
1589
|
+
"type": "boolean"
|
|
1590
|
+
},
|
|
1591
|
+
"non-interactive": {
|
|
1592
|
+
"description": "Run the command in non-interactive mode.",
|
|
1593
|
+
"name": "non-interactive",
|
|
1594
|
+
"noCacheDefault": true,
|
|
1595
|
+
"allowNo": false,
|
|
1596
|
+
"type": "boolean"
|
|
1597
1597
|
}
|
|
1598
1598
|
},
|
|
1599
1599
|
"hasDynamicHelp": false,
|
|
1600
1600
|
"hiddenAliases": [],
|
|
1601
|
-
"id": "
|
|
1601
|
+
"id": "channel:delete",
|
|
1602
1602
|
"pluginAlias": "eas-cli",
|
|
1603
1603
|
"pluginName": "eas-cli",
|
|
1604
1604
|
"pluginType": "core",
|
|
@@ -1645,59 +1645,52 @@
|
|
|
1645
1645
|
}
|
|
1646
1646
|
},
|
|
1647
1647
|
"contextDefinition": {
|
|
1648
|
-
"
|
|
1649
|
-
"
|
|
1650
|
-
"vcsClient": {}
|
|
1648
|
+
"projectId": {},
|
|
1649
|
+
"loggedIn": {}
|
|
1651
1650
|
},
|
|
1652
1651
|
"isESM": false,
|
|
1653
1652
|
"relativePath": [
|
|
1654
1653
|
"build",
|
|
1655
1654
|
"commands",
|
|
1656
|
-
"
|
|
1657
|
-
"
|
|
1655
|
+
"channel",
|
|
1656
|
+
"delete.js"
|
|
1658
1657
|
]
|
|
1659
1658
|
},
|
|
1660
|
-
"
|
|
1659
|
+
"channel:edit": {
|
|
1661
1660
|
"aliases": [],
|
|
1662
1661
|
"args": {
|
|
1663
|
-
"
|
|
1664
|
-
"
|
|
1662
|
+
"name": {
|
|
1663
|
+
"description": "Name of the channel to edit",
|
|
1664
|
+
"name": "name",
|
|
1665
|
+
"required": false
|
|
1665
1666
|
}
|
|
1666
1667
|
},
|
|
1667
|
-
"description": "
|
|
1668
|
+
"description": "point a channel at a new branch",
|
|
1668
1669
|
"flags": {
|
|
1670
|
+
"branch": {
|
|
1671
|
+
"description": "Name of the branch to point to",
|
|
1672
|
+
"name": "branch",
|
|
1673
|
+
"hasDynamicHelp": false,
|
|
1674
|
+
"multiple": false,
|
|
1675
|
+
"type": "option"
|
|
1676
|
+
},
|
|
1677
|
+
"json": {
|
|
1678
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1679
|
+
"name": "json",
|
|
1680
|
+
"allowNo": false,
|
|
1681
|
+
"type": "boolean"
|
|
1682
|
+
},
|
|
1669
1683
|
"non-interactive": {
|
|
1670
1684
|
"description": "Run the command in non-interactive mode.",
|
|
1671
1685
|
"name": "non-interactive",
|
|
1686
|
+
"noCacheDefault": true,
|
|
1672
1687
|
"allowNo": false,
|
|
1673
1688
|
"type": "boolean"
|
|
1674
|
-
},
|
|
1675
|
-
"platform": {
|
|
1676
|
-
"char": "p",
|
|
1677
|
-
"description": "Filter builds by the platform if build ID is not provided",
|
|
1678
|
-
"name": "platform",
|
|
1679
|
-
"hasDynamicHelp": false,
|
|
1680
|
-
"multiple": false,
|
|
1681
|
-
"options": [
|
|
1682
|
-
"android",
|
|
1683
|
-
"ios",
|
|
1684
|
-
"all"
|
|
1685
|
-
],
|
|
1686
|
-
"type": "option"
|
|
1687
|
-
},
|
|
1688
|
-
"profile": {
|
|
1689
|
-
"char": "e",
|
|
1690
|
-
"description": "Filter builds by build profile if build ID is not provided",
|
|
1691
|
-
"name": "profile",
|
|
1692
|
-
"hasDynamicHelp": false,
|
|
1693
|
-
"helpValue": "PROFILE_NAME",
|
|
1694
|
-
"multiple": false,
|
|
1695
|
-
"type": "option"
|
|
1696
1689
|
}
|
|
1697
1690
|
},
|
|
1698
1691
|
"hasDynamicHelp": false,
|
|
1699
1692
|
"hiddenAliases": [],
|
|
1700
|
-
"id": "
|
|
1693
|
+
"id": "channel:edit",
|
|
1701
1694
|
"pluginAlias": "eas-cli",
|
|
1702
1695
|
"pluginName": "eas-cli",
|
|
1703
1696
|
"pluginType": "core",
|
|
@@ -1745,46 +1738,52 @@
|
|
|
1745
1738
|
},
|
|
1746
1739
|
"contextDefinition": {
|
|
1747
1740
|
"projectId": {},
|
|
1748
|
-
"loggedIn": {}
|
|
1749
|
-
"vcsClient": {}
|
|
1741
|
+
"loggedIn": {}
|
|
1750
1742
|
},
|
|
1751
1743
|
"isESM": false,
|
|
1752
1744
|
"relativePath": [
|
|
1753
1745
|
"build",
|
|
1754
1746
|
"commands",
|
|
1755
|
-
"
|
|
1756
|
-
"
|
|
1747
|
+
"channel",
|
|
1748
|
+
"edit.js"
|
|
1757
1749
|
]
|
|
1758
1750
|
},
|
|
1759
|
-
"
|
|
1751
|
+
"channel:list": {
|
|
1760
1752
|
"aliases": [],
|
|
1761
1753
|
"args": {},
|
|
1762
|
-
"description": "
|
|
1754
|
+
"description": "list all channels",
|
|
1763
1755
|
"flags": {
|
|
1764
|
-
"
|
|
1765
|
-
"
|
|
1766
|
-
"name": "
|
|
1756
|
+
"offset": {
|
|
1757
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
1758
|
+
"name": "offset",
|
|
1767
1759
|
"hasDynamicHelp": false,
|
|
1768
1760
|
"multiple": false,
|
|
1769
|
-
"options": [
|
|
1770
|
-
"ios",
|
|
1771
|
-
"android"
|
|
1772
|
-
],
|
|
1773
1761
|
"type": "option"
|
|
1774
1762
|
},
|
|
1775
|
-
"
|
|
1776
|
-
"
|
|
1777
|
-
"
|
|
1778
|
-
"name": "profile",
|
|
1763
|
+
"limit": {
|
|
1764
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 25.",
|
|
1765
|
+
"name": "limit",
|
|
1779
1766
|
"hasDynamicHelp": false,
|
|
1780
|
-
"helpValue": "PROFILE_NAME",
|
|
1781
1767
|
"multiple": false,
|
|
1782
1768
|
"type": "option"
|
|
1769
|
+
},
|
|
1770
|
+
"json": {
|
|
1771
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1772
|
+
"name": "json",
|
|
1773
|
+
"allowNo": false,
|
|
1774
|
+
"type": "boolean"
|
|
1775
|
+
},
|
|
1776
|
+
"non-interactive": {
|
|
1777
|
+
"description": "Run the command in non-interactive mode.",
|
|
1778
|
+
"name": "non-interactive",
|
|
1779
|
+
"noCacheDefault": true,
|
|
1780
|
+
"allowNo": false,
|
|
1781
|
+
"type": "boolean"
|
|
1783
1782
|
}
|
|
1784
1783
|
},
|
|
1785
1784
|
"hasDynamicHelp": false,
|
|
1786
1785
|
"hiddenAliases": [],
|
|
1787
|
-
"id": "
|
|
1786
|
+
"id": "channel:list",
|
|
1788
1787
|
"pluginAlias": "eas-cli",
|
|
1789
1788
|
"pluginName": "eas-cli",
|
|
1790
1789
|
"pluginType": "core",
|
|
@@ -1831,52 +1830,35 @@
|
|
|
1831
1830
|
}
|
|
1832
1831
|
},
|
|
1833
1832
|
"contextDefinition": {
|
|
1834
|
-
"
|
|
1835
|
-
"
|
|
1836
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
1837
|
-
"projectDir": {},
|
|
1838
|
-
"vcsClient": {},
|
|
1839
|
-
"analytics": {},
|
|
1840
|
-
"projectId": {}
|
|
1833
|
+
"projectId": {},
|
|
1834
|
+
"loggedIn": {}
|
|
1841
1835
|
},
|
|
1842
1836
|
"isESM": false,
|
|
1843
1837
|
"relativePath": [
|
|
1844
1838
|
"build",
|
|
1845
1839
|
"commands",
|
|
1846
|
-
"
|
|
1847
|
-
"
|
|
1840
|
+
"channel",
|
|
1841
|
+
"list.js"
|
|
1848
1842
|
]
|
|
1849
1843
|
},
|
|
1850
|
-
"
|
|
1844
|
+
"channel:pause": {
|
|
1851
1845
|
"aliases": [],
|
|
1852
|
-
"args": {
|
|
1853
|
-
|
|
1846
|
+
"args": {
|
|
1847
|
+
"name": {
|
|
1848
|
+
"description": "Name of the channel to edit",
|
|
1849
|
+
"name": "name",
|
|
1850
|
+
"required": false
|
|
1851
|
+
}
|
|
1852
|
+
},
|
|
1853
|
+
"description": "pause a channel to stop it from sending updates",
|
|
1854
1854
|
"flags": {
|
|
1855
|
-
"
|
|
1856
|
-
"description": "
|
|
1857
|
-
"name": "
|
|
1858
|
-
"required": true,
|
|
1859
|
-
"hasDynamicHelp": false,
|
|
1860
|
-
"multiple": false,
|
|
1861
|
-
"type": "option"
|
|
1862
|
-
},
|
|
1863
|
-
"platform": {
|
|
1864
|
-
"char": "p",
|
|
1865
|
-
"name": "platform",
|
|
1855
|
+
"branch": {
|
|
1856
|
+
"description": "Name of the branch to point to",
|
|
1857
|
+
"name": "branch",
|
|
1866
1858
|
"hasDynamicHelp": false,
|
|
1867
1859
|
"multiple": false,
|
|
1868
|
-
"options": [
|
|
1869
|
-
"ios",
|
|
1870
|
-
"android"
|
|
1871
|
-
],
|
|
1872
1860
|
"type": "option"
|
|
1873
1861
|
},
|
|
1874
|
-
"dev-client": {
|
|
1875
|
-
"description": "Filter only dev-client builds.",
|
|
1876
|
-
"name": "dev-client",
|
|
1877
|
-
"allowNo": true,
|
|
1878
|
-
"type": "boolean"
|
|
1879
|
-
},
|
|
1880
1862
|
"json": {
|
|
1881
1863
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1882
1864
|
"name": "json",
|
|
@@ -1886,13 +1868,14 @@
|
|
|
1886
1868
|
"non-interactive": {
|
|
1887
1869
|
"description": "Run the command in non-interactive mode.",
|
|
1888
1870
|
"name": "non-interactive",
|
|
1871
|
+
"noCacheDefault": true,
|
|
1889
1872
|
"allowNo": false,
|
|
1890
1873
|
"type": "boolean"
|
|
1891
1874
|
}
|
|
1892
1875
|
},
|
|
1893
1876
|
"hasDynamicHelp": false,
|
|
1894
1877
|
"hiddenAliases": [],
|
|
1895
|
-
"id": "
|
|
1878
|
+
"id": "channel:pause",
|
|
1896
1879
|
"pluginAlias": "eas-cli",
|
|
1897
1880
|
"pluginName": "eas-cli",
|
|
1898
1881
|
"pluginType": "core",
|
|
@@ -1939,165 +1922,35 @@
|
|
|
1939
1922
|
}
|
|
1940
1923
|
},
|
|
1941
1924
|
"contextDefinition": {
|
|
1942
|
-
"
|
|
1943
|
-
"
|
|
1925
|
+
"projectId": {},
|
|
1926
|
+
"loggedIn": {}
|
|
1944
1927
|
},
|
|
1945
1928
|
"isESM": false,
|
|
1946
1929
|
"relativePath": [
|
|
1947
1930
|
"build",
|
|
1948
1931
|
"commands",
|
|
1949
|
-
"
|
|
1950
|
-
"
|
|
1932
|
+
"channel",
|
|
1933
|
+
"pause.js"
|
|
1951
1934
|
]
|
|
1952
1935
|
},
|
|
1953
|
-
"
|
|
1936
|
+
"channel:resume": {
|
|
1954
1937
|
"aliases": [],
|
|
1955
|
-
"args": {
|
|
1956
|
-
|
|
1938
|
+
"args": {
|
|
1939
|
+
"name": {
|
|
1940
|
+
"description": "Name of the channel to edit",
|
|
1941
|
+
"name": "name",
|
|
1942
|
+
"required": false
|
|
1943
|
+
}
|
|
1944
|
+
},
|
|
1945
|
+
"description": "resume a channel to start sending updates",
|
|
1957
1946
|
"flags": {
|
|
1958
|
-
"
|
|
1959
|
-
"
|
|
1960
|
-
"name": "
|
|
1961
|
-
"hasDynamicHelp": false,
|
|
1962
|
-
"multiple": false,
|
|
1963
|
-
"options": [
|
|
1964
|
-
"android",
|
|
1965
|
-
"ios",
|
|
1966
|
-
"all"
|
|
1967
|
-
],
|
|
1968
|
-
"type": "option"
|
|
1969
|
-
},
|
|
1970
|
-
"skip-credentials-check": {
|
|
1971
|
-
"hidden": true,
|
|
1972
|
-
"name": "skip-credentials-check",
|
|
1973
|
-
"allowNo": false,
|
|
1974
|
-
"type": "boolean"
|
|
1975
|
-
},
|
|
1976
|
-
"skip-project-configuration": {
|
|
1977
|
-
"hidden": true,
|
|
1978
|
-
"name": "skip-project-configuration",
|
|
1979
|
-
"allowNo": false,
|
|
1980
|
-
"type": "boolean"
|
|
1981
|
-
},
|
|
1982
|
-
"profile": {
|
|
1983
|
-
"char": "e",
|
|
1984
|
-
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
1985
|
-
"name": "profile",
|
|
1986
|
-
"hasDynamicHelp": false,
|
|
1987
|
-
"helpValue": "PROFILE_NAME",
|
|
1988
|
-
"multiple": false,
|
|
1989
|
-
"type": "option"
|
|
1990
|
-
},
|
|
1991
|
-
"local": {
|
|
1992
|
-
"description": "Run build locally [experimental]",
|
|
1993
|
-
"name": "local",
|
|
1994
|
-
"allowNo": false,
|
|
1995
|
-
"type": "boolean"
|
|
1996
|
-
},
|
|
1997
|
-
"output": {
|
|
1998
|
-
"description": "Output path for local build",
|
|
1999
|
-
"name": "output",
|
|
2000
|
-
"hasDynamicHelp": false,
|
|
2001
|
-
"multiple": false,
|
|
2002
|
-
"type": "option"
|
|
2003
|
-
},
|
|
2004
|
-
"wait": {
|
|
2005
|
-
"description": "Wait for build(s) to complete",
|
|
2006
|
-
"name": "wait",
|
|
2007
|
-
"allowNo": true,
|
|
2008
|
-
"type": "boolean"
|
|
2009
|
-
},
|
|
2010
|
-
"clear-cache": {
|
|
2011
|
-
"description": "Clear cache before the build",
|
|
2012
|
-
"name": "clear-cache",
|
|
2013
|
-
"allowNo": false,
|
|
2014
|
-
"type": "boolean"
|
|
2015
|
-
},
|
|
2016
|
-
"auto-submit": {
|
|
2017
|
-
"aliases": [
|
|
2018
|
-
"submit"
|
|
2019
|
-
],
|
|
2020
|
-
"char": "s",
|
|
2021
|
-
"description": "Submit on build complete using the submit profile with the same name as the build profile",
|
|
2022
|
-
"exclusive": [
|
|
2023
|
-
"auto-submit-with-profile"
|
|
2024
|
-
],
|
|
2025
|
-
"name": "auto-submit",
|
|
2026
|
-
"allowNo": false,
|
|
2027
|
-
"type": "boolean"
|
|
2028
|
-
},
|
|
2029
|
-
"auto-submit-with-profile": {
|
|
2030
|
-
"description": "Submit on build complete using the submit profile with provided name",
|
|
2031
|
-
"exclusive": [
|
|
2032
|
-
"auto-submit"
|
|
2033
|
-
],
|
|
2034
|
-
"name": "auto-submit-with-profile",
|
|
2035
|
-
"hasDynamicHelp": false,
|
|
2036
|
-
"helpValue": "PROFILE_NAME",
|
|
2037
|
-
"multiple": false,
|
|
2038
|
-
"type": "option"
|
|
2039
|
-
},
|
|
2040
|
-
"what-to-test": {
|
|
2041
|
-
"description": "Specify the \"What to Test\" information for the build in TestFlight (iOS-only). To be used with the `auto-submit` flag",
|
|
2042
|
-
"name": "what-to-test",
|
|
2043
|
-
"hasDynamicHelp": false,
|
|
2044
|
-
"multiple": false,
|
|
2045
|
-
"type": "option"
|
|
2046
|
-
},
|
|
2047
|
-
"resource-class": {
|
|
2048
|
-
"deprecated": {
|
|
2049
|
-
"message": "The --resource-class flag has been deprecated. Define the resource class in eas.json.\nLearn more: https://docs.expo.dev/build-reference/eas-json/"
|
|
2050
|
-
},
|
|
2051
|
-
"description": "The instance type that will be used to run this build [experimental]",
|
|
2052
|
-
"hidden": true,
|
|
2053
|
-
"name": "resource-class",
|
|
2054
|
-
"hasDynamicHelp": false,
|
|
2055
|
-
"multiple": false,
|
|
2056
|
-
"options": [
|
|
2057
|
-
"default",
|
|
2058
|
-
"large",
|
|
2059
|
-
"m1-medium",
|
|
2060
|
-
"medium",
|
|
2061
|
-
"m-medium",
|
|
2062
|
-
"m-large"
|
|
2063
|
-
],
|
|
2064
|
-
"type": "option"
|
|
2065
|
-
},
|
|
2066
|
-
"message": {
|
|
2067
|
-
"char": "m",
|
|
2068
|
-
"description": "A short message describing the build",
|
|
2069
|
-
"name": "message",
|
|
1947
|
+
"branch": {
|
|
1948
|
+
"description": "Name of the branch to point to",
|
|
1949
|
+
"name": "branch",
|
|
2070
1950
|
"hasDynamicHelp": false,
|
|
2071
1951
|
"multiple": false,
|
|
2072
1952
|
"type": "option"
|
|
2073
1953
|
},
|
|
2074
|
-
"build-logger-level": {
|
|
2075
|
-
"description": "The level of logs to output during the build process. Defaults to \"info\".",
|
|
2076
|
-
"name": "build-logger-level",
|
|
2077
|
-
"hasDynamicHelp": false,
|
|
2078
|
-
"multiple": false,
|
|
2079
|
-
"options": [
|
|
2080
|
-
"trace",
|
|
2081
|
-
"debug",
|
|
2082
|
-
"info",
|
|
2083
|
-
"warn",
|
|
2084
|
-
"error",
|
|
2085
|
-
"fatal"
|
|
2086
|
-
],
|
|
2087
|
-
"type": "option"
|
|
2088
|
-
},
|
|
2089
|
-
"freeze-credentials": {
|
|
2090
|
-
"description": "Prevent the build from updating credentials in non-interactive mode",
|
|
2091
|
-
"name": "freeze-credentials",
|
|
2092
|
-
"allowNo": false,
|
|
2093
|
-
"type": "boolean"
|
|
2094
|
-
},
|
|
2095
|
-
"verbose-logs": {
|
|
2096
|
-
"description": "Use verbose logs for the build process",
|
|
2097
|
-
"name": "verbose-logs",
|
|
2098
|
-
"allowNo": false,
|
|
2099
|
-
"type": "boolean"
|
|
2100
|
-
},
|
|
2101
1954
|
"json": {
|
|
2102
1955
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2103
1956
|
"name": "json",
|
|
@@ -2107,13 +1960,14 @@
|
|
|
2107
1960
|
"non-interactive": {
|
|
2108
1961
|
"description": "Run the command in non-interactive mode.",
|
|
2109
1962
|
"name": "non-interactive",
|
|
1963
|
+
"noCacheDefault": true,
|
|
2110
1964
|
"allowNo": false,
|
|
2111
1965
|
"type": "boolean"
|
|
2112
1966
|
}
|
|
2113
1967
|
},
|
|
2114
1968
|
"hasDynamicHelp": false,
|
|
2115
1969
|
"hiddenAliases": [],
|
|
2116
|
-
"id": "
|
|
1970
|
+
"id": "channel:resume",
|
|
2117
1971
|
"pluginAlias": "eas-cli",
|
|
2118
1972
|
"pluginName": "eas-cli",
|
|
2119
1973
|
"pluginType": "core",
|
|
@@ -2160,87 +2014,121 @@
|
|
|
2160
2014
|
}
|
|
2161
2015
|
},
|
|
2162
2016
|
"contextDefinition": {
|
|
2163
|
-
"
|
|
2164
|
-
"
|
|
2165
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
2166
|
-
"projectDir": {},
|
|
2167
|
-
"analytics": {},
|
|
2168
|
-
"vcsClient": {}
|
|
2017
|
+
"projectId": {},
|
|
2018
|
+
"loggedIn": {}
|
|
2169
2019
|
},
|
|
2170
2020
|
"isESM": false,
|
|
2171
2021
|
"relativePath": [
|
|
2172
2022
|
"build",
|
|
2173
2023
|
"commands",
|
|
2174
|
-
"
|
|
2175
|
-
"
|
|
2024
|
+
"channel",
|
|
2025
|
+
"resume.js"
|
|
2176
2026
|
]
|
|
2177
2027
|
},
|
|
2178
|
-
"
|
|
2028
|
+
"channel:rollout": {
|
|
2179
2029
|
"aliases": [],
|
|
2180
|
-
"args": {
|
|
2181
|
-
|
|
2030
|
+
"args": {
|
|
2031
|
+
"channel": {
|
|
2032
|
+
"description": "channel on which the rollout should be done",
|
|
2033
|
+
"name": "channel"
|
|
2034
|
+
}
|
|
2035
|
+
},
|
|
2036
|
+
"description": "Roll a new branch out on a channel incrementally.",
|
|
2182
2037
|
"flags": {
|
|
2183
|
-
"
|
|
2184
|
-
"
|
|
2185
|
-
"name": "
|
|
2186
|
-
"
|
|
2038
|
+
"action": {
|
|
2039
|
+
"description": "Rollout action to perform",
|
|
2040
|
+
"name": "action",
|
|
2041
|
+
"relationships": [
|
|
2042
|
+
{
|
|
2043
|
+
"type": "all",
|
|
2044
|
+
"flags": [
|
|
2045
|
+
{
|
|
2046
|
+
"name": "percent"
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
"name": "outcome"
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
"name": "branch"
|
|
2053
|
+
},
|
|
2054
|
+
{
|
|
2055
|
+
"name": "runtime-version"
|
|
2056
|
+
}
|
|
2057
|
+
]
|
|
2058
|
+
}
|
|
2059
|
+
],
|
|
2060
|
+
"required": false,
|
|
2187
2061
|
"hasDynamicHelp": false,
|
|
2188
2062
|
"multiple": false,
|
|
2189
2063
|
"options": [
|
|
2190
|
-
"
|
|
2191
|
-
"
|
|
2064
|
+
"create",
|
|
2065
|
+
"edit",
|
|
2066
|
+
"end",
|
|
2067
|
+
"view"
|
|
2192
2068
|
],
|
|
2193
2069
|
"type": "option"
|
|
2194
2070
|
},
|
|
2195
|
-
"
|
|
2196
|
-
"
|
|
2197
|
-
"
|
|
2198
|
-
"
|
|
2071
|
+
"percent": {
|
|
2072
|
+
"description": "Percent of users to send to the new branch. Use with --action=edit or --action=create",
|
|
2073
|
+
"name": "percent",
|
|
2074
|
+
"required": false,
|
|
2199
2075
|
"hasDynamicHelp": false,
|
|
2200
|
-
"helpValue": "PROFILE_NAME",
|
|
2201
2076
|
"multiple": false,
|
|
2202
2077
|
"type": "option"
|
|
2203
2078
|
},
|
|
2204
|
-
"
|
|
2205
|
-
"
|
|
2206
|
-
"
|
|
2207
|
-
"
|
|
2208
|
-
"required": true,
|
|
2079
|
+
"outcome": {
|
|
2080
|
+
"description": "End outcome of rollout. Use with --action=end",
|
|
2081
|
+
"name": "outcome",
|
|
2082
|
+
"required": false,
|
|
2209
2083
|
"hasDynamicHelp": false,
|
|
2210
2084
|
"multiple": false,
|
|
2211
2085
|
"options": [
|
|
2212
|
-
"
|
|
2213
|
-
"
|
|
2214
|
-
"post-build"
|
|
2086
|
+
"republish-and-revert",
|
|
2087
|
+
"revert"
|
|
2215
2088
|
],
|
|
2216
2089
|
"type": "option"
|
|
2217
2090
|
},
|
|
2218
|
-
"
|
|
2219
|
-
"
|
|
2220
|
-
"
|
|
2221
|
-
"
|
|
2222
|
-
"required": true,
|
|
2091
|
+
"branch": {
|
|
2092
|
+
"description": "Branch to roll out. Use with --action=create",
|
|
2093
|
+
"name": "branch",
|
|
2094
|
+
"required": false,
|
|
2223
2095
|
"hasDynamicHelp": false,
|
|
2224
|
-
"helpValue": "OUTPUT_DIRECTORY",
|
|
2225
2096
|
"multiple": false,
|
|
2226
2097
|
"type": "option"
|
|
2227
2098
|
},
|
|
2228
|
-
"
|
|
2229
|
-
"description": "
|
|
2230
|
-
"name": "
|
|
2099
|
+
"runtime-version": {
|
|
2100
|
+
"description": "Runtime version to target. Use with --action=create",
|
|
2101
|
+
"name": "runtime-version",
|
|
2102
|
+
"required": false,
|
|
2103
|
+
"hasDynamicHelp": false,
|
|
2104
|
+
"multiple": false,
|
|
2105
|
+
"type": "option"
|
|
2106
|
+
},
|
|
2107
|
+
"private-key-path": {
|
|
2108
|
+
"description": "File containing the PEM-encoded private key corresponding to the certificate in expo-updates' configuration. Defaults to a file named \"private-key.pem\" in the certificate's directory. Only relevant if you are using code signing: https://docs.expo.dev/eas-update/code-signing/",
|
|
2109
|
+
"name": "private-key-path",
|
|
2110
|
+
"required": false,
|
|
2111
|
+
"hasDynamicHelp": false,
|
|
2112
|
+
"multiple": false,
|
|
2113
|
+
"type": "option"
|
|
2114
|
+
},
|
|
2115
|
+
"json": {
|
|
2116
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2117
|
+
"name": "json",
|
|
2231
2118
|
"allowNo": false,
|
|
2232
2119
|
"type": "boolean"
|
|
2233
2120
|
},
|
|
2234
|
-
"
|
|
2235
|
-
"
|
|
2236
|
-
"name": "
|
|
2121
|
+
"non-interactive": {
|
|
2122
|
+
"description": "Run the command in non-interactive mode.",
|
|
2123
|
+
"name": "non-interactive",
|
|
2124
|
+
"noCacheDefault": true,
|
|
2237
2125
|
"allowNo": false,
|
|
2238
2126
|
"type": "boolean"
|
|
2239
2127
|
}
|
|
2240
2128
|
},
|
|
2241
2129
|
"hasDynamicHelp": false,
|
|
2242
2130
|
"hiddenAliases": [],
|
|
2243
|
-
"id": "
|
|
2131
|
+
"id": "channel:rollout",
|
|
2244
2132
|
"pluginAlias": "eas-cli",
|
|
2245
2133
|
"pluginName": "eas-cli",
|
|
2246
2134
|
"pluginType": "core",
|
|
@@ -2288,70 +2176,59 @@
|
|
|
2288
2176
|
},
|
|
2289
2177
|
"contextDefinition": {
|
|
2290
2178
|
"loggedIn": {},
|
|
2291
|
-
"
|
|
2292
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
2293
|
-
"projectDir": {},
|
|
2294
|
-
"analytics": {},
|
|
2179
|
+
"privateProjectConfig": {},
|
|
2295
2180
|
"vcsClient": {}
|
|
2296
2181
|
},
|
|
2297
2182
|
"isESM": false,
|
|
2298
2183
|
"relativePath": [
|
|
2299
2184
|
"build",
|
|
2300
2185
|
"commands",
|
|
2301
|
-
"
|
|
2302
|
-
"
|
|
2186
|
+
"channel",
|
|
2187
|
+
"rollout.js"
|
|
2303
2188
|
]
|
|
2304
2189
|
},
|
|
2305
|
-
"
|
|
2190
|
+
"channel:view": {
|
|
2306
2191
|
"aliases": [],
|
|
2307
|
-
"args": {
|
|
2192
|
+
"args": {
|
|
2193
|
+
"name": {
|
|
2194
|
+
"description": "Name of the channel to view",
|
|
2195
|
+
"name": "name",
|
|
2196
|
+
"required": false
|
|
2197
|
+
}
|
|
2198
|
+
},
|
|
2199
|
+
"description": "view a channel",
|
|
2308
2200
|
"flags": {
|
|
2309
|
-
"
|
|
2310
|
-
"
|
|
2311
|
-
"name": "
|
|
2312
|
-
"
|
|
2313
|
-
"
|
|
2314
|
-
"multiple": false,
|
|
2315
|
-
"options": [
|
|
2316
|
-
"android",
|
|
2317
|
-
"ios"
|
|
2318
|
-
],
|
|
2319
|
-
"type": "option"
|
|
2201
|
+
"json": {
|
|
2202
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2203
|
+
"name": "json",
|
|
2204
|
+
"allowNo": false,
|
|
2205
|
+
"type": "boolean"
|
|
2320
2206
|
},
|
|
2321
|
-
"
|
|
2322
|
-
"
|
|
2323
|
-
"
|
|
2324
|
-
"
|
|
2207
|
+
"non-interactive": {
|
|
2208
|
+
"description": "Run the command in non-interactive mode.",
|
|
2209
|
+
"name": "non-interactive",
|
|
2210
|
+
"noCacheDefault": true,
|
|
2211
|
+
"allowNo": false,
|
|
2212
|
+
"type": "boolean"
|
|
2213
|
+
},
|
|
2214
|
+
"offset": {
|
|
2215
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
2216
|
+
"name": "offset",
|
|
2325
2217
|
"hasDynamicHelp": false,
|
|
2326
|
-
"helpValue": "PROFILE_NAME",
|
|
2327
2218
|
"multiple": false,
|
|
2328
2219
|
"type": "option"
|
|
2329
2220
|
},
|
|
2330
|
-
"
|
|
2331
|
-
"description": "
|
|
2332
|
-
"
|
|
2333
|
-
"auto-submit-with-profile"
|
|
2334
|
-
],
|
|
2335
|
-
"name": "auto-submit",
|
|
2336
|
-
"allowNo": false,
|
|
2337
|
-
"type": "boolean"
|
|
2338
|
-
},
|
|
2339
|
-
"auto-submit-with-profile": {
|
|
2340
|
-
"description": "Submit on build complete using the submit profile with provided name",
|
|
2341
|
-
"exclusive": [
|
|
2342
|
-
"auto-submit"
|
|
2343
|
-
],
|
|
2344
|
-
"name": "auto-submit-with-profile",
|
|
2221
|
+
"limit": {
|
|
2222
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
2223
|
+
"name": "limit",
|
|
2345
2224
|
"hasDynamicHelp": false,
|
|
2346
|
-
"helpValue": "PROFILE_NAME",
|
|
2347
2225
|
"multiple": false,
|
|
2348
2226
|
"type": "option"
|
|
2349
2227
|
}
|
|
2350
2228
|
},
|
|
2351
2229
|
"hasDynamicHelp": false,
|
|
2352
|
-
"hidden": true,
|
|
2353
2230
|
"hiddenAliases": [],
|
|
2354
|
-
"id": "
|
|
2231
|
+
"id": "channel:view",
|
|
2355
2232
|
"pluginAlias": "eas-cli",
|
|
2356
2233
|
"pluginName": "eas-cli",
|
|
2357
2234
|
"pluginType": "core",
|
|
@@ -2398,28 +2275,36 @@
|
|
|
2398
2275
|
}
|
|
2399
2276
|
},
|
|
2400
2277
|
"contextDefinition": {
|
|
2401
|
-
"
|
|
2402
|
-
"
|
|
2403
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
2404
|
-
"projectDir": {},
|
|
2405
|
-
"analytics": {},
|
|
2406
|
-
"vcsClient": {}
|
|
2278
|
+
"projectId": {},
|
|
2279
|
+
"loggedIn": {}
|
|
2407
2280
|
},
|
|
2408
2281
|
"isESM": false,
|
|
2409
2282
|
"relativePath": [
|
|
2410
2283
|
"build",
|
|
2411
2284
|
"commands",
|
|
2412
|
-
"
|
|
2413
|
-
"
|
|
2285
|
+
"channel",
|
|
2286
|
+
"view.js"
|
|
2414
2287
|
]
|
|
2415
2288
|
},
|
|
2416
|
-
"build:
|
|
2289
|
+
"build:cancel": {
|
|
2417
2290
|
"aliases": [],
|
|
2418
|
-
"args": {
|
|
2419
|
-
|
|
2291
|
+
"args": {
|
|
2292
|
+
"BUILD_ID": {
|
|
2293
|
+
"name": "BUILD_ID"
|
|
2294
|
+
}
|
|
2295
|
+
},
|
|
2296
|
+
"description": "cancel a build",
|
|
2420
2297
|
"flags": {
|
|
2298
|
+
"non-interactive": {
|
|
2299
|
+
"description": "Run the command in non-interactive mode.",
|
|
2300
|
+
"name": "non-interactive",
|
|
2301
|
+
"noCacheDefault": true,
|
|
2302
|
+
"allowNo": false,
|
|
2303
|
+
"type": "boolean"
|
|
2304
|
+
},
|
|
2421
2305
|
"platform": {
|
|
2422
2306
|
"char": "p",
|
|
2307
|
+
"description": "Filter builds by the platform if build ID is not provided",
|
|
2423
2308
|
"name": "platform",
|
|
2424
2309
|
"hasDynamicHelp": false,
|
|
2425
2310
|
"multiple": false,
|
|
@@ -2430,155 +2315,19 @@
|
|
|
2430
2315
|
],
|
|
2431
2316
|
"type": "option"
|
|
2432
2317
|
},
|
|
2433
|
-
"
|
|
2434
|
-
"
|
|
2435
|
-
"
|
|
2436
|
-
"
|
|
2437
|
-
"
|
|
2438
|
-
"
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
"in-progress",
|
|
2442
|
-
"pending-cancel",
|
|
2443
|
-
"errored",
|
|
2444
|
-
"finished",
|
|
2445
|
-
"canceled"
|
|
2446
|
-
],
|
|
2447
|
-
"type": "option"
|
|
2448
|
-
},
|
|
2449
|
-
"distribution": {
|
|
2450
|
-
"description": "Filter only builds with the specified distribution type",
|
|
2451
|
-
"name": "distribution",
|
|
2452
|
-
"hasDynamicHelp": false,
|
|
2453
|
-
"multiple": false,
|
|
2454
|
-
"options": [
|
|
2455
|
-
"store",
|
|
2456
|
-
"internal",
|
|
2457
|
-
"simulator"
|
|
2458
|
-
],
|
|
2459
|
-
"type": "option"
|
|
2460
|
-
},
|
|
2461
|
-
"channel": {
|
|
2462
|
-
"name": "channel",
|
|
2463
|
-
"hasDynamicHelp": false,
|
|
2464
|
-
"multiple": false,
|
|
2465
|
-
"type": "option"
|
|
2466
|
-
},
|
|
2467
|
-
"app-version": {
|
|
2468
|
-
"aliases": [
|
|
2469
|
-
"appVersion"
|
|
2470
|
-
],
|
|
2471
|
-
"description": "Filter only builds created with the specified main app version",
|
|
2472
|
-
"name": "app-version",
|
|
2473
|
-
"hasDynamicHelp": false,
|
|
2474
|
-
"multiple": false,
|
|
2475
|
-
"type": "option"
|
|
2476
|
-
},
|
|
2477
|
-
"app-build-version": {
|
|
2478
|
-
"aliases": [
|
|
2479
|
-
"appBuildVersion"
|
|
2480
|
-
],
|
|
2481
|
-
"description": "Filter only builds created with the specified app build version",
|
|
2482
|
-
"name": "app-build-version",
|
|
2483
|
-
"hasDynamicHelp": false,
|
|
2484
|
-
"multiple": false,
|
|
2485
|
-
"type": "option"
|
|
2486
|
-
},
|
|
2487
|
-
"sdk-version": {
|
|
2488
|
-
"aliases": [
|
|
2489
|
-
"sdkVersion"
|
|
2490
|
-
],
|
|
2491
|
-
"description": "Filter only builds created with the specified Expo SDK version",
|
|
2492
|
-
"name": "sdk-version",
|
|
2493
|
-
"hasDynamicHelp": false,
|
|
2494
|
-
"multiple": false,
|
|
2495
|
-
"type": "option"
|
|
2496
|
-
},
|
|
2497
|
-
"runtime-version": {
|
|
2498
|
-
"aliases": [
|
|
2499
|
-
"runtimeVersion"
|
|
2500
|
-
],
|
|
2501
|
-
"description": "Filter only builds created with the specified runtime version",
|
|
2502
|
-
"name": "runtime-version",
|
|
2503
|
-
"hasDynamicHelp": false,
|
|
2504
|
-
"multiple": false,
|
|
2505
|
-
"type": "option"
|
|
2506
|
-
},
|
|
2507
|
-
"app-identifier": {
|
|
2508
|
-
"aliases": [
|
|
2509
|
-
"appIdentifier"
|
|
2510
|
-
],
|
|
2511
|
-
"description": "Filter only builds created with the specified app identifier",
|
|
2512
|
-
"name": "app-identifier",
|
|
2513
|
-
"hasDynamicHelp": false,
|
|
2514
|
-
"multiple": false,
|
|
2515
|
-
"type": "option"
|
|
2516
|
-
},
|
|
2517
|
-
"build-profile": {
|
|
2518
|
-
"aliases": [
|
|
2519
|
-
"profile",
|
|
2520
|
-
"buildProfile"
|
|
2521
|
-
],
|
|
2522
|
-
"char": "e",
|
|
2523
|
-
"description": "Filter only builds created with the specified build profile",
|
|
2524
|
-
"name": "build-profile",
|
|
2525
|
-
"hasDynamicHelp": false,
|
|
2526
|
-
"multiple": false,
|
|
2527
|
-
"type": "option"
|
|
2528
|
-
},
|
|
2529
|
-
"git-commit-hash": {
|
|
2530
|
-
"aliases": [
|
|
2531
|
-
"gitCommitHash"
|
|
2532
|
-
],
|
|
2533
|
-
"description": "Filter only builds created with the specified git commit hash",
|
|
2534
|
-
"name": "git-commit-hash",
|
|
2535
|
-
"hasDynamicHelp": false,
|
|
2536
|
-
"multiple": false,
|
|
2537
|
-
"type": "option"
|
|
2538
|
-
},
|
|
2539
|
-
"fingerprint-hash": {
|
|
2540
|
-
"description": "Filter only builds with the specified fingerprint hash",
|
|
2541
|
-
"name": "fingerprint-hash",
|
|
2542
|
-
"hasDynamicHelp": false,
|
|
2543
|
-
"multiple": false,
|
|
2544
|
-
"type": "option"
|
|
2545
|
-
},
|
|
2546
|
-
"offset": {
|
|
2547
|
-
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
2548
|
-
"name": "offset",
|
|
2549
|
-
"hasDynamicHelp": false,
|
|
2550
|
-
"multiple": false,
|
|
2551
|
-
"type": "option"
|
|
2552
|
-
},
|
|
2553
|
-
"limit": {
|
|
2554
|
-
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 50.",
|
|
2555
|
-
"name": "limit",
|
|
2556
|
-
"hasDynamicHelp": false,
|
|
2557
|
-
"multiple": false,
|
|
2558
|
-
"type": "option"
|
|
2559
|
-
},
|
|
2560
|
-
"json": {
|
|
2561
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2562
|
-
"name": "json",
|
|
2563
|
-
"allowNo": false,
|
|
2564
|
-
"type": "boolean"
|
|
2565
|
-
},
|
|
2566
|
-
"non-interactive": {
|
|
2567
|
-
"description": "Run the command in non-interactive mode.",
|
|
2568
|
-
"name": "non-interactive",
|
|
2569
|
-
"allowNo": false,
|
|
2570
|
-
"type": "boolean"
|
|
2571
|
-
},
|
|
2572
|
-
"simulator": {
|
|
2573
|
-
"description": "Filter only iOS simulator builds. Can only be used with --platform flag set to \"ios\"",
|
|
2574
|
-
"name": "simulator",
|
|
2575
|
-
"allowNo": false,
|
|
2576
|
-
"type": "boolean"
|
|
2318
|
+
"profile": {
|
|
2319
|
+
"char": "e",
|
|
2320
|
+
"description": "Filter builds by build profile if build ID is not provided",
|
|
2321
|
+
"name": "profile",
|
|
2322
|
+
"hasDynamicHelp": false,
|
|
2323
|
+
"helpValue": "PROFILE_NAME",
|
|
2324
|
+
"multiple": false,
|
|
2325
|
+
"type": "option"
|
|
2577
2326
|
}
|
|
2578
2327
|
},
|
|
2579
2328
|
"hasDynamicHelp": false,
|
|
2580
2329
|
"hiddenAliases": [],
|
|
2581
|
-
"id": "build:
|
|
2330
|
+
"id": "build:cancel",
|
|
2582
2331
|
"pluginAlias": "eas-cli",
|
|
2583
2332
|
"pluginName": "eas-cli",
|
|
2584
2333
|
"pluginType": "core",
|
|
@@ -2634,88 +2383,131 @@
|
|
|
2634
2383
|
"build",
|
|
2635
2384
|
"commands",
|
|
2636
2385
|
"build",
|
|
2637
|
-
"
|
|
2386
|
+
"cancel.js"
|
|
2638
2387
|
]
|
|
2639
2388
|
},
|
|
2640
|
-
"build:
|
|
2389
|
+
"build:configure": {
|
|
2641
2390
|
"aliases": [],
|
|
2642
2391
|
"args": {},
|
|
2643
|
-
"description": "
|
|
2392
|
+
"description": "configure the project to support EAS Build",
|
|
2644
2393
|
"flags": {
|
|
2645
2394
|
"platform": {
|
|
2646
2395
|
"char": "p",
|
|
2396
|
+
"description": "Platform to configure",
|
|
2647
2397
|
"name": "platform",
|
|
2648
2398
|
"hasDynamicHelp": false,
|
|
2649
2399
|
"multiple": false,
|
|
2650
2400
|
"options": [
|
|
2651
2401
|
"android",
|
|
2652
|
-
"ios"
|
|
2402
|
+
"ios",
|
|
2403
|
+
"all"
|
|
2653
2404
|
],
|
|
2654
2405
|
"type": "option"
|
|
2406
|
+
}
|
|
2407
|
+
},
|
|
2408
|
+
"hasDynamicHelp": false,
|
|
2409
|
+
"hiddenAliases": [],
|
|
2410
|
+
"id": "build:configure",
|
|
2411
|
+
"pluginAlias": "eas-cli",
|
|
2412
|
+
"pluginName": "eas-cli",
|
|
2413
|
+
"pluginType": "core",
|
|
2414
|
+
"strict": true,
|
|
2415
|
+
"enableJsonFlag": false,
|
|
2416
|
+
"ContextOptions": {
|
|
2417
|
+
"LoggedIn": {
|
|
2418
|
+
"loggedIn": {}
|
|
2655
2419
|
},
|
|
2656
|
-
"
|
|
2657
|
-
"
|
|
2658
|
-
"profile"
|
|
2659
|
-
],
|
|
2660
|
-
"char": "e",
|
|
2661
|
-
"description": "Name of the target build profile from eas.json. Credentials and environment variables from this profile will be used when re-signing. Defaults to \"production\" if defined in eas.json.",
|
|
2662
|
-
"name": "target-profile",
|
|
2663
|
-
"hasDynamicHelp": false,
|
|
2664
|
-
"helpValue": "PROFILE_NAME",
|
|
2665
|
-
"multiple": false,
|
|
2666
|
-
"type": "option"
|
|
2420
|
+
"MaybeLoggedIn": {
|
|
2421
|
+
"maybeLoggedIn": {}
|
|
2667
2422
|
},
|
|
2668
|
-
"
|
|
2669
|
-
"
|
|
2670
|
-
"name": "source-profile",
|
|
2671
|
-
"hasDynamicHelp": false,
|
|
2672
|
-
"helpValue": "PROFILE_NAME",
|
|
2673
|
-
"multiple": false,
|
|
2674
|
-
"type": "option"
|
|
2423
|
+
"DynamicLoggedIn": {
|
|
2424
|
+
"getDynamicLoggedInAsync": {}
|
|
2675
2425
|
},
|
|
2676
|
-
"
|
|
2677
|
-
"
|
|
2678
|
-
"name": "wait",
|
|
2679
|
-
"allowNo": true,
|
|
2680
|
-
"type": "boolean"
|
|
2426
|
+
"SessionManagment": {
|
|
2427
|
+
"sessionManager": {}
|
|
2681
2428
|
},
|
|
2682
|
-
"
|
|
2683
|
-
"
|
|
2684
|
-
"name": "id",
|
|
2685
|
-
"hasDynamicHelp": false,
|
|
2686
|
-
"multiple": false,
|
|
2687
|
-
"type": "option"
|
|
2429
|
+
"OptionalProjectConfig": {
|
|
2430
|
+
"optionalPrivateProjectConfig": {}
|
|
2688
2431
|
},
|
|
2689
|
-
"
|
|
2690
|
-
"
|
|
2691
|
-
"name": "offset",
|
|
2692
|
-
"hasDynamicHelp": false,
|
|
2693
|
-
"multiple": false,
|
|
2694
|
-
"type": "option"
|
|
2432
|
+
"ProjectDir": {
|
|
2433
|
+
"projectDir": {}
|
|
2695
2434
|
},
|
|
2696
|
-
"
|
|
2697
|
-
"
|
|
2698
|
-
"
|
|
2699
|
-
"hasDynamicHelp": false,
|
|
2700
|
-
"multiple": false,
|
|
2701
|
-
"type": "option"
|
|
2435
|
+
"DynamicProjectConfig": {
|
|
2436
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
2437
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
2702
2438
|
},
|
|
2703
|
-
"
|
|
2704
|
-
"
|
|
2705
|
-
"
|
|
2706
|
-
|
|
2707
|
-
|
|
2439
|
+
"ProjectConfig": {
|
|
2440
|
+
"loggedIn": {},
|
|
2441
|
+
"privateProjectConfig": {}
|
|
2442
|
+
},
|
|
2443
|
+
"Analytics": {
|
|
2444
|
+
"analytics": {}
|
|
2445
|
+
},
|
|
2446
|
+
"Vcs": {
|
|
2447
|
+
"vcsClient": {}
|
|
2448
|
+
},
|
|
2449
|
+
"ServerSideEnvironmentVariables": {
|
|
2450
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
2708
2451
|
},
|
|
2452
|
+
"ProjectId": {
|
|
2453
|
+
"projectId": {}
|
|
2454
|
+
}
|
|
2455
|
+
},
|
|
2456
|
+
"contextDefinition": {
|
|
2457
|
+
"loggedIn": {},
|
|
2458
|
+
"privateProjectConfig": {},
|
|
2459
|
+
"vcsClient": {}
|
|
2460
|
+
},
|
|
2461
|
+
"isESM": false,
|
|
2462
|
+
"relativePath": [
|
|
2463
|
+
"build",
|
|
2464
|
+
"commands",
|
|
2465
|
+
"build",
|
|
2466
|
+
"configure.js"
|
|
2467
|
+
]
|
|
2468
|
+
},
|
|
2469
|
+
"build:delete": {
|
|
2470
|
+
"aliases": [],
|
|
2471
|
+
"args": {
|
|
2472
|
+
"BUILD_ID": {
|
|
2473
|
+
"name": "BUILD_ID"
|
|
2474
|
+
}
|
|
2475
|
+
},
|
|
2476
|
+
"description": "delete a build",
|
|
2477
|
+
"flags": {
|
|
2709
2478
|
"non-interactive": {
|
|
2710
2479
|
"description": "Run the command in non-interactive mode.",
|
|
2711
2480
|
"name": "non-interactive",
|
|
2481
|
+
"noCacheDefault": true,
|
|
2712
2482
|
"allowNo": false,
|
|
2713
2483
|
"type": "boolean"
|
|
2484
|
+
},
|
|
2485
|
+
"platform": {
|
|
2486
|
+
"char": "p",
|
|
2487
|
+
"description": "Filter builds by the platform if build ID is not provided",
|
|
2488
|
+
"name": "platform",
|
|
2489
|
+
"hasDynamicHelp": false,
|
|
2490
|
+
"multiple": false,
|
|
2491
|
+
"options": [
|
|
2492
|
+
"android",
|
|
2493
|
+
"ios",
|
|
2494
|
+
"all"
|
|
2495
|
+
],
|
|
2496
|
+
"type": "option"
|
|
2497
|
+
},
|
|
2498
|
+
"profile": {
|
|
2499
|
+
"char": "e",
|
|
2500
|
+
"description": "Filter builds by build profile if build ID is not provided",
|
|
2501
|
+
"name": "profile",
|
|
2502
|
+
"hasDynamicHelp": false,
|
|
2503
|
+
"helpValue": "PROFILE_NAME",
|
|
2504
|
+
"multiple": false,
|
|
2505
|
+
"type": "option"
|
|
2714
2506
|
}
|
|
2715
2507
|
},
|
|
2716
2508
|
"hasDynamicHelp": false,
|
|
2717
2509
|
"hiddenAliases": [],
|
|
2718
|
-
"id": "build:
|
|
2510
|
+
"id": "build:delete",
|
|
2719
2511
|
"pluginAlias": "eas-cli",
|
|
2720
2512
|
"pluginName": "eas-cli",
|
|
2721
2513
|
"pluginType": "core",
|
|
@@ -2762,11 +2554,8 @@
|
|
|
2762
2554
|
}
|
|
2763
2555
|
},
|
|
2764
2556
|
"contextDefinition": {
|
|
2557
|
+
"projectId": {},
|
|
2765
2558
|
"loggedIn": {},
|
|
2766
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
2767
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
2768
|
-
"projectDir": {},
|
|
2769
|
-
"analytics": {},
|
|
2770
2559
|
"vcsClient": {}
|
|
2771
2560
|
},
|
|
2772
2561
|
"isESM": false,
|
|
@@ -2774,97 +2563,44 @@
|
|
|
2774
2563
|
"build",
|
|
2775
2564
|
"commands",
|
|
2776
2565
|
"build",
|
|
2777
|
-
"
|
|
2566
|
+
"delete.js"
|
|
2778
2567
|
]
|
|
2779
2568
|
},
|
|
2780
|
-
"build:
|
|
2569
|
+
"build:dev": {
|
|
2781
2570
|
"aliases": [],
|
|
2782
2571
|
"args": {},
|
|
2783
|
-
"description": "run simulator/emulator
|
|
2572
|
+
"description": "run dev client simulator/emulator build with matching fingerprint or create a new one",
|
|
2784
2573
|
"flags": {
|
|
2785
|
-
"latest": {
|
|
2786
|
-
"description": "Run the latest simulator/emulator build for specified platform",
|
|
2787
|
-
"exclusive": [
|
|
2788
|
-
"id",
|
|
2789
|
-
"path",
|
|
2790
|
-
"url"
|
|
2791
|
-
],
|
|
2792
|
-
"name": "latest",
|
|
2793
|
-
"allowNo": false,
|
|
2794
|
-
"type": "boolean"
|
|
2795
|
-
},
|
|
2796
|
-
"url": {
|
|
2797
|
-
"description": "Simulator/Emulator build archive url",
|
|
2798
|
-
"exclusive": [
|
|
2799
|
-
"latest",
|
|
2800
|
-
"id",
|
|
2801
|
-
"path"
|
|
2802
|
-
],
|
|
2803
|
-
"name": "url",
|
|
2804
|
-
"hasDynamicHelp": false,
|
|
2805
|
-
"multiple": false,
|
|
2806
|
-
"type": "option"
|
|
2807
|
-
},
|
|
2808
|
-
"path": {
|
|
2809
|
-
"description": "Path to the simulator/emulator build archive or app",
|
|
2810
|
-
"exclusive": [
|
|
2811
|
-
"latest",
|
|
2812
|
-
"id",
|
|
2813
|
-
"url"
|
|
2814
|
-
],
|
|
2815
|
-
"name": "path",
|
|
2816
|
-
"hasDynamicHelp": false,
|
|
2817
|
-
"multiple": false,
|
|
2818
|
-
"type": "option"
|
|
2819
|
-
},
|
|
2820
|
-
"id": {
|
|
2821
|
-
"description": "ID of the simulator/emulator build to run",
|
|
2822
|
-
"exclusive": [
|
|
2823
|
-
"latest, path, url"
|
|
2824
|
-
],
|
|
2825
|
-
"name": "id",
|
|
2826
|
-
"hasDynamicHelp": false,
|
|
2827
|
-
"multiple": false,
|
|
2828
|
-
"type": "option"
|
|
2829
|
-
},
|
|
2830
2574
|
"platform": {
|
|
2831
2575
|
"char": "p",
|
|
2832
2576
|
"name": "platform",
|
|
2833
2577
|
"hasDynamicHelp": false,
|
|
2834
2578
|
"multiple": false,
|
|
2835
2579
|
"options": [
|
|
2836
|
-
"
|
|
2837
|
-
"
|
|
2580
|
+
"ios",
|
|
2581
|
+
"android"
|
|
2838
2582
|
],
|
|
2839
2583
|
"type": "option"
|
|
2840
2584
|
},
|
|
2841
2585
|
"profile": {
|
|
2842
2586
|
"char": "e",
|
|
2843
|
-
"description": "Name of the build profile
|
|
2587
|
+
"description": "Name of the build profile from eas.json. It must be a profile allowing to create emulator/simulator internal distribution dev client builds. The \"development-simulator\" build profile will be selected by default.",
|
|
2844
2588
|
"name": "profile",
|
|
2845
2589
|
"hasDynamicHelp": false,
|
|
2846
2590
|
"helpValue": "PROFILE_NAME",
|
|
2847
2591
|
"multiple": false,
|
|
2848
2592
|
"type": "option"
|
|
2849
2593
|
},
|
|
2850
|
-
"
|
|
2851
|
-
"description": "
|
|
2852
|
-
"name": "
|
|
2853
|
-
"
|
|
2854
|
-
"
|
|
2855
|
-
"type": "option"
|
|
2856
|
-
},
|
|
2857
|
-
"limit": {
|
|
2858
|
-
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
2859
|
-
"name": "limit",
|
|
2860
|
-
"hasDynamicHelp": false,
|
|
2861
|
-
"multiple": false,
|
|
2862
|
-
"type": "option"
|
|
2594
|
+
"skip-build-if-not-found": {
|
|
2595
|
+
"description": "Skip build if no successful build with matching fingerprint is found.",
|
|
2596
|
+
"name": "skip-build-if-not-found",
|
|
2597
|
+
"allowNo": false,
|
|
2598
|
+
"type": "boolean"
|
|
2863
2599
|
}
|
|
2864
2600
|
},
|
|
2865
2601
|
"hasDynamicHelp": false,
|
|
2866
2602
|
"hiddenAliases": [],
|
|
2867
|
-
"id": "build:
|
|
2603
|
+
"id": "build:dev",
|
|
2868
2604
|
"pluginAlias": "eas-cli",
|
|
2869
2605
|
"pluginName": "eas-cli",
|
|
2870
2606
|
"pluginType": "core",
|
|
@@ -2912,36 +2648,68 @@
|
|
|
2912
2648
|
},
|
|
2913
2649
|
"contextDefinition": {
|
|
2914
2650
|
"loggedIn": {},
|
|
2915
|
-
"
|
|
2916
|
-
"
|
|
2651
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
2652
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
2653
|
+
"projectDir": {},
|
|
2654
|
+
"vcsClient": {},
|
|
2655
|
+
"analytics": {},
|
|
2656
|
+
"projectId": {}
|
|
2917
2657
|
},
|
|
2918
2658
|
"isESM": false,
|
|
2919
2659
|
"relativePath": [
|
|
2920
2660
|
"build",
|
|
2921
2661
|
"commands",
|
|
2922
2662
|
"build",
|
|
2923
|
-
"
|
|
2663
|
+
"dev.js"
|
|
2924
2664
|
]
|
|
2925
2665
|
},
|
|
2926
|
-
"build:
|
|
2666
|
+
"build:download": {
|
|
2927
2667
|
"aliases": [],
|
|
2928
|
-
"args": {
|
|
2929
|
-
|
|
2930
|
-
"name": "BUILD_ID"
|
|
2931
|
-
}
|
|
2932
|
-
},
|
|
2933
|
-
"description": "view a build for your project",
|
|
2668
|
+
"args": {},
|
|
2669
|
+
"description": "download simulator/emulator builds for a given fingerprint hash",
|
|
2934
2670
|
"flags": {
|
|
2671
|
+
"fingerprint": {
|
|
2672
|
+
"description": "Fingerprint hash of the build to download",
|
|
2673
|
+
"name": "fingerprint",
|
|
2674
|
+
"required": true,
|
|
2675
|
+
"hasDynamicHelp": false,
|
|
2676
|
+
"multiple": false,
|
|
2677
|
+
"type": "option"
|
|
2678
|
+
},
|
|
2679
|
+
"platform": {
|
|
2680
|
+
"char": "p",
|
|
2681
|
+
"name": "platform",
|
|
2682
|
+
"hasDynamicHelp": false,
|
|
2683
|
+
"multiple": false,
|
|
2684
|
+
"options": [
|
|
2685
|
+
"ios",
|
|
2686
|
+
"android"
|
|
2687
|
+
],
|
|
2688
|
+
"type": "option"
|
|
2689
|
+
},
|
|
2690
|
+
"dev-client": {
|
|
2691
|
+
"description": "Filter only dev-client builds.",
|
|
2692
|
+
"name": "dev-client",
|
|
2693
|
+
"allowNo": true,
|
|
2694
|
+
"type": "boolean"
|
|
2695
|
+
},
|
|
2935
2696
|
"json": {
|
|
2936
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
2697
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2937
2698
|
"name": "json",
|
|
2938
2699
|
"allowNo": false,
|
|
2939
2700
|
"type": "boolean"
|
|
2701
|
+
},
|
|
2702
|
+
"non-interactive": {
|
|
2703
|
+
"description": "Run the command in non-interactive mode.",
|
|
2704
|
+
"name": "non-interactive",
|
|
2705
|
+
"noCacheDefault": true,
|
|
2706
|
+
"allowNo": false,
|
|
2707
|
+
"type": "boolean"
|
|
2940
2708
|
}
|
|
2941
2709
|
},
|
|
2942
2710
|
"hasDynamicHelp": false,
|
|
2943
2711
|
"hiddenAliases": [],
|
|
2944
|
-
"id": "build:
|
|
2712
|
+
"id": "build:download",
|
|
2945
2713
|
"pluginAlias": "eas-cli",
|
|
2946
2714
|
"pluginName": "eas-cli",
|
|
2947
2715
|
"pluginType": "core",
|
|
@@ -2988,29 +2756,165 @@
|
|
|
2988
2756
|
}
|
|
2989
2757
|
},
|
|
2990
2758
|
"contextDefinition": {
|
|
2991
|
-
"projectId": {},
|
|
2992
2759
|
"loggedIn": {},
|
|
2993
|
-
"
|
|
2760
|
+
"projectId": {}
|
|
2994
2761
|
},
|
|
2995
2762
|
"isESM": false,
|
|
2996
2763
|
"relativePath": [
|
|
2997
2764
|
"build",
|
|
2998
2765
|
"commands",
|
|
2999
2766
|
"build",
|
|
3000
|
-
"
|
|
2767
|
+
"download.js"
|
|
3001
2768
|
]
|
|
3002
2769
|
},
|
|
3003
|
-
"
|
|
2770
|
+
"build": {
|
|
3004
2771
|
"aliases": [],
|
|
3005
|
-
"args": {
|
|
3006
|
-
|
|
3007
|
-
"description": "Name of the channel to create",
|
|
3008
|
-
"name": "name",
|
|
3009
|
-
"required": false
|
|
3010
|
-
}
|
|
3011
|
-
},
|
|
3012
|
-
"description": "create a channel",
|
|
2772
|
+
"args": {},
|
|
2773
|
+
"description": "start a build",
|
|
3013
2774
|
"flags": {
|
|
2775
|
+
"platform": {
|
|
2776
|
+
"char": "p",
|
|
2777
|
+
"name": "platform",
|
|
2778
|
+
"hasDynamicHelp": false,
|
|
2779
|
+
"multiple": false,
|
|
2780
|
+
"options": [
|
|
2781
|
+
"android",
|
|
2782
|
+
"ios",
|
|
2783
|
+
"all"
|
|
2784
|
+
],
|
|
2785
|
+
"type": "option"
|
|
2786
|
+
},
|
|
2787
|
+
"skip-credentials-check": {
|
|
2788
|
+
"hidden": true,
|
|
2789
|
+
"name": "skip-credentials-check",
|
|
2790
|
+
"allowNo": false,
|
|
2791
|
+
"type": "boolean"
|
|
2792
|
+
},
|
|
2793
|
+
"skip-project-configuration": {
|
|
2794
|
+
"hidden": true,
|
|
2795
|
+
"name": "skip-project-configuration",
|
|
2796
|
+
"allowNo": false,
|
|
2797
|
+
"type": "boolean"
|
|
2798
|
+
},
|
|
2799
|
+
"profile": {
|
|
2800
|
+
"char": "e",
|
|
2801
|
+
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
2802
|
+
"name": "profile",
|
|
2803
|
+
"hasDynamicHelp": false,
|
|
2804
|
+
"helpValue": "PROFILE_NAME",
|
|
2805
|
+
"multiple": false,
|
|
2806
|
+
"type": "option"
|
|
2807
|
+
},
|
|
2808
|
+
"local": {
|
|
2809
|
+
"description": "Run build locally [experimental]",
|
|
2810
|
+
"name": "local",
|
|
2811
|
+
"allowNo": false,
|
|
2812
|
+
"type": "boolean"
|
|
2813
|
+
},
|
|
2814
|
+
"output": {
|
|
2815
|
+
"description": "Output path for local build",
|
|
2816
|
+
"name": "output",
|
|
2817
|
+
"hasDynamicHelp": false,
|
|
2818
|
+
"multiple": false,
|
|
2819
|
+
"type": "option"
|
|
2820
|
+
},
|
|
2821
|
+
"wait": {
|
|
2822
|
+
"description": "Wait for build(s) to complete",
|
|
2823
|
+
"name": "wait",
|
|
2824
|
+
"allowNo": true,
|
|
2825
|
+
"type": "boolean"
|
|
2826
|
+
},
|
|
2827
|
+
"clear-cache": {
|
|
2828
|
+
"description": "Clear cache before the build",
|
|
2829
|
+
"name": "clear-cache",
|
|
2830
|
+
"allowNo": false,
|
|
2831
|
+
"type": "boolean"
|
|
2832
|
+
},
|
|
2833
|
+
"auto-submit": {
|
|
2834
|
+
"aliases": [
|
|
2835
|
+
"submit"
|
|
2836
|
+
],
|
|
2837
|
+
"char": "s",
|
|
2838
|
+
"description": "Submit on build complete using the submit profile with the same name as the build profile",
|
|
2839
|
+
"exclusive": [
|
|
2840
|
+
"auto-submit-with-profile"
|
|
2841
|
+
],
|
|
2842
|
+
"name": "auto-submit",
|
|
2843
|
+
"allowNo": false,
|
|
2844
|
+
"type": "boolean"
|
|
2845
|
+
},
|
|
2846
|
+
"auto-submit-with-profile": {
|
|
2847
|
+
"description": "Submit on build complete using the submit profile with provided name",
|
|
2848
|
+
"exclusive": [
|
|
2849
|
+
"auto-submit"
|
|
2850
|
+
],
|
|
2851
|
+
"name": "auto-submit-with-profile",
|
|
2852
|
+
"hasDynamicHelp": false,
|
|
2853
|
+
"helpValue": "PROFILE_NAME",
|
|
2854
|
+
"multiple": false,
|
|
2855
|
+
"type": "option"
|
|
2856
|
+
},
|
|
2857
|
+
"what-to-test": {
|
|
2858
|
+
"description": "Specify the \"What to Test\" information for the build in TestFlight (iOS-only). To be used with the `auto-submit` flag",
|
|
2859
|
+
"name": "what-to-test",
|
|
2860
|
+
"hasDynamicHelp": false,
|
|
2861
|
+
"multiple": false,
|
|
2862
|
+
"type": "option"
|
|
2863
|
+
},
|
|
2864
|
+
"resource-class": {
|
|
2865
|
+
"deprecated": {
|
|
2866
|
+
"message": "The --resource-class flag has been deprecated. Define the resource class in eas.json.\nLearn more: https://docs.expo.dev/build-reference/eas-json/"
|
|
2867
|
+
},
|
|
2868
|
+
"description": "The instance type that will be used to run this build [experimental]",
|
|
2869
|
+
"hidden": true,
|
|
2870
|
+
"name": "resource-class",
|
|
2871
|
+
"hasDynamicHelp": false,
|
|
2872
|
+
"multiple": false,
|
|
2873
|
+
"options": [
|
|
2874
|
+
"default",
|
|
2875
|
+
"large",
|
|
2876
|
+
"m1-medium",
|
|
2877
|
+
"medium",
|
|
2878
|
+
"m-medium",
|
|
2879
|
+
"m-large"
|
|
2880
|
+
],
|
|
2881
|
+
"type": "option"
|
|
2882
|
+
},
|
|
2883
|
+
"message": {
|
|
2884
|
+
"char": "m",
|
|
2885
|
+
"description": "A short message describing the build",
|
|
2886
|
+
"name": "message",
|
|
2887
|
+
"hasDynamicHelp": false,
|
|
2888
|
+
"multiple": false,
|
|
2889
|
+
"type": "option"
|
|
2890
|
+
},
|
|
2891
|
+
"build-logger-level": {
|
|
2892
|
+
"description": "The level of logs to output during the build process. Defaults to \"info\".",
|
|
2893
|
+
"name": "build-logger-level",
|
|
2894
|
+
"hasDynamicHelp": false,
|
|
2895
|
+
"multiple": false,
|
|
2896
|
+
"options": [
|
|
2897
|
+
"trace",
|
|
2898
|
+
"debug",
|
|
2899
|
+
"info",
|
|
2900
|
+
"warn",
|
|
2901
|
+
"error",
|
|
2902
|
+
"fatal"
|
|
2903
|
+
],
|
|
2904
|
+
"type": "option"
|
|
2905
|
+
},
|
|
2906
|
+
"freeze-credentials": {
|
|
2907
|
+
"description": "Prevent the build from updating credentials in non-interactive mode",
|
|
2908
|
+
"name": "freeze-credentials",
|
|
2909
|
+
"allowNo": false,
|
|
2910
|
+
"type": "boolean"
|
|
2911
|
+
},
|
|
2912
|
+
"verbose-logs": {
|
|
2913
|
+
"description": "Use verbose logs for the build process",
|
|
2914
|
+
"name": "verbose-logs",
|
|
2915
|
+
"allowNo": false,
|
|
2916
|
+
"type": "boolean"
|
|
2917
|
+
},
|
|
3014
2918
|
"json": {
|
|
3015
2919
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3016
2920
|
"name": "json",
|
|
@@ -3020,13 +2924,14 @@
|
|
|
3020
2924
|
"non-interactive": {
|
|
3021
2925
|
"description": "Run the command in non-interactive mode.",
|
|
3022
2926
|
"name": "non-interactive",
|
|
2927
|
+
"noCacheDefault": true,
|
|
3023
2928
|
"allowNo": false,
|
|
3024
2929
|
"type": "boolean"
|
|
3025
2930
|
}
|
|
3026
2931
|
},
|
|
3027
2932
|
"hasDynamicHelp": false,
|
|
3028
2933
|
"hiddenAliases": [],
|
|
3029
|
-
"id": "
|
|
2934
|
+
"id": "build",
|
|
3030
2935
|
"pluginAlias": "eas-cli",
|
|
3031
2936
|
"pluginName": "eas-cli",
|
|
3032
2937
|
"pluginType": "core",
|
|
@@ -3073,44 +2978,87 @@
|
|
|
3073
2978
|
}
|
|
3074
2979
|
},
|
|
3075
2980
|
"contextDefinition": {
|
|
3076
|
-
"
|
|
3077
|
-
"
|
|
2981
|
+
"loggedIn": {},
|
|
2982
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
2983
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
2984
|
+
"projectDir": {},
|
|
2985
|
+
"analytics": {},
|
|
2986
|
+
"vcsClient": {}
|
|
3078
2987
|
},
|
|
3079
2988
|
"isESM": false,
|
|
3080
2989
|
"relativePath": [
|
|
3081
2990
|
"build",
|
|
3082
2991
|
"commands",
|
|
3083
|
-
"
|
|
3084
|
-
"
|
|
2992
|
+
"build",
|
|
2993
|
+
"index.js"
|
|
3085
2994
|
]
|
|
3086
2995
|
},
|
|
3087
|
-
"
|
|
2996
|
+
"build:inspect": {
|
|
3088
2997
|
"aliases": [],
|
|
3089
|
-
"args": {
|
|
3090
|
-
|
|
3091
|
-
"description": "Name of the channel to delete",
|
|
3092
|
-
"name": "name",
|
|
3093
|
-
"required": false
|
|
3094
|
-
}
|
|
3095
|
-
},
|
|
3096
|
-
"description": "Delete a channel",
|
|
2998
|
+
"args": {},
|
|
2999
|
+
"description": "inspect the state of the project at specific build stages, useful for troubleshooting",
|
|
3097
3000
|
"flags": {
|
|
3098
|
-
"
|
|
3099
|
-
"
|
|
3100
|
-
"name": "
|
|
3001
|
+
"platform": {
|
|
3002
|
+
"char": "p",
|
|
3003
|
+
"name": "platform",
|
|
3004
|
+
"required": true,
|
|
3005
|
+
"hasDynamicHelp": false,
|
|
3006
|
+
"multiple": false,
|
|
3007
|
+
"options": [
|
|
3008
|
+
"android",
|
|
3009
|
+
"ios"
|
|
3010
|
+
],
|
|
3011
|
+
"type": "option"
|
|
3012
|
+
},
|
|
3013
|
+
"profile": {
|
|
3014
|
+
"char": "e",
|
|
3015
|
+
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
3016
|
+
"name": "profile",
|
|
3017
|
+
"hasDynamicHelp": false,
|
|
3018
|
+
"helpValue": "PROFILE_NAME",
|
|
3019
|
+
"multiple": false,
|
|
3020
|
+
"type": "option"
|
|
3021
|
+
},
|
|
3022
|
+
"stage": {
|
|
3023
|
+
"char": "s",
|
|
3024
|
+
"description": "Stage of the build you want to inspect.\n archive - builds the project archive that would be uploaded to EAS when building\n pre-build - prepares the project to be built with Gradle/Xcode. Does not run the native build.\n post-build - builds the native project and leaves the output directory for inspection",
|
|
3025
|
+
"name": "stage",
|
|
3026
|
+
"required": true,
|
|
3027
|
+
"hasDynamicHelp": false,
|
|
3028
|
+
"multiple": false,
|
|
3029
|
+
"options": [
|
|
3030
|
+
"archive",
|
|
3031
|
+
"pre-build",
|
|
3032
|
+
"post-build"
|
|
3033
|
+
],
|
|
3034
|
+
"type": "option"
|
|
3035
|
+
},
|
|
3036
|
+
"output": {
|
|
3037
|
+
"char": "o",
|
|
3038
|
+
"description": "Output directory.",
|
|
3039
|
+
"name": "output",
|
|
3040
|
+
"required": true,
|
|
3041
|
+
"hasDynamicHelp": false,
|
|
3042
|
+
"helpValue": "OUTPUT_DIRECTORY",
|
|
3043
|
+
"multiple": false,
|
|
3044
|
+
"type": "option"
|
|
3045
|
+
},
|
|
3046
|
+
"force": {
|
|
3047
|
+
"description": "Delete OUTPUT_DIRECTORY if it already exists.",
|
|
3048
|
+
"name": "force",
|
|
3101
3049
|
"allowNo": false,
|
|
3102
3050
|
"type": "boolean"
|
|
3103
3051
|
},
|
|
3104
|
-
"
|
|
3105
|
-
"
|
|
3106
|
-
"name": "
|
|
3052
|
+
"verbose": {
|
|
3053
|
+
"char": "v",
|
|
3054
|
+
"name": "verbose",
|
|
3107
3055
|
"allowNo": false,
|
|
3108
3056
|
"type": "boolean"
|
|
3109
3057
|
}
|
|
3110
3058
|
},
|
|
3111
3059
|
"hasDynamicHelp": false,
|
|
3112
3060
|
"hiddenAliases": [],
|
|
3113
|
-
"id": "
|
|
3061
|
+
"id": "build:inspect",
|
|
3114
3062
|
"pluginAlias": "eas-cli",
|
|
3115
3063
|
"pluginName": "eas-cli",
|
|
3116
3064
|
"pluginType": "core",
|
|
@@ -3157,51 +3105,71 @@
|
|
|
3157
3105
|
}
|
|
3158
3106
|
},
|
|
3159
3107
|
"contextDefinition": {
|
|
3160
|
-
"
|
|
3161
|
-
"
|
|
3108
|
+
"loggedIn": {},
|
|
3109
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3110
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3111
|
+
"projectDir": {},
|
|
3112
|
+
"analytics": {},
|
|
3113
|
+
"vcsClient": {}
|
|
3162
3114
|
},
|
|
3163
3115
|
"isESM": false,
|
|
3164
3116
|
"relativePath": [
|
|
3165
3117
|
"build",
|
|
3166
3118
|
"commands",
|
|
3167
|
-
"
|
|
3168
|
-
"
|
|
3119
|
+
"build",
|
|
3120
|
+
"inspect.js"
|
|
3169
3121
|
]
|
|
3170
3122
|
},
|
|
3171
|
-
"
|
|
3123
|
+
"build:internal": {
|
|
3172
3124
|
"aliases": [],
|
|
3173
|
-
"args": {
|
|
3174
|
-
"name": {
|
|
3175
|
-
"description": "Name of the channel to edit",
|
|
3176
|
-
"name": "name",
|
|
3177
|
-
"required": false
|
|
3178
|
-
}
|
|
3179
|
-
},
|
|
3180
|
-
"description": "point a channel at a new branch",
|
|
3125
|
+
"args": {},
|
|
3181
3126
|
"flags": {
|
|
3182
|
-
"
|
|
3183
|
-
"
|
|
3184
|
-
"name": "
|
|
3127
|
+
"platform": {
|
|
3128
|
+
"char": "p",
|
|
3129
|
+
"name": "platform",
|
|
3130
|
+
"required": true,
|
|
3185
3131
|
"hasDynamicHelp": false,
|
|
3186
3132
|
"multiple": false,
|
|
3133
|
+
"options": [
|
|
3134
|
+
"android",
|
|
3135
|
+
"ios"
|
|
3136
|
+
],
|
|
3187
3137
|
"type": "option"
|
|
3188
3138
|
},
|
|
3189
|
-
"
|
|
3190
|
-
"
|
|
3191
|
-
"
|
|
3192
|
-
"
|
|
3193
|
-
"
|
|
3139
|
+
"profile": {
|
|
3140
|
+
"char": "e",
|
|
3141
|
+
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
3142
|
+
"name": "profile",
|
|
3143
|
+
"hasDynamicHelp": false,
|
|
3144
|
+
"helpValue": "PROFILE_NAME",
|
|
3145
|
+
"multiple": false,
|
|
3146
|
+
"type": "option"
|
|
3194
3147
|
},
|
|
3195
|
-
"
|
|
3196
|
-
"description": "
|
|
3197
|
-
"
|
|
3148
|
+
"auto-submit": {
|
|
3149
|
+
"description": "Submit on build complete using the submit profile with the same name as the build profile",
|
|
3150
|
+
"exclusive": [
|
|
3151
|
+
"auto-submit-with-profile"
|
|
3152
|
+
],
|
|
3153
|
+
"name": "auto-submit",
|
|
3198
3154
|
"allowNo": false,
|
|
3199
3155
|
"type": "boolean"
|
|
3156
|
+
},
|
|
3157
|
+
"auto-submit-with-profile": {
|
|
3158
|
+
"description": "Submit on build complete using the submit profile with provided name",
|
|
3159
|
+
"exclusive": [
|
|
3160
|
+
"auto-submit"
|
|
3161
|
+
],
|
|
3162
|
+
"name": "auto-submit-with-profile",
|
|
3163
|
+
"hasDynamicHelp": false,
|
|
3164
|
+
"helpValue": "PROFILE_NAME",
|
|
3165
|
+
"multiple": false,
|
|
3166
|
+
"type": "option"
|
|
3200
3167
|
}
|
|
3201
3168
|
},
|
|
3202
3169
|
"hasDynamicHelp": false,
|
|
3170
|
+
"hidden": true,
|
|
3203
3171
|
"hiddenAliases": [],
|
|
3204
|
-
"id": "
|
|
3172
|
+
"id": "build:internal",
|
|
3205
3173
|
"pluginAlias": "eas-cli",
|
|
3206
3174
|
"pluginName": "eas-cli",
|
|
3207
3175
|
"pluginType": "core",
|
|
@@ -3248,123 +3216,161 @@
|
|
|
3248
3216
|
}
|
|
3249
3217
|
},
|
|
3250
3218
|
"contextDefinition": {
|
|
3251
|
-
"
|
|
3252
|
-
"
|
|
3219
|
+
"loggedIn": {},
|
|
3220
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3221
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3222
|
+
"projectDir": {},
|
|
3223
|
+
"analytics": {},
|
|
3224
|
+
"vcsClient": {}
|
|
3253
3225
|
},
|
|
3254
3226
|
"isESM": false,
|
|
3255
3227
|
"relativePath": [
|
|
3256
3228
|
"build",
|
|
3257
3229
|
"commands",
|
|
3258
|
-
"
|
|
3259
|
-
"
|
|
3230
|
+
"build",
|
|
3231
|
+
"internal.js"
|
|
3260
3232
|
]
|
|
3261
3233
|
},
|
|
3262
|
-
"
|
|
3234
|
+
"build:list": {
|
|
3263
3235
|
"aliases": [],
|
|
3264
3236
|
"args": {},
|
|
3265
|
-
"description": "list all
|
|
3237
|
+
"description": "list all builds for your project",
|
|
3266
3238
|
"flags": {
|
|
3267
|
-
"
|
|
3268
|
-
"
|
|
3269
|
-
"name": "
|
|
3239
|
+
"platform": {
|
|
3240
|
+
"char": "p",
|
|
3241
|
+
"name": "platform",
|
|
3270
3242
|
"hasDynamicHelp": false,
|
|
3271
3243
|
"multiple": false,
|
|
3244
|
+
"options": [
|
|
3245
|
+
"android",
|
|
3246
|
+
"ios",
|
|
3247
|
+
"all"
|
|
3248
|
+
],
|
|
3272
3249
|
"type": "option"
|
|
3273
3250
|
},
|
|
3274
|
-
"
|
|
3275
|
-
"description": "
|
|
3276
|
-
"name": "
|
|
3251
|
+
"status": {
|
|
3252
|
+
"description": "Filter only builds with the specified status",
|
|
3253
|
+
"name": "status",
|
|
3277
3254
|
"hasDynamicHelp": false,
|
|
3278
3255
|
"multiple": false,
|
|
3256
|
+
"options": [
|
|
3257
|
+
"new",
|
|
3258
|
+
"in-queue",
|
|
3259
|
+
"in-progress",
|
|
3260
|
+
"pending-cancel",
|
|
3261
|
+
"errored",
|
|
3262
|
+
"finished",
|
|
3263
|
+
"canceled"
|
|
3264
|
+
],
|
|
3279
3265
|
"type": "option"
|
|
3280
3266
|
},
|
|
3281
|
-
"
|
|
3282
|
-
"description": "
|
|
3283
|
-
"name": "
|
|
3284
|
-
"
|
|
3285
|
-
"
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
"type": "
|
|
3292
|
-
}
|
|
3293
|
-
},
|
|
3294
|
-
"hasDynamicHelp": false,
|
|
3295
|
-
"hiddenAliases": [],
|
|
3296
|
-
"id": "channel:list",
|
|
3297
|
-
"pluginAlias": "eas-cli",
|
|
3298
|
-
"pluginName": "eas-cli",
|
|
3299
|
-
"pluginType": "core",
|
|
3300
|
-
"strict": true,
|
|
3301
|
-
"enableJsonFlag": false,
|
|
3302
|
-
"ContextOptions": {
|
|
3303
|
-
"LoggedIn": {
|
|
3304
|
-
"loggedIn": {}
|
|
3267
|
+
"distribution": {
|
|
3268
|
+
"description": "Filter only builds with the specified distribution type",
|
|
3269
|
+
"name": "distribution",
|
|
3270
|
+
"hasDynamicHelp": false,
|
|
3271
|
+
"multiple": false,
|
|
3272
|
+
"options": [
|
|
3273
|
+
"store",
|
|
3274
|
+
"internal",
|
|
3275
|
+
"simulator"
|
|
3276
|
+
],
|
|
3277
|
+
"type": "option"
|
|
3305
3278
|
},
|
|
3306
|
-
"
|
|
3307
|
-
"
|
|
3279
|
+
"channel": {
|
|
3280
|
+
"name": "channel",
|
|
3281
|
+
"hasDynamicHelp": false,
|
|
3282
|
+
"multiple": false,
|
|
3283
|
+
"type": "option"
|
|
3308
3284
|
},
|
|
3309
|
-
"
|
|
3310
|
-
"
|
|
3285
|
+
"app-version": {
|
|
3286
|
+
"aliases": [
|
|
3287
|
+
"appVersion"
|
|
3288
|
+
],
|
|
3289
|
+
"description": "Filter only builds created with the specified main app version",
|
|
3290
|
+
"name": "app-version",
|
|
3291
|
+
"hasDynamicHelp": false,
|
|
3292
|
+
"multiple": false,
|
|
3293
|
+
"type": "option"
|
|
3311
3294
|
},
|
|
3312
|
-
"
|
|
3313
|
-
"
|
|
3295
|
+
"app-build-version": {
|
|
3296
|
+
"aliases": [
|
|
3297
|
+
"appBuildVersion"
|
|
3298
|
+
],
|
|
3299
|
+
"description": "Filter only builds created with the specified app build version",
|
|
3300
|
+
"name": "app-build-version",
|
|
3301
|
+
"hasDynamicHelp": false,
|
|
3302
|
+
"multiple": false,
|
|
3303
|
+
"type": "option"
|
|
3314
3304
|
},
|
|
3315
|
-
"
|
|
3316
|
-
"
|
|
3305
|
+
"sdk-version": {
|
|
3306
|
+
"aliases": [
|
|
3307
|
+
"sdkVersion"
|
|
3308
|
+
],
|
|
3309
|
+
"description": "Filter only builds created with the specified Expo SDK version",
|
|
3310
|
+
"name": "sdk-version",
|
|
3311
|
+
"hasDynamicHelp": false,
|
|
3312
|
+
"multiple": false,
|
|
3313
|
+
"type": "option"
|
|
3317
3314
|
},
|
|
3318
|
-
"
|
|
3319
|
-
"
|
|
3315
|
+
"runtime-version": {
|
|
3316
|
+
"aliases": [
|
|
3317
|
+
"runtimeVersion"
|
|
3318
|
+
],
|
|
3319
|
+
"description": "Filter only builds created with the specified runtime version",
|
|
3320
|
+
"name": "runtime-version",
|
|
3321
|
+
"hasDynamicHelp": false,
|
|
3322
|
+
"multiple": false,
|
|
3323
|
+
"type": "option"
|
|
3320
3324
|
},
|
|
3321
|
-
"
|
|
3322
|
-
"
|
|
3323
|
-
|
|
3325
|
+
"app-identifier": {
|
|
3326
|
+
"aliases": [
|
|
3327
|
+
"appIdentifier"
|
|
3328
|
+
],
|
|
3329
|
+
"description": "Filter only builds created with the specified app identifier",
|
|
3330
|
+
"name": "app-identifier",
|
|
3331
|
+
"hasDynamicHelp": false,
|
|
3332
|
+
"multiple": false,
|
|
3333
|
+
"type": "option"
|
|
3324
3334
|
},
|
|
3325
|
-
"
|
|
3326
|
-
"
|
|
3327
|
-
|
|
3335
|
+
"build-profile": {
|
|
3336
|
+
"aliases": [
|
|
3337
|
+
"profile",
|
|
3338
|
+
"buildProfile"
|
|
3339
|
+
],
|
|
3340
|
+
"char": "e",
|
|
3341
|
+
"description": "Filter only builds created with the specified build profile",
|
|
3342
|
+
"name": "build-profile",
|
|
3343
|
+
"hasDynamicHelp": false,
|
|
3344
|
+
"multiple": false,
|
|
3345
|
+
"type": "option"
|
|
3328
3346
|
},
|
|
3329
|
-
"
|
|
3330
|
-
"
|
|
3347
|
+
"git-commit-hash": {
|
|
3348
|
+
"aliases": [
|
|
3349
|
+
"gitCommitHash"
|
|
3350
|
+
],
|
|
3351
|
+
"description": "Filter only builds created with the specified git commit hash",
|
|
3352
|
+
"name": "git-commit-hash",
|
|
3353
|
+
"hasDynamicHelp": false,
|
|
3354
|
+
"multiple": false,
|
|
3355
|
+
"type": "option"
|
|
3331
3356
|
},
|
|
3332
|
-
"
|
|
3333
|
-
"
|
|
3357
|
+
"fingerprint-hash": {
|
|
3358
|
+
"description": "Filter only builds with the specified fingerprint hash",
|
|
3359
|
+
"name": "fingerprint-hash",
|
|
3360
|
+
"hasDynamicHelp": false,
|
|
3361
|
+
"multiple": false,
|
|
3362
|
+
"type": "option"
|
|
3334
3363
|
},
|
|
3335
|
-
"
|
|
3336
|
-
"
|
|
3364
|
+
"offset": {
|
|
3365
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
3366
|
+
"name": "offset",
|
|
3367
|
+
"hasDynamicHelp": false,
|
|
3368
|
+
"multiple": false,
|
|
3369
|
+
"type": "option"
|
|
3337
3370
|
},
|
|
3338
|
-
"
|
|
3339
|
-
"
|
|
3340
|
-
|
|
3341
|
-
},
|
|
3342
|
-
"contextDefinition": {
|
|
3343
|
-
"projectId": {},
|
|
3344
|
-
"loggedIn": {}
|
|
3345
|
-
},
|
|
3346
|
-
"isESM": false,
|
|
3347
|
-
"relativePath": [
|
|
3348
|
-
"build",
|
|
3349
|
-
"commands",
|
|
3350
|
-
"channel",
|
|
3351
|
-
"list.js"
|
|
3352
|
-
]
|
|
3353
|
-
},
|
|
3354
|
-
"channel:pause": {
|
|
3355
|
-
"aliases": [],
|
|
3356
|
-
"args": {
|
|
3357
|
-
"name": {
|
|
3358
|
-
"description": "Name of the channel to edit",
|
|
3359
|
-
"name": "name",
|
|
3360
|
-
"required": false
|
|
3361
|
-
}
|
|
3362
|
-
},
|
|
3363
|
-
"description": "pause a channel to stop it from sending updates",
|
|
3364
|
-
"flags": {
|
|
3365
|
-
"branch": {
|
|
3366
|
-
"description": "Name of the branch to point to",
|
|
3367
|
-
"name": "branch",
|
|
3371
|
+
"limit": {
|
|
3372
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 50.",
|
|
3373
|
+
"name": "limit",
|
|
3368
3374
|
"hasDynamicHelp": false,
|
|
3369
3375
|
"multiple": false,
|
|
3370
3376
|
"type": "option"
|
|
@@ -3378,13 +3384,20 @@
|
|
|
3378
3384
|
"non-interactive": {
|
|
3379
3385
|
"description": "Run the command in non-interactive mode.",
|
|
3380
3386
|
"name": "non-interactive",
|
|
3387
|
+
"noCacheDefault": true,
|
|
3388
|
+
"allowNo": false,
|
|
3389
|
+
"type": "boolean"
|
|
3390
|
+
},
|
|
3391
|
+
"simulator": {
|
|
3392
|
+
"description": "Filter only iOS simulator builds. Can only be used with --platform flag set to \"ios\"",
|
|
3393
|
+
"name": "simulator",
|
|
3381
3394
|
"allowNo": false,
|
|
3382
3395
|
"type": "boolean"
|
|
3383
3396
|
}
|
|
3384
3397
|
},
|
|
3385
3398
|
"hasDynamicHelp": false,
|
|
3386
3399
|
"hiddenAliases": [],
|
|
3387
|
-
"id": "
|
|
3400
|
+
"id": "build:list",
|
|
3388
3401
|
"pluginAlias": "eas-cli",
|
|
3389
3402
|
"pluginName": "eas-cli",
|
|
3390
3403
|
"pluginType": "core",
|
|
@@ -3432,30 +3445,76 @@
|
|
|
3432
3445
|
},
|
|
3433
3446
|
"contextDefinition": {
|
|
3434
3447
|
"projectId": {},
|
|
3435
|
-
"loggedIn": {}
|
|
3448
|
+
"loggedIn": {},
|
|
3449
|
+
"vcsClient": {}
|
|
3436
3450
|
},
|
|
3437
3451
|
"isESM": false,
|
|
3438
3452
|
"relativePath": [
|
|
3439
3453
|
"build",
|
|
3440
3454
|
"commands",
|
|
3441
|
-
"
|
|
3442
|
-
"
|
|
3455
|
+
"build",
|
|
3456
|
+
"list.js"
|
|
3443
3457
|
]
|
|
3444
3458
|
},
|
|
3445
|
-
"
|
|
3459
|
+
"build:resign": {
|
|
3446
3460
|
"aliases": [],
|
|
3447
|
-
"args": {
|
|
3448
|
-
|
|
3449
|
-
"description": "Name of the channel to edit",
|
|
3450
|
-
"name": "name",
|
|
3451
|
-
"required": false
|
|
3452
|
-
}
|
|
3453
|
-
},
|
|
3454
|
-
"description": "resume a channel to start sending updates",
|
|
3461
|
+
"args": {},
|
|
3462
|
+
"description": "re-sign a build archive",
|
|
3455
3463
|
"flags": {
|
|
3456
|
-
"
|
|
3457
|
-
"
|
|
3458
|
-
"name": "
|
|
3464
|
+
"platform": {
|
|
3465
|
+
"char": "p",
|
|
3466
|
+
"name": "platform",
|
|
3467
|
+
"hasDynamicHelp": false,
|
|
3468
|
+
"multiple": false,
|
|
3469
|
+
"options": [
|
|
3470
|
+
"android",
|
|
3471
|
+
"ios"
|
|
3472
|
+
],
|
|
3473
|
+
"type": "option"
|
|
3474
|
+
},
|
|
3475
|
+
"target-profile": {
|
|
3476
|
+
"aliases": [
|
|
3477
|
+
"profile"
|
|
3478
|
+
],
|
|
3479
|
+
"char": "e",
|
|
3480
|
+
"description": "Name of the target build profile from eas.json. Credentials and environment variables from this profile will be used when re-signing. Defaults to \"production\" if defined in eas.json.",
|
|
3481
|
+
"name": "target-profile",
|
|
3482
|
+
"hasDynamicHelp": false,
|
|
3483
|
+
"helpValue": "PROFILE_NAME",
|
|
3484
|
+
"multiple": false,
|
|
3485
|
+
"type": "option"
|
|
3486
|
+
},
|
|
3487
|
+
"source-profile": {
|
|
3488
|
+
"description": "Name of the source build profile from eas.json. Used to filter builds eligible for re-signing.",
|
|
3489
|
+
"name": "source-profile",
|
|
3490
|
+
"hasDynamicHelp": false,
|
|
3491
|
+
"helpValue": "PROFILE_NAME",
|
|
3492
|
+
"multiple": false,
|
|
3493
|
+
"type": "option"
|
|
3494
|
+
},
|
|
3495
|
+
"wait": {
|
|
3496
|
+
"description": "Wait for build(s) to complete.",
|
|
3497
|
+
"name": "wait",
|
|
3498
|
+
"allowNo": true,
|
|
3499
|
+
"type": "boolean"
|
|
3500
|
+
},
|
|
3501
|
+
"id": {
|
|
3502
|
+
"description": "ID of the build to re-sign.",
|
|
3503
|
+
"name": "id",
|
|
3504
|
+
"hasDynamicHelp": false,
|
|
3505
|
+
"multiple": false,
|
|
3506
|
+
"type": "option"
|
|
3507
|
+
},
|
|
3508
|
+
"offset": {
|
|
3509
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
3510
|
+
"name": "offset",
|
|
3511
|
+
"hasDynamicHelp": false,
|
|
3512
|
+
"multiple": false,
|
|
3513
|
+
"type": "option"
|
|
3514
|
+
},
|
|
3515
|
+
"limit": {
|
|
3516
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
3517
|
+
"name": "limit",
|
|
3459
3518
|
"hasDynamicHelp": false,
|
|
3460
3519
|
"multiple": false,
|
|
3461
3520
|
"type": "option"
|
|
@@ -3469,13 +3528,14 @@
|
|
|
3469
3528
|
"non-interactive": {
|
|
3470
3529
|
"description": "Run the command in non-interactive mode.",
|
|
3471
3530
|
"name": "non-interactive",
|
|
3531
|
+
"noCacheDefault": true,
|
|
3472
3532
|
"allowNo": false,
|
|
3473
3533
|
"type": "boolean"
|
|
3474
3534
|
}
|
|
3475
3535
|
},
|
|
3476
3536
|
"hasDynamicHelp": false,
|
|
3477
3537
|
"hiddenAliases": [],
|
|
3478
|
-
"id": "
|
|
3538
|
+
"id": "build:resign",
|
|
3479
3539
|
"pluginAlias": "eas-cli",
|
|
3480
3540
|
"pluginName": "eas-cli",
|
|
3481
3541
|
"pluginType": "core",
|
|
@@ -3522,120 +3582,109 @@
|
|
|
3522
3582
|
}
|
|
3523
3583
|
},
|
|
3524
3584
|
"contextDefinition": {
|
|
3525
|
-
"
|
|
3526
|
-
"
|
|
3585
|
+
"loggedIn": {},
|
|
3586
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3587
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3588
|
+
"projectDir": {},
|
|
3589
|
+
"analytics": {},
|
|
3590
|
+
"vcsClient": {}
|
|
3527
3591
|
},
|
|
3528
3592
|
"isESM": false,
|
|
3529
3593
|
"relativePath": [
|
|
3530
3594
|
"build",
|
|
3531
3595
|
"commands",
|
|
3532
|
-
"
|
|
3533
|
-
"
|
|
3596
|
+
"build",
|
|
3597
|
+
"resign.js"
|
|
3534
3598
|
]
|
|
3535
3599
|
},
|
|
3536
|
-
"
|
|
3600
|
+
"build:run": {
|
|
3537
3601
|
"aliases": [],
|
|
3538
|
-
"args": {
|
|
3539
|
-
|
|
3540
|
-
"description": "channel on which the rollout should be done",
|
|
3541
|
-
"name": "channel"
|
|
3542
|
-
}
|
|
3543
|
-
},
|
|
3544
|
-
"description": "Roll a new branch out on a channel incrementally.",
|
|
3602
|
+
"args": {},
|
|
3603
|
+
"description": "run simulator/emulator builds from eas-cli",
|
|
3545
3604
|
"flags": {
|
|
3546
|
-
"
|
|
3547
|
-
"description": "
|
|
3548
|
-
"
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
"flags": [
|
|
3553
|
-
{
|
|
3554
|
-
"name": "percent"
|
|
3555
|
-
},
|
|
3556
|
-
{
|
|
3557
|
-
"name": "outcome"
|
|
3558
|
-
},
|
|
3559
|
-
{
|
|
3560
|
-
"name": "branch"
|
|
3561
|
-
},
|
|
3562
|
-
{
|
|
3563
|
-
"name": "runtime-version"
|
|
3564
|
-
}
|
|
3565
|
-
]
|
|
3566
|
-
}
|
|
3605
|
+
"latest": {
|
|
3606
|
+
"description": "Run the latest simulator/emulator build for specified platform",
|
|
3607
|
+
"exclusive": [
|
|
3608
|
+
"id",
|
|
3609
|
+
"path",
|
|
3610
|
+
"url"
|
|
3567
3611
|
],
|
|
3568
|
-
"
|
|
3612
|
+
"name": "latest",
|
|
3613
|
+
"allowNo": false,
|
|
3614
|
+
"type": "boolean"
|
|
3615
|
+
},
|
|
3616
|
+
"url": {
|
|
3617
|
+
"description": "Simulator/Emulator build archive url",
|
|
3618
|
+
"exclusive": [
|
|
3619
|
+
"latest",
|
|
3620
|
+
"id",
|
|
3621
|
+
"path"
|
|
3622
|
+
],
|
|
3623
|
+
"name": "url",
|
|
3569
3624
|
"hasDynamicHelp": false,
|
|
3570
3625
|
"multiple": false,
|
|
3571
|
-
"
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3626
|
+
"type": "option"
|
|
3627
|
+
},
|
|
3628
|
+
"path": {
|
|
3629
|
+
"description": "Path to the simulator/emulator build archive or app",
|
|
3630
|
+
"exclusive": [
|
|
3631
|
+
"latest",
|
|
3632
|
+
"id",
|
|
3633
|
+
"url"
|
|
3576
3634
|
],
|
|
3635
|
+
"name": "path",
|
|
3636
|
+
"hasDynamicHelp": false,
|
|
3637
|
+
"multiple": false,
|
|
3577
3638
|
"type": "option"
|
|
3578
3639
|
},
|
|
3579
|
-
"
|
|
3580
|
-
"description": "
|
|
3581
|
-
"
|
|
3582
|
-
|
|
3640
|
+
"id": {
|
|
3641
|
+
"description": "ID of the simulator/emulator build to run",
|
|
3642
|
+
"exclusive": [
|
|
3643
|
+
"latest, path, url"
|
|
3644
|
+
],
|
|
3645
|
+
"name": "id",
|
|
3583
3646
|
"hasDynamicHelp": false,
|
|
3584
3647
|
"multiple": false,
|
|
3585
3648
|
"type": "option"
|
|
3586
3649
|
},
|
|
3587
|
-
"
|
|
3588
|
-
"
|
|
3589
|
-
"name": "
|
|
3590
|
-
"required": false,
|
|
3650
|
+
"platform": {
|
|
3651
|
+
"char": "p",
|
|
3652
|
+
"name": "platform",
|
|
3591
3653
|
"hasDynamicHelp": false,
|
|
3592
3654
|
"multiple": false,
|
|
3593
3655
|
"options": [
|
|
3594
|
-
"
|
|
3595
|
-
"
|
|
3656
|
+
"android",
|
|
3657
|
+
"ios"
|
|
3596
3658
|
],
|
|
3597
3659
|
"type": "option"
|
|
3598
3660
|
},
|
|
3599
|
-
"
|
|
3600
|
-
"
|
|
3601
|
-
"
|
|
3602
|
-
"
|
|
3661
|
+
"profile": {
|
|
3662
|
+
"char": "e",
|
|
3663
|
+
"description": "Name of the build profile used to create the build to run. When specified, only builds created with the specified build profile will be queried.",
|
|
3664
|
+
"name": "profile",
|
|
3603
3665
|
"hasDynamicHelp": false,
|
|
3666
|
+
"helpValue": "PROFILE_NAME",
|
|
3604
3667
|
"multiple": false,
|
|
3605
3668
|
"type": "option"
|
|
3606
3669
|
},
|
|
3607
|
-
"
|
|
3608
|
-
"description": "
|
|
3609
|
-
"name": "
|
|
3610
|
-
"required": false,
|
|
3670
|
+
"offset": {
|
|
3671
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
3672
|
+
"name": "offset",
|
|
3611
3673
|
"hasDynamicHelp": false,
|
|
3612
3674
|
"multiple": false,
|
|
3613
3675
|
"type": "option"
|
|
3614
3676
|
},
|
|
3615
|
-
"
|
|
3616
|
-
"description": "
|
|
3617
|
-
"name": "
|
|
3618
|
-
"required": false,
|
|
3677
|
+
"limit": {
|
|
3678
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
3679
|
+
"name": "limit",
|
|
3619
3680
|
"hasDynamicHelp": false,
|
|
3620
3681
|
"multiple": false,
|
|
3621
3682
|
"type": "option"
|
|
3622
|
-
},
|
|
3623
|
-
"json": {
|
|
3624
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3625
|
-
"name": "json",
|
|
3626
|
-
"allowNo": false,
|
|
3627
|
-
"type": "boolean"
|
|
3628
|
-
},
|
|
3629
|
-
"non-interactive": {
|
|
3630
|
-
"description": "Run the command in non-interactive mode.",
|
|
3631
|
-
"name": "non-interactive",
|
|
3632
|
-
"allowNo": false,
|
|
3633
|
-
"type": "boolean"
|
|
3634
3683
|
}
|
|
3635
3684
|
},
|
|
3636
3685
|
"hasDynamicHelp": false,
|
|
3637
3686
|
"hiddenAliases": [],
|
|
3638
|
-
"id": "
|
|
3687
|
+
"id": "build:run",
|
|
3639
3688
|
"pluginAlias": "eas-cli",
|
|
3640
3689
|
"pluginName": "eas-cli",
|
|
3641
3690
|
"pluginType": "core",
|
|
@@ -3683,58 +3732,36 @@
|
|
|
3683
3732
|
},
|
|
3684
3733
|
"contextDefinition": {
|
|
3685
3734
|
"loggedIn": {},
|
|
3686
|
-
"
|
|
3735
|
+
"projectId": {},
|
|
3687
3736
|
"vcsClient": {}
|
|
3688
3737
|
},
|
|
3689
3738
|
"isESM": false,
|
|
3690
3739
|
"relativePath": [
|
|
3691
3740
|
"build",
|
|
3692
3741
|
"commands",
|
|
3693
|
-
"
|
|
3694
|
-
"
|
|
3742
|
+
"build",
|
|
3743
|
+
"run.js"
|
|
3695
3744
|
]
|
|
3696
3745
|
},
|
|
3697
|
-
"
|
|
3746
|
+
"build:view": {
|
|
3698
3747
|
"aliases": [],
|
|
3699
3748
|
"args": {
|
|
3700
|
-
"
|
|
3701
|
-
"
|
|
3702
|
-
"name": "name",
|
|
3703
|
-
"required": false
|
|
3749
|
+
"BUILD_ID": {
|
|
3750
|
+
"name": "BUILD_ID"
|
|
3704
3751
|
}
|
|
3705
3752
|
},
|
|
3706
|
-
"description": "view a
|
|
3753
|
+
"description": "view a build for your project",
|
|
3707
3754
|
"flags": {
|
|
3708
3755
|
"json": {
|
|
3709
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr.
|
|
3756
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
3710
3757
|
"name": "json",
|
|
3711
3758
|
"allowNo": false,
|
|
3712
3759
|
"type": "boolean"
|
|
3713
|
-
},
|
|
3714
|
-
"non-interactive": {
|
|
3715
|
-
"description": "Run the command in non-interactive mode.",
|
|
3716
|
-
"name": "non-interactive",
|
|
3717
|
-
"allowNo": false,
|
|
3718
|
-
"type": "boolean"
|
|
3719
|
-
},
|
|
3720
|
-
"offset": {
|
|
3721
|
-
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
3722
|
-
"name": "offset",
|
|
3723
|
-
"hasDynamicHelp": false,
|
|
3724
|
-
"multiple": false,
|
|
3725
|
-
"type": "option"
|
|
3726
|
-
},
|
|
3727
|
-
"limit": {
|
|
3728
|
-
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
3729
|
-
"name": "limit",
|
|
3730
|
-
"hasDynamicHelp": false,
|
|
3731
|
-
"multiple": false,
|
|
3732
|
-
"type": "option"
|
|
3733
3760
|
}
|
|
3734
3761
|
},
|
|
3735
3762
|
"hasDynamicHelp": false,
|
|
3736
3763
|
"hiddenAliases": [],
|
|
3737
|
-
"id": "
|
|
3764
|
+
"id": "build:view",
|
|
3738
3765
|
"pluginAlias": "eas-cli",
|
|
3739
3766
|
"pluginName": "eas-cli",
|
|
3740
3767
|
"pluginType": "core",
|
|
@@ -3782,13 +3809,14 @@
|
|
|
3782
3809
|
},
|
|
3783
3810
|
"contextDefinition": {
|
|
3784
3811
|
"projectId": {},
|
|
3785
|
-
"loggedIn": {}
|
|
3812
|
+
"loggedIn": {},
|
|
3813
|
+
"vcsClient": {}
|
|
3786
3814
|
},
|
|
3787
3815
|
"isESM": false,
|
|
3788
3816
|
"relativePath": [
|
|
3789
3817
|
"build",
|
|
3790
3818
|
"commands",
|
|
3791
|
-
"
|
|
3819
|
+
"build",
|
|
3792
3820
|
"view.js"
|
|
3793
3821
|
]
|
|
3794
3822
|
},
|
|
@@ -3983,6 +4011,7 @@
|
|
|
3983
4011
|
"non-interactive": {
|
|
3984
4012
|
"description": "Run the command in non-interactive mode.",
|
|
3985
4013
|
"name": "non-interactive",
|
|
4014
|
+
"noCacheDefault": true,
|
|
3986
4015
|
"allowNo": false,
|
|
3987
4016
|
"type": "boolean"
|
|
3988
4017
|
}
|
|
@@ -4119,6 +4148,7 @@
|
|
|
4119
4148
|
"non-interactive": {
|
|
4120
4149
|
"description": "Run the command in non-interactive mode.",
|
|
4121
4150
|
"name": "non-interactive",
|
|
4151
|
+
"noCacheDefault": true,
|
|
4122
4152
|
"allowNo": false,
|
|
4123
4153
|
"type": "boolean"
|
|
4124
4154
|
}
|
|
@@ -4283,6 +4313,7 @@
|
|
|
4283
4313
|
"non-interactive": {
|
|
4284
4314
|
"description": "Run the command in non-interactive mode.",
|
|
4285
4315
|
"name": "non-interactive",
|
|
4316
|
+
"noCacheDefault": true,
|
|
4286
4317
|
"allowNo": false,
|
|
4287
4318
|
"type": "boolean"
|
|
4288
4319
|
}
|
|
@@ -4381,6 +4412,7 @@
|
|
|
4381
4412
|
"non-interactive": {
|
|
4382
4413
|
"description": "Run the command in non-interactive mode.",
|
|
4383
4414
|
"name": "non-interactive",
|
|
4415
|
+
"noCacheDefault": true,
|
|
4384
4416
|
"allowNo": false,
|
|
4385
4417
|
"type": "boolean"
|
|
4386
4418
|
}
|
|
@@ -4480,6 +4512,7 @@
|
|
|
4480
4512
|
"non-interactive": {
|
|
4481
4513
|
"description": "Run the command in non-interactive mode.",
|
|
4482
4514
|
"name": "non-interactive",
|
|
4515
|
+
"noCacheDefault": true,
|
|
4483
4516
|
"allowNo": false,
|
|
4484
4517
|
"type": "boolean"
|
|
4485
4518
|
}
|
|
@@ -4689,6 +4722,7 @@
|
|
|
4689
4722
|
"non-interactive": {
|
|
4690
4723
|
"description": "Run the command in non-interactive mode.",
|
|
4691
4724
|
"name": "non-interactive",
|
|
4725
|
+
"noCacheDefault": true,
|
|
4692
4726
|
"allowNo": false,
|
|
4693
4727
|
"type": "boolean"
|
|
4694
4728
|
}
|
|
@@ -4794,6 +4828,7 @@
|
|
|
4794
4828
|
"non-interactive": {
|
|
4795
4829
|
"description": "Run the command in non-interactive mode.",
|
|
4796
4830
|
"name": "non-interactive",
|
|
4831
|
+
"noCacheDefault": true,
|
|
4797
4832
|
"allowNo": false,
|
|
4798
4833
|
"type": "boolean"
|
|
4799
4834
|
}
|
|
@@ -4877,6 +4912,7 @@
|
|
|
4877
4912
|
"non-interactive": {
|
|
4878
4913
|
"description": "Run the command in non-interactive mode.",
|
|
4879
4914
|
"name": "non-interactive",
|
|
4915
|
+
"noCacheDefault": true,
|
|
4880
4916
|
"allowNo": false,
|
|
4881
4917
|
"type": "boolean"
|
|
4882
4918
|
}
|
|
@@ -4993,6 +5029,7 @@
|
|
|
4993
5029
|
"non-interactive": {
|
|
4994
5030
|
"description": "Run the command in non-interactive mode.",
|
|
4995
5031
|
"name": "non-interactive",
|
|
5032
|
+
"noCacheDefault": true,
|
|
4996
5033
|
"allowNo": false,
|
|
4997
5034
|
"type": "boolean"
|
|
4998
5035
|
}
|
|
@@ -5186,6 +5223,7 @@
|
|
|
5186
5223
|
"non-interactive": {
|
|
5187
5224
|
"description": "Run the command in non-interactive mode.",
|
|
5188
5225
|
"name": "non-interactive",
|
|
5226
|
+
"noCacheDefault": true,
|
|
5189
5227
|
"allowNo": false,
|
|
5190
5228
|
"type": "boolean"
|
|
5191
5229
|
},
|
|
@@ -5443,6 +5481,7 @@
|
|
|
5443
5481
|
"non-interactive": {
|
|
5444
5482
|
"description": "Run the command in non-interactive mode.",
|
|
5445
5483
|
"name": "non-interactive",
|
|
5484
|
+
"noCacheDefault": true,
|
|
5446
5485
|
"allowNo": false,
|
|
5447
5486
|
"type": "boolean"
|
|
5448
5487
|
}
|
|
@@ -5576,6 +5615,7 @@
|
|
|
5576
5615
|
"non-interactive": {
|
|
5577
5616
|
"description": "Run the command in non-interactive mode.",
|
|
5578
5617
|
"name": "non-interactive",
|
|
5618
|
+
"noCacheDefault": true,
|
|
5579
5619
|
"allowNo": false,
|
|
5580
5620
|
"type": "boolean"
|
|
5581
5621
|
}
|
|
@@ -5695,6 +5735,7 @@
|
|
|
5695
5735
|
"non-interactive": {
|
|
5696
5736
|
"description": "Run the command in non-interactive mode.",
|
|
5697
5737
|
"name": "non-interactive",
|
|
5738
|
+
"noCacheDefault": true,
|
|
5698
5739
|
"allowNo": false,
|
|
5699
5740
|
"type": "boolean"
|
|
5700
5741
|
}
|
|
@@ -6082,6 +6123,7 @@
|
|
|
6082
6123
|
"non-interactive": {
|
|
6083
6124
|
"description": "Run the command in non-interactive mode.",
|
|
6084
6125
|
"name": "non-interactive",
|
|
6126
|
+
"noCacheDefault": true,
|
|
6085
6127
|
"allowNo": false,
|
|
6086
6128
|
"type": "boolean"
|
|
6087
6129
|
}
|
|
@@ -6306,101 +6348,6 @@
|
|
|
6306
6348
|
"onboarding.js"
|
|
6307
6349
|
]
|
|
6308
6350
|
},
|
|
6309
|
-
"submit:internal": {
|
|
6310
|
-
"aliases": [],
|
|
6311
|
-
"args": {},
|
|
6312
|
-
"flags": {
|
|
6313
|
-
"platform": {
|
|
6314
|
-
"name": "platform",
|
|
6315
|
-
"required": true,
|
|
6316
|
-
"hasDynamicHelp": false,
|
|
6317
|
-
"multiple": false,
|
|
6318
|
-
"options": [
|
|
6319
|
-
"android",
|
|
6320
|
-
"ios"
|
|
6321
|
-
],
|
|
6322
|
-
"type": "option"
|
|
6323
|
-
},
|
|
6324
|
-
"profile": {
|
|
6325
|
-
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
6326
|
-
"name": "profile",
|
|
6327
|
-
"hasDynamicHelp": false,
|
|
6328
|
-
"multiple": false,
|
|
6329
|
-
"type": "option"
|
|
6330
|
-
},
|
|
6331
|
-
"id": {
|
|
6332
|
-
"description": "ID of the build to submit",
|
|
6333
|
-
"name": "id",
|
|
6334
|
-
"required": true,
|
|
6335
|
-
"hasDynamicHelp": false,
|
|
6336
|
-
"multiple": false,
|
|
6337
|
-
"type": "option"
|
|
6338
|
-
}
|
|
6339
|
-
},
|
|
6340
|
-
"hasDynamicHelp": false,
|
|
6341
|
-
"hidden": true,
|
|
6342
|
-
"hiddenAliases": [],
|
|
6343
|
-
"id": "submit:internal",
|
|
6344
|
-
"pluginAlias": "eas-cli",
|
|
6345
|
-
"pluginName": "eas-cli",
|
|
6346
|
-
"pluginType": "core",
|
|
6347
|
-
"strict": true,
|
|
6348
|
-
"enableJsonFlag": false,
|
|
6349
|
-
"ContextOptions": {
|
|
6350
|
-
"LoggedIn": {
|
|
6351
|
-
"loggedIn": {}
|
|
6352
|
-
},
|
|
6353
|
-
"MaybeLoggedIn": {
|
|
6354
|
-
"maybeLoggedIn": {}
|
|
6355
|
-
},
|
|
6356
|
-
"DynamicLoggedIn": {
|
|
6357
|
-
"getDynamicLoggedInAsync": {}
|
|
6358
|
-
},
|
|
6359
|
-
"SessionManagment": {
|
|
6360
|
-
"sessionManager": {}
|
|
6361
|
-
},
|
|
6362
|
-
"OptionalProjectConfig": {
|
|
6363
|
-
"optionalPrivateProjectConfig": {}
|
|
6364
|
-
},
|
|
6365
|
-
"ProjectDir": {
|
|
6366
|
-
"projectDir": {}
|
|
6367
|
-
},
|
|
6368
|
-
"DynamicProjectConfig": {
|
|
6369
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
6370
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
6371
|
-
},
|
|
6372
|
-
"ProjectConfig": {
|
|
6373
|
-
"loggedIn": {},
|
|
6374
|
-
"privateProjectConfig": {}
|
|
6375
|
-
},
|
|
6376
|
-
"Analytics": {
|
|
6377
|
-
"analytics": {}
|
|
6378
|
-
},
|
|
6379
|
-
"Vcs": {
|
|
6380
|
-
"vcsClient": {}
|
|
6381
|
-
},
|
|
6382
|
-
"ServerSideEnvironmentVariables": {
|
|
6383
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
6384
|
-
},
|
|
6385
|
-
"ProjectId": {
|
|
6386
|
-
"projectId": {}
|
|
6387
|
-
}
|
|
6388
|
-
},
|
|
6389
|
-
"contextDefinition": {
|
|
6390
|
-
"loggedIn": {},
|
|
6391
|
-
"privateProjectConfig": {},
|
|
6392
|
-
"projectDir": {},
|
|
6393
|
-
"analytics": {},
|
|
6394
|
-
"vcsClient": {}
|
|
6395
|
-
},
|
|
6396
|
-
"isESM": false,
|
|
6397
|
-
"relativePath": [
|
|
6398
|
-
"build",
|
|
6399
|
-
"commands",
|
|
6400
|
-
"submit",
|
|
6401
|
-
"internal.js"
|
|
6402
|
-
]
|
|
6403
|
-
},
|
|
6404
6351
|
"secret:create": {
|
|
6405
6352
|
"aliases": [],
|
|
6406
6353
|
"args": {},
|
|
@@ -6452,6 +6399,7 @@
|
|
|
6452
6399
|
"non-interactive": {
|
|
6453
6400
|
"description": "Run the command in non-interactive mode.",
|
|
6454
6401
|
"name": "non-interactive",
|
|
6402
|
+
"noCacheDefault": true,
|
|
6455
6403
|
"allowNo": false,
|
|
6456
6404
|
"type": "boolean"
|
|
6457
6405
|
}
|
|
@@ -6532,6 +6480,7 @@
|
|
|
6532
6480
|
"non-interactive": {
|
|
6533
6481
|
"description": "Run the command in non-interactive mode.",
|
|
6534
6482
|
"name": "non-interactive",
|
|
6483
|
+
"noCacheDefault": true,
|
|
6535
6484
|
"allowNo": false,
|
|
6536
6485
|
"type": "boolean"
|
|
6537
6486
|
}
|
|
@@ -6696,6 +6645,7 @@
|
|
|
6696
6645
|
"non-interactive": {
|
|
6697
6646
|
"description": "Run the command in non-interactive mode.",
|
|
6698
6647
|
"name": "non-interactive",
|
|
6648
|
+
"noCacheDefault": true,
|
|
6699
6649
|
"allowNo": false,
|
|
6700
6650
|
"type": "boolean"
|
|
6701
6651
|
}
|
|
@@ -6761,6 +6711,101 @@
|
|
|
6761
6711
|
"push.js"
|
|
6762
6712
|
]
|
|
6763
6713
|
},
|
|
6714
|
+
"submit:internal": {
|
|
6715
|
+
"aliases": [],
|
|
6716
|
+
"args": {},
|
|
6717
|
+
"flags": {
|
|
6718
|
+
"platform": {
|
|
6719
|
+
"name": "platform",
|
|
6720
|
+
"required": true,
|
|
6721
|
+
"hasDynamicHelp": false,
|
|
6722
|
+
"multiple": false,
|
|
6723
|
+
"options": [
|
|
6724
|
+
"android",
|
|
6725
|
+
"ios"
|
|
6726
|
+
],
|
|
6727
|
+
"type": "option"
|
|
6728
|
+
},
|
|
6729
|
+
"profile": {
|
|
6730
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
6731
|
+
"name": "profile",
|
|
6732
|
+
"hasDynamicHelp": false,
|
|
6733
|
+
"multiple": false,
|
|
6734
|
+
"type": "option"
|
|
6735
|
+
},
|
|
6736
|
+
"id": {
|
|
6737
|
+
"description": "ID of the build to submit",
|
|
6738
|
+
"name": "id",
|
|
6739
|
+
"required": true,
|
|
6740
|
+
"hasDynamicHelp": false,
|
|
6741
|
+
"multiple": false,
|
|
6742
|
+
"type": "option"
|
|
6743
|
+
}
|
|
6744
|
+
},
|
|
6745
|
+
"hasDynamicHelp": false,
|
|
6746
|
+
"hidden": true,
|
|
6747
|
+
"hiddenAliases": [],
|
|
6748
|
+
"id": "submit:internal",
|
|
6749
|
+
"pluginAlias": "eas-cli",
|
|
6750
|
+
"pluginName": "eas-cli",
|
|
6751
|
+
"pluginType": "core",
|
|
6752
|
+
"strict": true,
|
|
6753
|
+
"enableJsonFlag": false,
|
|
6754
|
+
"ContextOptions": {
|
|
6755
|
+
"LoggedIn": {
|
|
6756
|
+
"loggedIn": {}
|
|
6757
|
+
},
|
|
6758
|
+
"MaybeLoggedIn": {
|
|
6759
|
+
"maybeLoggedIn": {}
|
|
6760
|
+
},
|
|
6761
|
+
"DynamicLoggedIn": {
|
|
6762
|
+
"getDynamicLoggedInAsync": {}
|
|
6763
|
+
},
|
|
6764
|
+
"SessionManagment": {
|
|
6765
|
+
"sessionManager": {}
|
|
6766
|
+
},
|
|
6767
|
+
"OptionalProjectConfig": {
|
|
6768
|
+
"optionalPrivateProjectConfig": {}
|
|
6769
|
+
},
|
|
6770
|
+
"ProjectDir": {
|
|
6771
|
+
"projectDir": {}
|
|
6772
|
+
},
|
|
6773
|
+
"DynamicProjectConfig": {
|
|
6774
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
6775
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
6776
|
+
},
|
|
6777
|
+
"ProjectConfig": {
|
|
6778
|
+
"loggedIn": {},
|
|
6779
|
+
"privateProjectConfig": {}
|
|
6780
|
+
},
|
|
6781
|
+
"Analytics": {
|
|
6782
|
+
"analytics": {}
|
|
6783
|
+
},
|
|
6784
|
+
"Vcs": {
|
|
6785
|
+
"vcsClient": {}
|
|
6786
|
+
},
|
|
6787
|
+
"ServerSideEnvironmentVariables": {
|
|
6788
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
6789
|
+
},
|
|
6790
|
+
"ProjectId": {
|
|
6791
|
+
"projectId": {}
|
|
6792
|
+
}
|
|
6793
|
+
},
|
|
6794
|
+
"contextDefinition": {
|
|
6795
|
+
"loggedIn": {},
|
|
6796
|
+
"privateProjectConfig": {},
|
|
6797
|
+
"projectDir": {},
|
|
6798
|
+
"analytics": {},
|
|
6799
|
+
"vcsClient": {}
|
|
6800
|
+
},
|
|
6801
|
+
"isESM": false,
|
|
6802
|
+
"relativePath": [
|
|
6803
|
+
"build",
|
|
6804
|
+
"commands",
|
|
6805
|
+
"submit",
|
|
6806
|
+
"internal.js"
|
|
6807
|
+
]
|
|
6808
|
+
},
|
|
6764
6809
|
"update:configure": {
|
|
6765
6810
|
"aliases": [],
|
|
6766
6811
|
"args": {},
|
|
@@ -6791,6 +6836,7 @@
|
|
|
6791
6836
|
"non-interactive": {
|
|
6792
6837
|
"description": "Run the command in non-interactive mode.",
|
|
6793
6838
|
"name": "non-interactive",
|
|
6839
|
+
"noCacheDefault": true,
|
|
6794
6840
|
"allowNo": false,
|
|
6795
6841
|
"type": "boolean"
|
|
6796
6842
|
}
|
|
@@ -6876,6 +6922,7 @@
|
|
|
6876
6922
|
"non-interactive": {
|
|
6877
6923
|
"description": "Run the command in non-interactive mode.",
|
|
6878
6924
|
"name": "non-interactive",
|
|
6925
|
+
"noCacheDefault": true,
|
|
6879
6926
|
"allowNo": false,
|
|
6880
6927
|
"type": "boolean"
|
|
6881
6928
|
}
|
|
@@ -6973,6 +7020,7 @@
|
|
|
6973
7020
|
"non-interactive": {
|
|
6974
7021
|
"description": "Run the command in non-interactive mode.",
|
|
6975
7022
|
"name": "non-interactive",
|
|
7023
|
+
"noCacheDefault": true,
|
|
6976
7024
|
"allowNo": false,
|
|
6977
7025
|
"type": "boolean"
|
|
6978
7026
|
}
|
|
@@ -7163,6 +7211,7 @@
|
|
|
7163
7211
|
"non-interactive": {
|
|
7164
7212
|
"description": "Run the command in non-interactive mode.",
|
|
7165
7213
|
"name": "non-interactive",
|
|
7214
|
+
"noCacheDefault": true,
|
|
7166
7215
|
"allowNo": false,
|
|
7167
7216
|
"type": "boolean"
|
|
7168
7217
|
}
|
|
@@ -7297,6 +7346,7 @@
|
|
|
7297
7346
|
"non-interactive": {
|
|
7298
7347
|
"description": "Run the command in non-interactive mode.",
|
|
7299
7348
|
"name": "non-interactive",
|
|
7349
|
+
"noCacheDefault": true,
|
|
7300
7350
|
"allowNo": false,
|
|
7301
7351
|
"type": "boolean"
|
|
7302
7352
|
}
|
|
@@ -7467,6 +7517,7 @@
|
|
|
7467
7517
|
"non-interactive": {
|
|
7468
7518
|
"description": "Run the command in non-interactive mode.",
|
|
7469
7519
|
"name": "non-interactive",
|
|
7520
|
+
"noCacheDefault": true,
|
|
7470
7521
|
"allowNo": false,
|
|
7471
7522
|
"type": "boolean"
|
|
7472
7523
|
}
|
|
@@ -7595,6 +7646,7 @@
|
|
|
7595
7646
|
"non-interactive": {
|
|
7596
7647
|
"description": "Run the command in non-interactive mode.",
|
|
7597
7648
|
"name": "non-interactive",
|
|
7649
|
+
"noCacheDefault": true,
|
|
7598
7650
|
"allowNo": false,
|
|
7599
7651
|
"type": "boolean"
|
|
7600
7652
|
}
|
|
@@ -7728,6 +7780,7 @@
|
|
|
7728
7780
|
"non-interactive": {
|
|
7729
7781
|
"description": "Run the command in non-interactive mode.",
|
|
7730
7782
|
"name": "non-interactive",
|
|
7783
|
+
"noCacheDefault": true,
|
|
7731
7784
|
"allowNo": false,
|
|
7732
7785
|
"type": "boolean"
|
|
7733
7786
|
}
|
|
@@ -7975,6 +8028,7 @@
|
|
|
7975
8028
|
"non-interactive": {
|
|
7976
8029
|
"description": "Run the command in non-interactive mode.",
|
|
7977
8030
|
"name": "non-interactive",
|
|
8031
|
+
"noCacheDefault": true,
|
|
7978
8032
|
"allowNo": false,
|
|
7979
8033
|
"type": "boolean"
|
|
7980
8034
|
}
|
|
@@ -8053,6 +8107,7 @@
|
|
|
8053
8107
|
"non-interactive": {
|
|
8054
8108
|
"description": "Run the command in non-interactive mode.",
|
|
8055
8109
|
"name": "non-interactive",
|
|
8110
|
+
"noCacheDefault": true,
|
|
8056
8111
|
"allowNo": false,
|
|
8057
8112
|
"type": "boolean"
|
|
8058
8113
|
}
|
|
@@ -8241,6 +8296,7 @@
|
|
|
8241
8296
|
"non-interactive": {
|
|
8242
8297
|
"description": "Run the command in non-interactive mode.",
|
|
8243
8298
|
"name": "non-interactive",
|
|
8299
|
+
"noCacheDefault": true,
|
|
8244
8300
|
"allowNo": false,
|
|
8245
8301
|
"type": "boolean"
|
|
8246
8302
|
}
|
|
@@ -8382,6 +8438,7 @@
|
|
|
8382
8438
|
"non-interactive": {
|
|
8383
8439
|
"description": "Run the command in non-interactive mode.",
|
|
8384
8440
|
"name": "non-interactive",
|
|
8441
|
+
"noCacheDefault": true,
|
|
8385
8442
|
"allowNo": false,
|
|
8386
8443
|
"type": "boolean"
|
|
8387
8444
|
}
|
|
@@ -8618,6 +8675,7 @@
|
|
|
8618
8675
|
"non-interactive": {
|
|
8619
8676
|
"description": "Run the command in non-interactive mode.",
|
|
8620
8677
|
"name": "non-interactive",
|
|
8678
|
+
"noCacheDefault": true,
|
|
8621
8679
|
"allowNo": false,
|
|
8622
8680
|
"type": "boolean"
|
|
8623
8681
|
},
|
|
@@ -8702,6 +8760,7 @@
|
|
|
8702
8760
|
"non-interactive": {
|
|
8703
8761
|
"description": "Run the command in non-interactive mode.",
|
|
8704
8762
|
"name": "non-interactive",
|
|
8763
|
+
"noCacheDefault": true,
|
|
8705
8764
|
"allowNo": false,
|
|
8706
8765
|
"type": "boolean"
|
|
8707
8766
|
},
|
|
@@ -8919,6 +8978,7 @@
|
|
|
8919
8978
|
"non-interactive": {
|
|
8920
8979
|
"description": "Run the command in non-interactive mode.",
|
|
8921
8980
|
"name": "non-interactive",
|
|
8981
|
+
"noCacheDefault": true,
|
|
8922
8982
|
"allowNo": false,
|
|
8923
8983
|
"type": "boolean"
|
|
8924
8984
|
},
|
|
@@ -9013,6 +9073,7 @@
|
|
|
9013
9073
|
"non-interactive": {
|
|
9014
9074
|
"description": "Run the command in non-interactive mode.",
|
|
9015
9075
|
"name": "non-interactive",
|
|
9076
|
+
"noCacheDefault": true,
|
|
9016
9077
|
"allowNo": false,
|
|
9017
9078
|
"type": "boolean"
|
|
9018
9079
|
}
|
|
@@ -9099,6 +9160,7 @@
|
|
|
9099
9160
|
"non-interactive": {
|
|
9100
9161
|
"description": "Run the command in non-interactive mode.",
|
|
9101
9162
|
"name": "non-interactive",
|
|
9163
|
+
"noCacheDefault": true,
|
|
9102
9164
|
"allowNo": false,
|
|
9103
9165
|
"type": "boolean"
|
|
9104
9166
|
}
|
|
@@ -9198,6 +9260,7 @@
|
|
|
9198
9260
|
"non-interactive": {
|
|
9199
9261
|
"description": "Run the command in non-interactive mode.",
|
|
9200
9262
|
"name": "non-interactive",
|
|
9263
|
+
"noCacheDefault": true,
|
|
9201
9264
|
"allowNo": false,
|
|
9202
9265
|
"type": "boolean"
|
|
9203
9266
|
}
|
|
@@ -9467,6 +9530,7 @@
|
|
|
9467
9530
|
"non-interactive": {
|
|
9468
9531
|
"description": "Run the command in non-interactive mode.",
|
|
9469
9532
|
"name": "non-interactive",
|
|
9533
|
+
"noCacheDefault": true,
|
|
9470
9534
|
"allowNo": false,
|
|
9471
9535
|
"type": "boolean"
|
|
9472
9536
|
}
|
|
@@ -9579,6 +9643,7 @@
|
|
|
9579
9643
|
"non-interactive": {
|
|
9580
9644
|
"description": "Run the command in non-interactive mode.",
|
|
9581
9645
|
"name": "non-interactive",
|
|
9646
|
+
"noCacheDefault": true,
|
|
9582
9647
|
"allowNo": false,
|
|
9583
9648
|
"type": "boolean"
|
|
9584
9649
|
}
|
|
@@ -9648,5 +9713,5 @@
|
|
|
9648
9713
|
]
|
|
9649
9714
|
}
|
|
9650
9715
|
},
|
|
9651
|
-
"version": "18.
|
|
9716
|
+
"version": "18.4.0"
|
|
9652
9717
|
}
|