eas-cli 18.12.0 → 18.12.2
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 +100 -100
- package/build/commands/go.d.ts +2 -3
- package/build/commands/go.js +89 -173
- package/build/commands/simulator/get.d.ts +13 -0
- package/build/commands/simulator/get.js +60 -0
- package/build/commands/simulator/start.js +11 -20
- package/build/graphql/generated.d.ts +111 -2
- package/build/graphql/generated.js +1 -0
- package/build/graphql/mutations/WorkflowRunMutation.d.ts +2 -1
- package/build/graphql/mutations/WorkflowRunMutation.js +12 -4
- package/build/graphql/queries/DeviceRunSessionQuery.js +12 -0
- package/build/graphql/queries/WorkflowRunQuery.d.ts +2 -1
- package/build/graphql/queries/WorkflowRunQuery.js +22 -0
- package/build/graphql/types/App.js +1 -0
- package/build/simulator/utils.d.ts +5 -0
- package/build/simulator/utils.js +20 -0
- package/build/vcs/clients/noVcs.js +2 -2
- package/oclif.manifest.json +1698 -1608
- package/package.json +2 -2
package/oclif.manifest.json
CHANGED
|
@@ -260,6 +260,14 @@
|
|
|
260
260
|
"multiple": false,
|
|
261
261
|
"type": "option"
|
|
262
262
|
},
|
|
263
|
+
"sdk-version": {
|
|
264
|
+
"description": "Expo Go SDK version to prepare (default: latest)",
|
|
265
|
+
"name": "sdk-version",
|
|
266
|
+
"required": false,
|
|
267
|
+
"hasDynamicHelp": false,
|
|
268
|
+
"multiple": false,
|
|
269
|
+
"type": "option"
|
|
270
|
+
},
|
|
263
271
|
"credentials": {
|
|
264
272
|
"description": "Interactively select credentials (default: auto-select)",
|
|
265
273
|
"name": "credentials",
|
|
@@ -1486,48 +1494,34 @@
|
|
|
1486
1494
|
"view.js"
|
|
1487
1495
|
]
|
|
1488
1496
|
},
|
|
1489
|
-
"
|
|
1497
|
+
"channel:create": {
|
|
1490
1498
|
"aliases": [],
|
|
1491
1499
|
"args": {
|
|
1492
|
-
"
|
|
1493
|
-
"
|
|
1500
|
+
"name": {
|
|
1501
|
+
"description": "Name of the channel to create",
|
|
1502
|
+
"name": "name",
|
|
1503
|
+
"required": false
|
|
1494
1504
|
}
|
|
1495
1505
|
},
|
|
1496
|
-
"description": "
|
|
1506
|
+
"description": "create a channel",
|
|
1497
1507
|
"flags": {
|
|
1508
|
+
"json": {
|
|
1509
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1510
|
+
"name": "json",
|
|
1511
|
+
"allowNo": false,
|
|
1512
|
+
"type": "boolean"
|
|
1513
|
+
},
|
|
1498
1514
|
"non-interactive": {
|
|
1499
1515
|
"description": "Run the command in non-interactive mode.",
|
|
1500
1516
|
"name": "non-interactive",
|
|
1501
1517
|
"noCacheDefault": true,
|
|
1502
1518
|
"allowNo": false,
|
|
1503
1519
|
"type": "boolean"
|
|
1504
|
-
},
|
|
1505
|
-
"platform": {
|
|
1506
|
-
"char": "p",
|
|
1507
|
-
"description": "Filter builds by the platform if build ID is not provided",
|
|
1508
|
-
"name": "platform",
|
|
1509
|
-
"hasDynamicHelp": false,
|
|
1510
|
-
"multiple": false,
|
|
1511
|
-
"options": [
|
|
1512
|
-
"android",
|
|
1513
|
-
"ios",
|
|
1514
|
-
"all"
|
|
1515
|
-
],
|
|
1516
|
-
"type": "option"
|
|
1517
|
-
},
|
|
1518
|
-
"profile": {
|
|
1519
|
-
"char": "e",
|
|
1520
|
-
"description": "Filter builds by build profile if build ID is not provided",
|
|
1521
|
-
"name": "profile",
|
|
1522
|
-
"hasDynamicHelp": false,
|
|
1523
|
-
"helpValue": "PROFILE_NAME",
|
|
1524
|
-
"multiple": false,
|
|
1525
|
-
"type": "option"
|
|
1526
1520
|
}
|
|
1527
1521
|
},
|
|
1528
1522
|
"hasDynamicHelp": false,
|
|
1529
1523
|
"hiddenAliases": [],
|
|
1530
|
-
"id": "
|
|
1524
|
+
"id": "channel:create",
|
|
1531
1525
|
"pluginAlias": "eas-cli",
|
|
1532
1526
|
"pluginName": "eas-cli",
|
|
1533
1527
|
"pluginType": "core",
|
|
@@ -1575,39 +1569,44 @@
|
|
|
1575
1569
|
},
|
|
1576
1570
|
"contextDefinition": {
|
|
1577
1571
|
"projectId": {},
|
|
1578
|
-
"loggedIn": {}
|
|
1579
|
-
"vcsClient": {}
|
|
1572
|
+
"loggedIn": {}
|
|
1580
1573
|
},
|
|
1581
1574
|
"isESM": false,
|
|
1582
1575
|
"relativePath": [
|
|
1583
1576
|
"build",
|
|
1584
1577
|
"commands",
|
|
1585
|
-
"
|
|
1586
|
-
"
|
|
1578
|
+
"channel",
|
|
1579
|
+
"create.js"
|
|
1587
1580
|
]
|
|
1588
1581
|
},
|
|
1589
|
-
"
|
|
1582
|
+
"channel:delete": {
|
|
1590
1583
|
"aliases": [],
|
|
1591
|
-
"args": {
|
|
1592
|
-
|
|
1584
|
+
"args": {
|
|
1585
|
+
"name": {
|
|
1586
|
+
"description": "Name of the channel to delete",
|
|
1587
|
+
"name": "name",
|
|
1588
|
+
"required": false
|
|
1589
|
+
}
|
|
1590
|
+
},
|
|
1591
|
+
"description": "Delete a channel",
|
|
1593
1592
|
"flags": {
|
|
1594
|
-
"
|
|
1595
|
-
"
|
|
1596
|
-
"
|
|
1597
|
-
"
|
|
1598
|
-
"
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
"type": "
|
|
1593
|
+
"json": {
|
|
1594
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1595
|
+
"name": "json",
|
|
1596
|
+
"allowNo": false,
|
|
1597
|
+
"type": "boolean"
|
|
1598
|
+
},
|
|
1599
|
+
"non-interactive": {
|
|
1600
|
+
"description": "Run the command in non-interactive mode.",
|
|
1601
|
+
"name": "non-interactive",
|
|
1602
|
+
"noCacheDefault": true,
|
|
1603
|
+
"allowNo": false,
|
|
1604
|
+
"type": "boolean"
|
|
1606
1605
|
}
|
|
1607
1606
|
},
|
|
1608
1607
|
"hasDynamicHelp": false,
|
|
1609
1608
|
"hiddenAliases": [],
|
|
1610
|
-
"id": "
|
|
1609
|
+
"id": "channel:delete",
|
|
1611
1610
|
"pluginAlias": "eas-cli",
|
|
1612
1611
|
"pluginName": "eas-cli",
|
|
1613
1612
|
"pluginType": "core",
|
|
@@ -1654,60 +1653,52 @@
|
|
|
1654
1653
|
}
|
|
1655
1654
|
},
|
|
1656
1655
|
"contextDefinition": {
|
|
1657
|
-
"
|
|
1658
|
-
"
|
|
1659
|
-
"vcsClient": {}
|
|
1656
|
+
"projectId": {},
|
|
1657
|
+
"loggedIn": {}
|
|
1660
1658
|
},
|
|
1661
1659
|
"isESM": false,
|
|
1662
1660
|
"relativePath": [
|
|
1663
1661
|
"build",
|
|
1664
1662
|
"commands",
|
|
1665
|
-
"
|
|
1666
|
-
"
|
|
1663
|
+
"channel",
|
|
1664
|
+
"delete.js"
|
|
1667
1665
|
]
|
|
1668
1666
|
},
|
|
1669
|
-
"
|
|
1667
|
+
"channel:edit": {
|
|
1670
1668
|
"aliases": [],
|
|
1671
1669
|
"args": {
|
|
1672
|
-
"
|
|
1673
|
-
"
|
|
1670
|
+
"name": {
|
|
1671
|
+
"description": "Name of the channel to edit",
|
|
1672
|
+
"name": "name",
|
|
1673
|
+
"required": false
|
|
1674
1674
|
}
|
|
1675
1675
|
},
|
|
1676
|
-
"description": "
|
|
1676
|
+
"description": "point a channel at a new branch",
|
|
1677
1677
|
"flags": {
|
|
1678
|
+
"branch": {
|
|
1679
|
+
"description": "Name of the branch to point to",
|
|
1680
|
+
"name": "branch",
|
|
1681
|
+
"hasDynamicHelp": false,
|
|
1682
|
+
"multiple": false,
|
|
1683
|
+
"type": "option"
|
|
1684
|
+
},
|
|
1685
|
+
"json": {
|
|
1686
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1687
|
+
"name": "json",
|
|
1688
|
+
"allowNo": false,
|
|
1689
|
+
"type": "boolean"
|
|
1690
|
+
},
|
|
1678
1691
|
"non-interactive": {
|
|
1679
1692
|
"description": "Run the command in non-interactive mode.",
|
|
1680
1693
|
"name": "non-interactive",
|
|
1681
1694
|
"noCacheDefault": true,
|
|
1682
1695
|
"allowNo": false,
|
|
1683
1696
|
"type": "boolean"
|
|
1684
|
-
},
|
|
1685
|
-
"platform": {
|
|
1686
|
-
"char": "p",
|
|
1687
|
-
"description": "Filter builds by the platform if build ID is not provided",
|
|
1688
|
-
"name": "platform",
|
|
1689
|
-
"hasDynamicHelp": false,
|
|
1690
|
-
"multiple": false,
|
|
1691
|
-
"options": [
|
|
1692
|
-
"android",
|
|
1693
|
-
"ios",
|
|
1694
|
-
"all"
|
|
1695
|
-
],
|
|
1696
|
-
"type": "option"
|
|
1697
|
-
},
|
|
1698
|
-
"profile": {
|
|
1699
|
-
"char": "e",
|
|
1700
|
-
"description": "Filter builds by build profile if build ID is not provided",
|
|
1701
|
-
"name": "profile",
|
|
1702
|
-
"hasDynamicHelp": false,
|
|
1703
|
-
"helpValue": "PROFILE_NAME",
|
|
1704
|
-
"multiple": false,
|
|
1705
|
-
"type": "option"
|
|
1706
1697
|
}
|
|
1707
1698
|
},
|
|
1708
1699
|
"hasDynamicHelp": false,
|
|
1709
1700
|
"hiddenAliases": [],
|
|
1710
|
-
"id": "
|
|
1701
|
+
"id": "channel:edit",
|
|
1711
1702
|
"pluginAlias": "eas-cli",
|
|
1712
1703
|
"pluginName": "eas-cli",
|
|
1713
1704
|
"pluginType": "core",
|
|
@@ -1755,65 +1746,85 @@
|
|
|
1755
1746
|
},
|
|
1756
1747
|
"contextDefinition": {
|
|
1757
1748
|
"projectId": {},
|
|
1758
|
-
"loggedIn": {}
|
|
1759
|
-
"vcsClient": {}
|
|
1749
|
+
"loggedIn": {}
|
|
1760
1750
|
},
|
|
1761
1751
|
"isESM": false,
|
|
1762
1752
|
"relativePath": [
|
|
1763
1753
|
"build",
|
|
1764
1754
|
"commands",
|
|
1765
|
-
"
|
|
1766
|
-
"
|
|
1755
|
+
"channel",
|
|
1756
|
+
"edit.js"
|
|
1767
1757
|
]
|
|
1768
1758
|
},
|
|
1769
|
-
"
|
|
1759
|
+
"channel:insights": {
|
|
1770
1760
|
"aliases": [],
|
|
1771
1761
|
"args": {},
|
|
1772
|
-
"description": "
|
|
1762
|
+
"description": "display adoption, crash, and unique-user insights for a channel + runtime version",
|
|
1773
1763
|
"flags": {
|
|
1774
|
-
"
|
|
1775
|
-
"
|
|
1776
|
-
"name": "
|
|
1764
|
+
"channel": {
|
|
1765
|
+
"description": "Name of the channel.",
|
|
1766
|
+
"name": "channel",
|
|
1767
|
+
"required": true,
|
|
1777
1768
|
"hasDynamicHelp": false,
|
|
1778
1769
|
"multiple": false,
|
|
1779
|
-
"
|
|
1780
|
-
|
|
1781
|
-
|
|
1770
|
+
"type": "option"
|
|
1771
|
+
},
|
|
1772
|
+
"runtime-version": {
|
|
1773
|
+
"description": "Runtime version to query insights for.",
|
|
1774
|
+
"name": "runtime-version",
|
|
1775
|
+
"required": true,
|
|
1776
|
+
"hasDynamicHelp": false,
|
|
1777
|
+
"multiple": false,
|
|
1778
|
+
"type": "option"
|
|
1779
|
+
},
|
|
1780
|
+
"days": {
|
|
1781
|
+
"description": "Show insights from the last N days (default 7, mutually exclusive with --start/--end).",
|
|
1782
|
+
"exclusive": [
|
|
1783
|
+
"start",
|
|
1784
|
+
"end"
|
|
1782
1785
|
],
|
|
1786
|
+
"name": "days",
|
|
1787
|
+
"hasDynamicHelp": false,
|
|
1788
|
+
"multiple": false,
|
|
1783
1789
|
"type": "option"
|
|
1784
1790
|
},
|
|
1785
|
-
"
|
|
1786
|
-
"
|
|
1787
|
-
"
|
|
1788
|
-
|
|
1791
|
+
"start": {
|
|
1792
|
+
"description": "Start of insights time range (ISO date).",
|
|
1793
|
+
"exclusive": [
|
|
1794
|
+
"days"
|
|
1795
|
+
],
|
|
1796
|
+
"name": "start",
|
|
1789
1797
|
"hasDynamicHelp": false,
|
|
1790
|
-
"helpValue": "PROFILE_NAME",
|
|
1791
1798
|
"multiple": false,
|
|
1792
1799
|
"type": "option"
|
|
1793
1800
|
},
|
|
1794
|
-
"
|
|
1795
|
-
"description": "
|
|
1796
|
-
"
|
|
1801
|
+
"end": {
|
|
1802
|
+
"description": "End of insights time range (ISO date).",
|
|
1803
|
+
"exclusive": [
|
|
1804
|
+
"days"
|
|
1805
|
+
],
|
|
1806
|
+
"name": "end",
|
|
1807
|
+
"hasDynamicHelp": false,
|
|
1808
|
+
"multiple": false,
|
|
1809
|
+
"type": "option"
|
|
1810
|
+
},
|
|
1811
|
+
"json": {
|
|
1812
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1813
|
+
"name": "json",
|
|
1797
1814
|
"allowNo": false,
|
|
1798
1815
|
"type": "boolean"
|
|
1799
1816
|
},
|
|
1800
|
-
"
|
|
1801
|
-
"description": "
|
|
1802
|
-
"name": "
|
|
1817
|
+
"non-interactive": {
|
|
1818
|
+
"description": "Run the command in non-interactive mode.",
|
|
1819
|
+
"name": "non-interactive",
|
|
1820
|
+
"noCacheDefault": true,
|
|
1803
1821
|
"allowNo": false,
|
|
1804
1822
|
"type": "boolean"
|
|
1805
|
-
},
|
|
1806
|
-
"simulator": {
|
|
1807
|
-
"description": "iOS simulator name or UDID to install and run the development build on. If no value is provided, you will be prompted to select a simulator.",
|
|
1808
|
-
"name": "simulator",
|
|
1809
|
-
"hasDynamicHelp": false,
|
|
1810
|
-
"multiple": false,
|
|
1811
|
-
"type": "option"
|
|
1812
1823
|
}
|
|
1813
1824
|
},
|
|
1814
1825
|
"hasDynamicHelp": false,
|
|
1815
1826
|
"hiddenAliases": [],
|
|
1816
|
-
"id": "
|
|
1827
|
+
"id": "channel:insights",
|
|
1817
1828
|
"pluginAlias": "eas-cli",
|
|
1818
1829
|
"pluginName": "eas-cli",
|
|
1819
1830
|
"pluginType": "core",
|
|
@@ -1860,81 +1871,36 @@
|
|
|
1860
1871
|
}
|
|
1861
1872
|
},
|
|
1862
1873
|
"contextDefinition": {
|
|
1863
|
-
"
|
|
1864
|
-
"
|
|
1865
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
1866
|
-
"projectDir": {},
|
|
1867
|
-
"vcsClient": {},
|
|
1868
|
-
"analytics": {},
|
|
1869
|
-
"projectId": {}
|
|
1874
|
+
"projectId": {},
|
|
1875
|
+
"loggedIn": {}
|
|
1870
1876
|
},
|
|
1871
1877
|
"isESM": false,
|
|
1872
1878
|
"relativePath": [
|
|
1873
1879
|
"build",
|
|
1874
1880
|
"commands",
|
|
1875
|
-
"
|
|
1876
|
-
"
|
|
1881
|
+
"channel",
|
|
1882
|
+
"insights.js"
|
|
1877
1883
|
]
|
|
1878
1884
|
},
|
|
1879
|
-
"
|
|
1885
|
+
"channel:list": {
|
|
1880
1886
|
"aliases": [],
|
|
1881
1887
|
"args": {},
|
|
1882
|
-
"description": "
|
|
1888
|
+
"description": "list all channels",
|
|
1883
1889
|
"flags": {
|
|
1884
|
-
"
|
|
1885
|
-
"
|
|
1886
|
-
|
|
1887
|
-
],
|
|
1888
|
-
"description": "ID of the build to download. Mutually exclusive with --fingerprint, --platform, and --dev-client; the platform is derived from the build itself.",
|
|
1889
|
-
"exclusive": [
|
|
1890
|
-
"fingerprint",
|
|
1891
|
-
"platform",
|
|
1892
|
-
"dev-client"
|
|
1893
|
-
],
|
|
1894
|
-
"name": "build-id",
|
|
1895
|
-
"hasDynamicHelp": false,
|
|
1896
|
-
"multiple": false,
|
|
1897
|
-
"type": "option"
|
|
1898
|
-
},
|
|
1899
|
-
"fingerprint": {
|
|
1900
|
-
"description": "Fingerprint hash of the build to download",
|
|
1901
|
-
"exclusive": [
|
|
1902
|
-
"build-id"
|
|
1903
|
-
],
|
|
1904
|
-
"name": "fingerprint",
|
|
1890
|
+
"offset": {
|
|
1891
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
1892
|
+
"name": "offset",
|
|
1905
1893
|
"hasDynamicHelp": false,
|
|
1906
1894
|
"multiple": false,
|
|
1907
1895
|
"type": "option"
|
|
1908
1896
|
},
|
|
1909
|
-
"
|
|
1910
|
-
"
|
|
1911
|
-
"
|
|
1912
|
-
"build-id"
|
|
1913
|
-
],
|
|
1914
|
-
"name": "platform",
|
|
1897
|
+
"limit": {
|
|
1898
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 25.",
|
|
1899
|
+
"name": "limit",
|
|
1915
1900
|
"hasDynamicHelp": false,
|
|
1916
1901
|
"multiple": false,
|
|
1917
|
-
"options": [
|
|
1918
|
-
"ios",
|
|
1919
|
-
"android"
|
|
1920
|
-
],
|
|
1921
1902
|
"type": "option"
|
|
1922
1903
|
},
|
|
1923
|
-
"dev-client": {
|
|
1924
|
-
"description": "Filter only dev-client builds.",
|
|
1925
|
-
"exclusive": [
|
|
1926
|
-
"build-id"
|
|
1927
|
-
],
|
|
1928
|
-
"name": "dev-client",
|
|
1929
|
-
"allowNo": true,
|
|
1930
|
-
"type": "boolean"
|
|
1931
|
-
},
|
|
1932
|
-
"all-artifacts": {
|
|
1933
|
-
"description": "Download all available build artifacts (build artifacts archive, Xcode logs, etc.) in addition to the application archive. Without this flag, only the application archive is downloaded and the command errors if it is missing.",
|
|
1934
|
-
"name": "all-artifacts",
|
|
1935
|
-
"allowNo": false,
|
|
1936
|
-
"type": "boolean"
|
|
1937
|
-
},
|
|
1938
1904
|
"json": {
|
|
1939
1905
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
1940
1906
|
"name": "json",
|
|
@@ -1951,7 +1917,7 @@
|
|
|
1951
1917
|
},
|
|
1952
1918
|
"hasDynamicHelp": false,
|
|
1953
1919
|
"hiddenAliases": [],
|
|
1954
|
-
"id": "
|
|
1920
|
+
"id": "channel:list",
|
|
1955
1921
|
"pluginAlias": "eas-cli",
|
|
1956
1922
|
"pluginName": "eas-cli",
|
|
1957
1923
|
"pluginType": "core",
|
|
@@ -1998,165 +1964,35 @@
|
|
|
1998
1964
|
}
|
|
1999
1965
|
},
|
|
2000
1966
|
"contextDefinition": {
|
|
2001
|
-
"
|
|
2002
|
-
"
|
|
1967
|
+
"projectId": {},
|
|
1968
|
+
"loggedIn": {}
|
|
2003
1969
|
},
|
|
2004
1970
|
"isESM": false,
|
|
2005
1971
|
"relativePath": [
|
|
2006
1972
|
"build",
|
|
2007
1973
|
"commands",
|
|
2008
|
-
"
|
|
2009
|
-
"
|
|
1974
|
+
"channel",
|
|
1975
|
+
"list.js"
|
|
2010
1976
|
]
|
|
2011
1977
|
},
|
|
2012
|
-
"
|
|
1978
|
+
"channel:pause": {
|
|
2013
1979
|
"aliases": [],
|
|
2014
|
-
"args": {
|
|
2015
|
-
|
|
1980
|
+
"args": {
|
|
1981
|
+
"name": {
|
|
1982
|
+
"description": "Name of the channel to edit",
|
|
1983
|
+
"name": "name",
|
|
1984
|
+
"required": false
|
|
1985
|
+
}
|
|
1986
|
+
},
|
|
1987
|
+
"description": "pause a channel to stop it from sending updates",
|
|
2016
1988
|
"flags": {
|
|
2017
|
-
"
|
|
2018
|
-
"
|
|
2019
|
-
"name": "
|
|
2020
|
-
"hasDynamicHelp": false,
|
|
2021
|
-
"multiple": false,
|
|
2022
|
-
"options": [
|
|
2023
|
-
"android",
|
|
2024
|
-
"ios",
|
|
2025
|
-
"all"
|
|
2026
|
-
],
|
|
2027
|
-
"type": "option"
|
|
2028
|
-
},
|
|
2029
|
-
"skip-credentials-check": {
|
|
2030
|
-
"hidden": true,
|
|
2031
|
-
"name": "skip-credentials-check",
|
|
2032
|
-
"allowNo": false,
|
|
2033
|
-
"type": "boolean"
|
|
2034
|
-
},
|
|
2035
|
-
"skip-project-configuration": {
|
|
2036
|
-
"hidden": true,
|
|
2037
|
-
"name": "skip-project-configuration",
|
|
2038
|
-
"allowNo": false,
|
|
2039
|
-
"type": "boolean"
|
|
2040
|
-
},
|
|
2041
|
-
"profile": {
|
|
2042
|
-
"char": "e",
|
|
2043
|
-
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
2044
|
-
"name": "profile",
|
|
2045
|
-
"hasDynamicHelp": false,
|
|
2046
|
-
"helpValue": "PROFILE_NAME",
|
|
2047
|
-
"multiple": false,
|
|
2048
|
-
"type": "option"
|
|
2049
|
-
},
|
|
2050
|
-
"local": {
|
|
2051
|
-
"description": "Run build locally [experimental]",
|
|
2052
|
-
"name": "local",
|
|
2053
|
-
"allowNo": false,
|
|
2054
|
-
"type": "boolean"
|
|
2055
|
-
},
|
|
2056
|
-
"output": {
|
|
2057
|
-
"description": "Output path for local build",
|
|
2058
|
-
"name": "output",
|
|
2059
|
-
"hasDynamicHelp": false,
|
|
2060
|
-
"multiple": false,
|
|
2061
|
-
"type": "option"
|
|
2062
|
-
},
|
|
2063
|
-
"wait": {
|
|
2064
|
-
"description": "Wait for build(s) to complete",
|
|
2065
|
-
"name": "wait",
|
|
2066
|
-
"allowNo": true,
|
|
2067
|
-
"type": "boolean"
|
|
2068
|
-
},
|
|
2069
|
-
"clear-cache": {
|
|
2070
|
-
"description": "Clear cache before the build",
|
|
2071
|
-
"name": "clear-cache",
|
|
2072
|
-
"allowNo": false,
|
|
2073
|
-
"type": "boolean"
|
|
2074
|
-
},
|
|
2075
|
-
"auto-submit": {
|
|
2076
|
-
"aliases": [
|
|
2077
|
-
"submit"
|
|
2078
|
-
],
|
|
2079
|
-
"char": "s",
|
|
2080
|
-
"description": "Submit on build complete using the submit profile with the same name as the build profile",
|
|
2081
|
-
"exclusive": [
|
|
2082
|
-
"auto-submit-with-profile"
|
|
2083
|
-
],
|
|
2084
|
-
"name": "auto-submit",
|
|
2085
|
-
"allowNo": false,
|
|
2086
|
-
"type": "boolean"
|
|
2087
|
-
},
|
|
2088
|
-
"auto-submit-with-profile": {
|
|
2089
|
-
"description": "Submit on build complete using the submit profile with provided name",
|
|
2090
|
-
"exclusive": [
|
|
2091
|
-
"auto-submit"
|
|
2092
|
-
],
|
|
2093
|
-
"name": "auto-submit-with-profile",
|
|
2094
|
-
"hasDynamicHelp": false,
|
|
2095
|
-
"helpValue": "PROFILE_NAME",
|
|
2096
|
-
"multiple": false,
|
|
2097
|
-
"type": "option"
|
|
2098
|
-
},
|
|
2099
|
-
"what-to-test": {
|
|
2100
|
-
"description": "Specify the \"What to Test\" information for the build in TestFlight (iOS-only). To be used with the `auto-submit` flag",
|
|
2101
|
-
"name": "what-to-test",
|
|
2102
|
-
"hasDynamicHelp": false,
|
|
2103
|
-
"multiple": false,
|
|
2104
|
-
"type": "option"
|
|
2105
|
-
},
|
|
2106
|
-
"resource-class": {
|
|
2107
|
-
"deprecated": {
|
|
2108
|
-
"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/"
|
|
2109
|
-
},
|
|
2110
|
-
"description": "The instance type that will be used to run this build [experimental]",
|
|
2111
|
-
"hidden": true,
|
|
2112
|
-
"name": "resource-class",
|
|
2113
|
-
"hasDynamicHelp": false,
|
|
2114
|
-
"multiple": false,
|
|
2115
|
-
"options": [
|
|
2116
|
-
"default",
|
|
2117
|
-
"large",
|
|
2118
|
-
"m1-medium",
|
|
2119
|
-
"medium",
|
|
2120
|
-
"m-medium",
|
|
2121
|
-
"m-large"
|
|
2122
|
-
],
|
|
2123
|
-
"type": "option"
|
|
2124
|
-
},
|
|
2125
|
-
"message": {
|
|
2126
|
-
"char": "m",
|
|
2127
|
-
"description": "A short message describing the build",
|
|
2128
|
-
"name": "message",
|
|
2129
|
-
"hasDynamicHelp": false,
|
|
2130
|
-
"multiple": false,
|
|
2131
|
-
"type": "option"
|
|
2132
|
-
},
|
|
2133
|
-
"build-logger-level": {
|
|
2134
|
-
"description": "The level of logs to output during the build process. Defaults to \"info\".",
|
|
2135
|
-
"name": "build-logger-level",
|
|
1989
|
+
"branch": {
|
|
1990
|
+
"description": "Name of the branch to point to",
|
|
1991
|
+
"name": "branch",
|
|
2136
1992
|
"hasDynamicHelp": false,
|
|
2137
1993
|
"multiple": false,
|
|
2138
|
-
"options": [
|
|
2139
|
-
"trace",
|
|
2140
|
-
"debug",
|
|
2141
|
-
"info",
|
|
2142
|
-
"warn",
|
|
2143
|
-
"error",
|
|
2144
|
-
"fatal"
|
|
2145
|
-
],
|
|
2146
1994
|
"type": "option"
|
|
2147
1995
|
},
|
|
2148
|
-
"freeze-credentials": {
|
|
2149
|
-
"description": "Prevent the build from updating credentials in non-interactive mode",
|
|
2150
|
-
"name": "freeze-credentials",
|
|
2151
|
-
"allowNo": false,
|
|
2152
|
-
"type": "boolean"
|
|
2153
|
-
},
|
|
2154
|
-
"verbose-logs": {
|
|
2155
|
-
"description": "Use verbose logs for the build process",
|
|
2156
|
-
"name": "verbose-logs",
|
|
2157
|
-
"allowNo": false,
|
|
2158
|
-
"type": "boolean"
|
|
2159
|
-
},
|
|
2160
1996
|
"json": {
|
|
2161
1997
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2162
1998
|
"name": "json",
|
|
@@ -2173,7 +2009,7 @@
|
|
|
2173
2009
|
},
|
|
2174
2010
|
"hasDynamicHelp": false,
|
|
2175
2011
|
"hiddenAliases": [],
|
|
2176
|
-
"id": "
|
|
2012
|
+
"id": "channel:pause",
|
|
2177
2013
|
"pluginAlias": "eas-cli",
|
|
2178
2014
|
"pluginName": "eas-cli",
|
|
2179
2015
|
"pluginType": "core",
|
|
@@ -2220,87 +2056,52 @@
|
|
|
2220
2056
|
}
|
|
2221
2057
|
},
|
|
2222
2058
|
"contextDefinition": {
|
|
2223
|
-
"
|
|
2224
|
-
"
|
|
2225
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
2226
|
-
"projectDir": {},
|
|
2227
|
-
"analytics": {},
|
|
2228
|
-
"vcsClient": {}
|
|
2059
|
+
"projectId": {},
|
|
2060
|
+
"loggedIn": {}
|
|
2229
2061
|
},
|
|
2230
2062
|
"isESM": false,
|
|
2231
2063
|
"relativePath": [
|
|
2232
2064
|
"build",
|
|
2233
2065
|
"commands",
|
|
2234
|
-
"
|
|
2235
|
-
"
|
|
2066
|
+
"channel",
|
|
2067
|
+
"pause.js"
|
|
2236
2068
|
]
|
|
2237
2069
|
},
|
|
2238
|
-
"
|
|
2070
|
+
"channel:resume": {
|
|
2239
2071
|
"aliases": [],
|
|
2240
|
-
"args": {
|
|
2241
|
-
|
|
2072
|
+
"args": {
|
|
2073
|
+
"name": {
|
|
2074
|
+
"description": "Name of the channel to edit",
|
|
2075
|
+
"name": "name",
|
|
2076
|
+
"required": false
|
|
2077
|
+
}
|
|
2078
|
+
},
|
|
2079
|
+
"description": "resume a channel to start sending updates",
|
|
2242
2080
|
"flags": {
|
|
2243
|
-
"
|
|
2244
|
-
"
|
|
2245
|
-
"name": "
|
|
2246
|
-
"required": true,
|
|
2247
|
-
"hasDynamicHelp": false,
|
|
2248
|
-
"multiple": false,
|
|
2249
|
-
"options": [
|
|
2250
|
-
"android",
|
|
2251
|
-
"ios"
|
|
2252
|
-
],
|
|
2253
|
-
"type": "option"
|
|
2254
|
-
},
|
|
2255
|
-
"profile": {
|
|
2256
|
-
"char": "e",
|
|
2257
|
-
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
2258
|
-
"name": "profile",
|
|
2081
|
+
"branch": {
|
|
2082
|
+
"description": "Name of the branch to point to",
|
|
2083
|
+
"name": "branch",
|
|
2259
2084
|
"hasDynamicHelp": false,
|
|
2260
|
-
"helpValue": "PROFILE_NAME",
|
|
2261
2085
|
"multiple": false,
|
|
2262
2086
|
"type": "option"
|
|
2263
2087
|
},
|
|
2264
|
-
"
|
|
2265
|
-
"
|
|
2266
|
-
"
|
|
2267
|
-
"name": "stage",
|
|
2268
|
-
"required": true,
|
|
2269
|
-
"hasDynamicHelp": false,
|
|
2270
|
-
"multiple": false,
|
|
2271
|
-
"options": [
|
|
2272
|
-
"archive",
|
|
2273
|
-
"pre-build",
|
|
2274
|
-
"post-build"
|
|
2275
|
-
],
|
|
2276
|
-
"type": "option"
|
|
2277
|
-
},
|
|
2278
|
-
"output": {
|
|
2279
|
-
"char": "o",
|
|
2280
|
-
"description": "Output directory.",
|
|
2281
|
-
"name": "output",
|
|
2282
|
-
"required": true,
|
|
2283
|
-
"hasDynamicHelp": false,
|
|
2284
|
-
"helpValue": "OUTPUT_DIRECTORY",
|
|
2285
|
-
"multiple": false,
|
|
2286
|
-
"type": "option"
|
|
2287
|
-
},
|
|
2288
|
-
"force": {
|
|
2289
|
-
"description": "Delete OUTPUT_DIRECTORY if it already exists.",
|
|
2290
|
-
"name": "force",
|
|
2088
|
+
"json": {
|
|
2089
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2090
|
+
"name": "json",
|
|
2291
2091
|
"allowNo": false,
|
|
2292
2092
|
"type": "boolean"
|
|
2293
2093
|
},
|
|
2294
|
-
"
|
|
2295
|
-
"
|
|
2296
|
-
"name": "
|
|
2094
|
+
"non-interactive": {
|
|
2095
|
+
"description": "Run the command in non-interactive mode.",
|
|
2096
|
+
"name": "non-interactive",
|
|
2097
|
+
"noCacheDefault": true,
|
|
2297
2098
|
"allowNo": false,
|
|
2298
2099
|
"type": "boolean"
|
|
2299
2100
|
}
|
|
2300
2101
|
},
|
|
2301
2102
|
"hasDynamicHelp": false,
|
|
2302
2103
|
"hiddenAliases": [],
|
|
2303
|
-
"id": "
|
|
2104
|
+
"id": "channel:resume",
|
|
2304
2105
|
"pluginAlias": "eas-cli",
|
|
2305
2106
|
"pluginName": "eas-cli",
|
|
2306
2107
|
"pluginType": "core",
|
|
@@ -2347,71 +2148,121 @@
|
|
|
2347
2148
|
}
|
|
2348
2149
|
},
|
|
2349
2150
|
"contextDefinition": {
|
|
2350
|
-
"
|
|
2351
|
-
"
|
|
2352
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
2353
|
-
"projectDir": {},
|
|
2354
|
-
"analytics": {},
|
|
2355
|
-
"vcsClient": {}
|
|
2151
|
+
"projectId": {},
|
|
2152
|
+
"loggedIn": {}
|
|
2356
2153
|
},
|
|
2357
2154
|
"isESM": false,
|
|
2358
2155
|
"relativePath": [
|
|
2359
2156
|
"build",
|
|
2360
2157
|
"commands",
|
|
2361
|
-
"
|
|
2362
|
-
"
|
|
2158
|
+
"channel",
|
|
2159
|
+
"resume.js"
|
|
2363
2160
|
]
|
|
2364
2161
|
},
|
|
2365
|
-
"
|
|
2162
|
+
"channel:rollout": {
|
|
2366
2163
|
"aliases": [],
|
|
2367
|
-
"args": {
|
|
2164
|
+
"args": {
|
|
2165
|
+
"channel": {
|
|
2166
|
+
"description": "channel on which the rollout should be done",
|
|
2167
|
+
"name": "channel"
|
|
2168
|
+
}
|
|
2169
|
+
},
|
|
2170
|
+
"description": "Roll a new branch out on a channel incrementally.",
|
|
2368
2171
|
"flags": {
|
|
2369
|
-
"
|
|
2370
|
-
"
|
|
2371
|
-
"name": "
|
|
2372
|
-
"
|
|
2172
|
+
"action": {
|
|
2173
|
+
"description": "Rollout action to perform",
|
|
2174
|
+
"name": "action",
|
|
2175
|
+
"relationships": [
|
|
2176
|
+
{
|
|
2177
|
+
"type": "all",
|
|
2178
|
+
"flags": [
|
|
2179
|
+
{
|
|
2180
|
+
"name": "percent"
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
"name": "outcome"
|
|
2184
|
+
},
|
|
2185
|
+
{
|
|
2186
|
+
"name": "branch"
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"name": "runtime-version"
|
|
2190
|
+
}
|
|
2191
|
+
]
|
|
2192
|
+
}
|
|
2193
|
+
],
|
|
2194
|
+
"required": false,
|
|
2373
2195
|
"hasDynamicHelp": false,
|
|
2374
2196
|
"multiple": false,
|
|
2375
2197
|
"options": [
|
|
2376
|
-
"
|
|
2377
|
-
"
|
|
2198
|
+
"create",
|
|
2199
|
+
"edit",
|
|
2200
|
+
"end",
|
|
2201
|
+
"view"
|
|
2378
2202
|
],
|
|
2379
2203
|
"type": "option"
|
|
2380
2204
|
},
|
|
2381
|
-
"
|
|
2382
|
-
"
|
|
2383
|
-
"
|
|
2384
|
-
"
|
|
2205
|
+
"percent": {
|
|
2206
|
+
"description": "Percent of users to send to the new branch. Use with --action=edit or --action=create",
|
|
2207
|
+
"name": "percent",
|
|
2208
|
+
"required": false,
|
|
2385
2209
|
"hasDynamicHelp": false,
|
|
2386
|
-
"helpValue": "PROFILE_NAME",
|
|
2387
2210
|
"multiple": false,
|
|
2388
2211
|
"type": "option"
|
|
2389
2212
|
},
|
|
2390
|
-
"
|
|
2391
|
-
"description": "
|
|
2392
|
-
"
|
|
2393
|
-
|
|
2213
|
+
"outcome": {
|
|
2214
|
+
"description": "End outcome of rollout. Use with --action=end",
|
|
2215
|
+
"name": "outcome",
|
|
2216
|
+
"required": false,
|
|
2217
|
+
"hasDynamicHelp": false,
|
|
2218
|
+
"multiple": false,
|
|
2219
|
+
"options": [
|
|
2220
|
+
"republish-and-revert",
|
|
2221
|
+
"revert"
|
|
2394
2222
|
],
|
|
2395
|
-
"
|
|
2396
|
-
"allowNo": false,
|
|
2397
|
-
"type": "boolean"
|
|
2223
|
+
"type": "option"
|
|
2398
2224
|
},
|
|
2399
|
-
"
|
|
2400
|
-
"description": "
|
|
2401
|
-
"
|
|
2402
|
-
|
|
2403
|
-
],
|
|
2404
|
-
"name": "auto-submit-with-profile",
|
|
2225
|
+
"branch": {
|
|
2226
|
+
"description": "Branch to roll out. Use with --action=create",
|
|
2227
|
+
"name": "branch",
|
|
2228
|
+
"required": false,
|
|
2405
2229
|
"hasDynamicHelp": false,
|
|
2406
|
-
"helpValue": "PROFILE_NAME",
|
|
2407
2230
|
"multiple": false,
|
|
2408
2231
|
"type": "option"
|
|
2232
|
+
},
|
|
2233
|
+
"runtime-version": {
|
|
2234
|
+
"description": "Runtime version to target. Use with --action=create",
|
|
2235
|
+
"name": "runtime-version",
|
|
2236
|
+
"required": false,
|
|
2237
|
+
"hasDynamicHelp": false,
|
|
2238
|
+
"multiple": false,
|
|
2239
|
+
"type": "option"
|
|
2240
|
+
},
|
|
2241
|
+
"private-key-path": {
|
|
2242
|
+
"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/",
|
|
2243
|
+
"name": "private-key-path",
|
|
2244
|
+
"required": false,
|
|
2245
|
+
"hasDynamicHelp": false,
|
|
2246
|
+
"multiple": false,
|
|
2247
|
+
"type": "option"
|
|
2248
|
+
},
|
|
2249
|
+
"json": {
|
|
2250
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2251
|
+
"name": "json",
|
|
2252
|
+
"allowNo": false,
|
|
2253
|
+
"type": "boolean"
|
|
2254
|
+
},
|
|
2255
|
+
"non-interactive": {
|
|
2256
|
+
"description": "Run the command in non-interactive mode.",
|
|
2257
|
+
"name": "non-interactive",
|
|
2258
|
+
"noCacheDefault": true,
|
|
2259
|
+
"allowNo": false,
|
|
2260
|
+
"type": "boolean"
|
|
2409
2261
|
}
|
|
2410
2262
|
},
|
|
2411
2263
|
"hasDynamicHelp": false,
|
|
2412
|
-
"hidden": true,
|
|
2413
2264
|
"hiddenAliases": [],
|
|
2414
|
-
"id": "
|
|
2265
|
+
"id": "channel:rollout",
|
|
2415
2266
|
"pluginAlias": "eas-cli",
|
|
2416
2267
|
"pluginName": "eas-cli",
|
|
2417
2268
|
"pluginType": "core",
|
|
@@ -2459,170 +2310,125 @@
|
|
|
2459
2310
|
},
|
|
2460
2311
|
"contextDefinition": {
|
|
2461
2312
|
"loggedIn": {},
|
|
2462
|
-
"
|
|
2463
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
2464
|
-
"projectDir": {},
|
|
2465
|
-
"analytics": {},
|
|
2313
|
+
"privateProjectConfig": {},
|
|
2466
2314
|
"vcsClient": {}
|
|
2467
2315
|
},
|
|
2468
2316
|
"isESM": false,
|
|
2469
2317
|
"relativePath": [
|
|
2470
2318
|
"build",
|
|
2471
2319
|
"commands",
|
|
2472
|
-
"
|
|
2473
|
-
"
|
|
2320
|
+
"channel",
|
|
2321
|
+
"rollout.js"
|
|
2474
2322
|
]
|
|
2475
2323
|
},
|
|
2476
|
-
"
|
|
2324
|
+
"channel:view": {
|
|
2477
2325
|
"aliases": [],
|
|
2478
|
-
"args": {
|
|
2479
|
-
|
|
2326
|
+
"args": {
|
|
2327
|
+
"name": {
|
|
2328
|
+
"description": "Name of the channel to view",
|
|
2329
|
+
"name": "name",
|
|
2330
|
+
"required": false
|
|
2331
|
+
}
|
|
2332
|
+
},
|
|
2333
|
+
"description": "view a channel",
|
|
2480
2334
|
"flags": {
|
|
2481
|
-
"
|
|
2482
|
-
"
|
|
2483
|
-
"name": "
|
|
2484
|
-
"
|
|
2485
|
-
"
|
|
2486
|
-
"options": [
|
|
2487
|
-
"android",
|
|
2488
|
-
"ios",
|
|
2489
|
-
"all"
|
|
2490
|
-
],
|
|
2491
|
-
"type": "option"
|
|
2335
|
+
"json": {
|
|
2336
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2337
|
+
"name": "json",
|
|
2338
|
+
"allowNo": false,
|
|
2339
|
+
"type": "boolean"
|
|
2492
2340
|
},
|
|
2493
|
-
"
|
|
2494
|
-
"description": "
|
|
2495
|
-
"name": "
|
|
2496
|
-
"
|
|
2497
|
-
"
|
|
2498
|
-
"
|
|
2499
|
-
"new",
|
|
2500
|
-
"in-queue",
|
|
2501
|
-
"in-progress",
|
|
2502
|
-
"pending-cancel",
|
|
2503
|
-
"errored",
|
|
2504
|
-
"finished",
|
|
2505
|
-
"canceled"
|
|
2506
|
-
],
|
|
2507
|
-
"type": "option"
|
|
2341
|
+
"non-interactive": {
|
|
2342
|
+
"description": "Run the command in non-interactive mode.",
|
|
2343
|
+
"name": "non-interactive",
|
|
2344
|
+
"noCacheDefault": true,
|
|
2345
|
+
"allowNo": false,
|
|
2346
|
+
"type": "boolean"
|
|
2508
2347
|
},
|
|
2509
|
-
"
|
|
2510
|
-
"description": "
|
|
2511
|
-
"name": "
|
|
2348
|
+
"offset": {
|
|
2349
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
2350
|
+
"name": "offset",
|
|
2512
2351
|
"hasDynamicHelp": false,
|
|
2513
2352
|
"multiple": false,
|
|
2514
|
-
"options": [
|
|
2515
|
-
"store",
|
|
2516
|
-
"internal",
|
|
2517
|
-
"simulator"
|
|
2518
|
-
],
|
|
2519
2353
|
"type": "option"
|
|
2520
2354
|
},
|
|
2521
|
-
"
|
|
2522
|
-
"
|
|
2355
|
+
"limit": {
|
|
2356
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
2357
|
+
"name": "limit",
|
|
2523
2358
|
"hasDynamicHelp": false,
|
|
2524
2359
|
"multiple": false,
|
|
2525
2360
|
"type": "option"
|
|
2361
|
+
}
|
|
2362
|
+
},
|
|
2363
|
+
"hasDynamicHelp": false,
|
|
2364
|
+
"hiddenAliases": [],
|
|
2365
|
+
"id": "channel:view",
|
|
2366
|
+
"pluginAlias": "eas-cli",
|
|
2367
|
+
"pluginName": "eas-cli",
|
|
2368
|
+
"pluginType": "core",
|
|
2369
|
+
"strict": true,
|
|
2370
|
+
"enableJsonFlag": false,
|
|
2371
|
+
"ContextOptions": {
|
|
2372
|
+
"LoggedIn": {
|
|
2373
|
+
"loggedIn": {}
|
|
2526
2374
|
},
|
|
2527
|
-
"
|
|
2528
|
-
"
|
|
2529
|
-
"appVersion"
|
|
2530
|
-
],
|
|
2531
|
-
"description": "Filter only builds created with the specified main app version",
|
|
2532
|
-
"name": "app-version",
|
|
2533
|
-
"hasDynamicHelp": false,
|
|
2534
|
-
"multiple": false,
|
|
2535
|
-
"type": "option"
|
|
2536
|
-
},
|
|
2537
|
-
"app-build-version": {
|
|
2538
|
-
"aliases": [
|
|
2539
|
-
"appBuildVersion"
|
|
2540
|
-
],
|
|
2541
|
-
"description": "Filter only builds created with the specified app build version",
|
|
2542
|
-
"name": "app-build-version",
|
|
2543
|
-
"hasDynamicHelp": false,
|
|
2544
|
-
"multiple": false,
|
|
2545
|
-
"type": "option"
|
|
2375
|
+
"MaybeLoggedIn": {
|
|
2376
|
+
"maybeLoggedIn": {}
|
|
2546
2377
|
},
|
|
2547
|
-
"
|
|
2548
|
-
"
|
|
2549
|
-
"sdkVersion"
|
|
2550
|
-
],
|
|
2551
|
-
"description": "Filter only builds created with the specified Expo SDK version",
|
|
2552
|
-
"name": "sdk-version",
|
|
2553
|
-
"hasDynamicHelp": false,
|
|
2554
|
-
"multiple": false,
|
|
2555
|
-
"type": "option"
|
|
2378
|
+
"DynamicLoggedIn": {
|
|
2379
|
+
"getDynamicLoggedInAsync": {}
|
|
2556
2380
|
},
|
|
2557
|
-
"
|
|
2558
|
-
"
|
|
2559
|
-
"runtimeVersion"
|
|
2560
|
-
],
|
|
2561
|
-
"description": "Filter only builds created with the specified runtime version",
|
|
2562
|
-
"name": "runtime-version",
|
|
2563
|
-
"hasDynamicHelp": false,
|
|
2564
|
-
"multiple": false,
|
|
2565
|
-
"type": "option"
|
|
2381
|
+
"SessionManagment": {
|
|
2382
|
+
"sessionManager": {}
|
|
2566
2383
|
},
|
|
2567
|
-
"
|
|
2568
|
-
"
|
|
2569
|
-
"appIdentifier"
|
|
2570
|
-
],
|
|
2571
|
-
"description": "Filter only builds created with the specified app identifier",
|
|
2572
|
-
"name": "app-identifier",
|
|
2573
|
-
"hasDynamicHelp": false,
|
|
2574
|
-
"multiple": false,
|
|
2575
|
-
"type": "option"
|
|
2384
|
+
"OptionalProjectConfig": {
|
|
2385
|
+
"optionalPrivateProjectConfig": {}
|
|
2576
2386
|
},
|
|
2577
|
-
"
|
|
2578
|
-
"
|
|
2579
|
-
"profile",
|
|
2580
|
-
"buildProfile"
|
|
2581
|
-
],
|
|
2582
|
-
"char": "e",
|
|
2583
|
-
"description": "Filter only builds created with the specified build profile",
|
|
2584
|
-
"name": "build-profile",
|
|
2585
|
-
"hasDynamicHelp": false,
|
|
2586
|
-
"multiple": false,
|
|
2587
|
-
"type": "option"
|
|
2387
|
+
"ProjectDir": {
|
|
2388
|
+
"projectDir": {}
|
|
2588
2389
|
},
|
|
2589
|
-
"
|
|
2590
|
-
"
|
|
2591
|
-
|
|
2592
|
-
],
|
|
2593
|
-
"description": "Filter only builds created with the specified git commit hash",
|
|
2594
|
-
"name": "git-commit-hash",
|
|
2595
|
-
"hasDynamicHelp": false,
|
|
2596
|
-
"multiple": false,
|
|
2597
|
-
"type": "option"
|
|
2390
|
+
"DynamicProjectConfig": {
|
|
2391
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
2392
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
2598
2393
|
},
|
|
2599
|
-
"
|
|
2600
|
-
"
|
|
2601
|
-
"
|
|
2602
|
-
"hasDynamicHelp": false,
|
|
2603
|
-
"multiple": false,
|
|
2604
|
-
"type": "option"
|
|
2394
|
+
"ProjectConfig": {
|
|
2395
|
+
"loggedIn": {},
|
|
2396
|
+
"privateProjectConfig": {}
|
|
2605
2397
|
},
|
|
2606
|
-
"
|
|
2607
|
-
"
|
|
2608
|
-
"name": "offset",
|
|
2609
|
-
"hasDynamicHelp": false,
|
|
2610
|
-
"multiple": false,
|
|
2611
|
-
"type": "option"
|
|
2398
|
+
"Analytics": {
|
|
2399
|
+
"analytics": {}
|
|
2612
2400
|
},
|
|
2613
|
-
"
|
|
2614
|
-
"
|
|
2615
|
-
"name": "limit",
|
|
2616
|
-
"hasDynamicHelp": false,
|
|
2617
|
-
"multiple": false,
|
|
2618
|
-
"type": "option"
|
|
2401
|
+
"Vcs": {
|
|
2402
|
+
"vcsClient": {}
|
|
2619
2403
|
},
|
|
2620
|
-
"
|
|
2621
|
-
"
|
|
2622
|
-
"name": "json",
|
|
2623
|
-
"allowNo": false,
|
|
2624
|
-
"type": "boolean"
|
|
2404
|
+
"ServerSideEnvironmentVariables": {
|
|
2405
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
2625
2406
|
},
|
|
2407
|
+
"ProjectId": {
|
|
2408
|
+
"projectId": {}
|
|
2409
|
+
}
|
|
2410
|
+
},
|
|
2411
|
+
"contextDefinition": {
|
|
2412
|
+
"projectId": {},
|
|
2413
|
+
"loggedIn": {}
|
|
2414
|
+
},
|
|
2415
|
+
"isESM": false,
|
|
2416
|
+
"relativePath": [
|
|
2417
|
+
"build",
|
|
2418
|
+
"commands",
|
|
2419
|
+
"channel",
|
|
2420
|
+
"view.js"
|
|
2421
|
+
]
|
|
2422
|
+
},
|
|
2423
|
+
"build:cancel": {
|
|
2424
|
+
"aliases": [],
|
|
2425
|
+
"args": {
|
|
2426
|
+
"BUILD_ID": {
|
|
2427
|
+
"name": "BUILD_ID"
|
|
2428
|
+
}
|
|
2429
|
+
},
|
|
2430
|
+
"description": "cancel a build",
|
|
2431
|
+
"flags": {
|
|
2626
2432
|
"non-interactive": {
|
|
2627
2433
|
"description": "Run the command in non-interactive mode.",
|
|
2628
2434
|
"name": "non-interactive",
|
|
@@ -2630,16 +2436,32 @@
|
|
|
2630
2436
|
"allowNo": false,
|
|
2631
2437
|
"type": "boolean"
|
|
2632
2438
|
},
|
|
2633
|
-
"
|
|
2634
|
-
"
|
|
2635
|
-
"
|
|
2636
|
-
"
|
|
2637
|
-
"
|
|
2439
|
+
"platform": {
|
|
2440
|
+
"char": "p",
|
|
2441
|
+
"description": "Filter builds by the platform if build ID is not provided",
|
|
2442
|
+
"name": "platform",
|
|
2443
|
+
"hasDynamicHelp": false,
|
|
2444
|
+
"multiple": false,
|
|
2445
|
+
"options": [
|
|
2446
|
+
"android",
|
|
2447
|
+
"ios",
|
|
2448
|
+
"all"
|
|
2449
|
+
],
|
|
2450
|
+
"type": "option"
|
|
2451
|
+
},
|
|
2452
|
+
"profile": {
|
|
2453
|
+
"char": "e",
|
|
2454
|
+
"description": "Filter builds by build profile if build ID is not provided",
|
|
2455
|
+
"name": "profile",
|
|
2456
|
+
"hasDynamicHelp": false,
|
|
2457
|
+
"helpValue": "PROFILE_NAME",
|
|
2458
|
+
"multiple": false,
|
|
2459
|
+
"type": "option"
|
|
2638
2460
|
}
|
|
2639
2461
|
},
|
|
2640
2462
|
"hasDynamicHelp": false,
|
|
2641
2463
|
"hiddenAliases": [],
|
|
2642
|
-
"id": "build:
|
|
2464
|
+
"id": "build:cancel",
|
|
2643
2465
|
"pluginAlias": "eas-cli",
|
|
2644
2466
|
"pluginName": "eas-cli",
|
|
2645
2467
|
"pluginType": "core",
|
|
@@ -2695,89 +2517,31 @@
|
|
|
2695
2517
|
"build",
|
|
2696
2518
|
"commands",
|
|
2697
2519
|
"build",
|
|
2698
|
-
"
|
|
2520
|
+
"cancel.js"
|
|
2699
2521
|
]
|
|
2700
2522
|
},
|
|
2701
|
-
"build:
|
|
2523
|
+
"build:configure": {
|
|
2702
2524
|
"aliases": [],
|
|
2703
2525
|
"args": {},
|
|
2704
|
-
"description": "
|
|
2526
|
+
"description": "configure the project to support EAS Build",
|
|
2705
2527
|
"flags": {
|
|
2706
2528
|
"platform": {
|
|
2707
2529
|
"char": "p",
|
|
2530
|
+
"description": "Platform to configure",
|
|
2708
2531
|
"name": "platform",
|
|
2709
2532
|
"hasDynamicHelp": false,
|
|
2710
2533
|
"multiple": false,
|
|
2711
2534
|
"options": [
|
|
2712
2535
|
"android",
|
|
2713
|
-
"ios"
|
|
2714
|
-
|
|
2715
|
-
"type": "option"
|
|
2716
|
-
},
|
|
2717
|
-
"target-profile": {
|
|
2718
|
-
"aliases": [
|
|
2719
|
-
"profile"
|
|
2536
|
+
"ios",
|
|
2537
|
+
"all"
|
|
2720
2538
|
],
|
|
2721
|
-
"char": "e",
|
|
2722
|
-
"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.",
|
|
2723
|
-
"name": "target-profile",
|
|
2724
|
-
"hasDynamicHelp": false,
|
|
2725
|
-
"helpValue": "PROFILE_NAME",
|
|
2726
|
-
"multiple": false,
|
|
2727
|
-
"type": "option"
|
|
2728
|
-
},
|
|
2729
|
-
"source-profile": {
|
|
2730
|
-
"description": "Name of the source build profile from eas.json. Used to filter builds eligible for re-signing.",
|
|
2731
|
-
"name": "source-profile",
|
|
2732
|
-
"hasDynamicHelp": false,
|
|
2733
|
-
"helpValue": "PROFILE_NAME",
|
|
2734
|
-
"multiple": false,
|
|
2735
|
-
"type": "option"
|
|
2736
|
-
},
|
|
2737
|
-
"wait": {
|
|
2738
|
-
"description": "Wait for build(s) to complete.",
|
|
2739
|
-
"name": "wait",
|
|
2740
|
-
"allowNo": true,
|
|
2741
|
-
"type": "boolean"
|
|
2742
|
-
},
|
|
2743
|
-
"id": {
|
|
2744
|
-
"description": "ID of the build to re-sign.",
|
|
2745
|
-
"name": "id",
|
|
2746
|
-
"hasDynamicHelp": false,
|
|
2747
|
-
"multiple": false,
|
|
2748
|
-
"type": "option"
|
|
2749
|
-
},
|
|
2750
|
-
"offset": {
|
|
2751
|
-
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
2752
|
-
"name": "offset",
|
|
2753
|
-
"hasDynamicHelp": false,
|
|
2754
|
-
"multiple": false,
|
|
2755
|
-
"type": "option"
|
|
2756
|
-
},
|
|
2757
|
-
"limit": {
|
|
2758
|
-
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
2759
|
-
"name": "limit",
|
|
2760
|
-
"hasDynamicHelp": false,
|
|
2761
|
-
"multiple": false,
|
|
2762
2539
|
"type": "option"
|
|
2763
|
-
},
|
|
2764
|
-
"json": {
|
|
2765
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
2766
|
-
"name": "json",
|
|
2767
|
-
"allowNo": false,
|
|
2768
|
-
"type": "boolean"
|
|
2769
|
-
},
|
|
2770
|
-
"non-interactive": {
|
|
2771
|
-
"description": "Run the command in non-interactive mode.",
|
|
2772
|
-
"name": "non-interactive",
|
|
2773
|
-
"noCacheDefault": true,
|
|
2774
|
-
"allowNo": false,
|
|
2775
|
-
"type": "boolean"
|
|
2776
2540
|
}
|
|
2777
2541
|
},
|
|
2778
2542
|
"hasDynamicHelp": false,
|
|
2779
2543
|
"hiddenAliases": [],
|
|
2780
|
-
"id": "build:
|
|
2544
|
+
"id": "build:configure",
|
|
2781
2545
|
"pluginAlias": "eas-cli",
|
|
2782
2546
|
"pluginName": "eas-cli",
|
|
2783
2547
|
"pluginType": "core",
|
|
@@ -2825,10 +2589,7 @@
|
|
|
2825
2589
|
},
|
|
2826
2590
|
"contextDefinition": {
|
|
2827
2591
|
"loggedIn": {},
|
|
2828
|
-
"
|
|
2829
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
2830
|
-
"projectDir": {},
|
|
2831
|
-
"analytics": {},
|
|
2592
|
+
"privateProjectConfig": {},
|
|
2832
2593
|
"vcsClient": {}
|
|
2833
2594
|
},
|
|
2834
2595
|
"isESM": false,
|
|
@@ -2836,104 +2597,51 @@
|
|
|
2836
2597
|
"build",
|
|
2837
2598
|
"commands",
|
|
2838
2599
|
"build",
|
|
2839
|
-
"
|
|
2600
|
+
"configure.js"
|
|
2840
2601
|
]
|
|
2841
2602
|
},
|
|
2842
|
-
"build:
|
|
2603
|
+
"build:delete": {
|
|
2843
2604
|
"aliases": [],
|
|
2844
|
-
"args": {
|
|
2845
|
-
|
|
2605
|
+
"args": {
|
|
2606
|
+
"BUILD_ID": {
|
|
2607
|
+
"name": "BUILD_ID"
|
|
2608
|
+
}
|
|
2609
|
+
},
|
|
2610
|
+
"description": "delete a build",
|
|
2846
2611
|
"flags": {
|
|
2847
|
-
"
|
|
2848
|
-
"description": "Run the
|
|
2849
|
-
"
|
|
2850
|
-
|
|
2851
|
-
"path",
|
|
2852
|
-
"url"
|
|
2853
|
-
],
|
|
2854
|
-
"name": "latest",
|
|
2612
|
+
"non-interactive": {
|
|
2613
|
+
"description": "Run the command in non-interactive mode.",
|
|
2614
|
+
"name": "non-interactive",
|
|
2615
|
+
"noCacheDefault": true,
|
|
2855
2616
|
"allowNo": false,
|
|
2856
2617
|
"type": "boolean"
|
|
2857
2618
|
},
|
|
2858
|
-
"url": {
|
|
2859
|
-
"description": "Simulator/Emulator build archive url",
|
|
2860
|
-
"exclusive": [
|
|
2861
|
-
"latest",
|
|
2862
|
-
"id",
|
|
2863
|
-
"path"
|
|
2864
|
-
],
|
|
2865
|
-
"name": "url",
|
|
2866
|
-
"hasDynamicHelp": false,
|
|
2867
|
-
"multiple": false,
|
|
2868
|
-
"type": "option"
|
|
2869
|
-
},
|
|
2870
|
-
"path": {
|
|
2871
|
-
"description": "Path to the simulator/emulator build archive or app",
|
|
2872
|
-
"exclusive": [
|
|
2873
|
-
"latest",
|
|
2874
|
-
"id",
|
|
2875
|
-
"url"
|
|
2876
|
-
],
|
|
2877
|
-
"name": "path",
|
|
2878
|
-
"hasDynamicHelp": false,
|
|
2879
|
-
"multiple": false,
|
|
2880
|
-
"type": "option"
|
|
2881
|
-
},
|
|
2882
|
-
"id": {
|
|
2883
|
-
"description": "ID of the simulator/emulator build to run",
|
|
2884
|
-
"exclusive": [
|
|
2885
|
-
"latest, path, url"
|
|
2886
|
-
],
|
|
2887
|
-
"name": "id",
|
|
2888
|
-
"hasDynamicHelp": false,
|
|
2889
|
-
"multiple": false,
|
|
2890
|
-
"type": "option"
|
|
2891
|
-
},
|
|
2892
2619
|
"platform": {
|
|
2893
2620
|
"char": "p",
|
|
2621
|
+
"description": "Filter builds by the platform if build ID is not provided",
|
|
2894
2622
|
"name": "platform",
|
|
2895
2623
|
"hasDynamicHelp": false,
|
|
2896
2624
|
"multiple": false,
|
|
2897
2625
|
"options": [
|
|
2898
2626
|
"android",
|
|
2899
|
-
"ios"
|
|
2627
|
+
"ios",
|
|
2628
|
+
"all"
|
|
2900
2629
|
],
|
|
2901
2630
|
"type": "option"
|
|
2902
2631
|
},
|
|
2903
2632
|
"profile": {
|
|
2904
2633
|
"char": "e",
|
|
2905
|
-
"description": "
|
|
2634
|
+
"description": "Filter builds by build profile if build ID is not provided",
|
|
2906
2635
|
"name": "profile",
|
|
2907
2636
|
"hasDynamicHelp": false,
|
|
2908
2637
|
"helpValue": "PROFILE_NAME",
|
|
2909
2638
|
"multiple": false,
|
|
2910
2639
|
"type": "option"
|
|
2911
|
-
},
|
|
2912
|
-
"simulator": {
|
|
2913
|
-
"description": "iOS simulator name or UDID to install and run the build on. If no value is provided, you will be prompted to select a simulator.",
|
|
2914
|
-
"name": "simulator",
|
|
2915
|
-
"hasDynamicHelp": false,
|
|
2916
|
-
"multiple": false,
|
|
2917
|
-
"type": "option"
|
|
2918
|
-
},
|
|
2919
|
-
"offset": {
|
|
2920
|
-
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
2921
|
-
"name": "offset",
|
|
2922
|
-
"hasDynamicHelp": false,
|
|
2923
|
-
"multiple": false,
|
|
2924
|
-
"type": "option"
|
|
2925
|
-
},
|
|
2926
|
-
"limit": {
|
|
2927
|
-
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
2928
|
-
"name": "limit",
|
|
2929
|
-
"hasDynamicHelp": false,
|
|
2930
|
-
"multiple": false,
|
|
2931
|
-
"type": "option"
|
|
2932
2640
|
}
|
|
2933
2641
|
},
|
|
2934
2642
|
"hasDynamicHelp": false,
|
|
2935
2643
|
"hiddenAliases": [],
|
|
2936
|
-
"id": "build:
|
|
2644
|
+
"id": "build:delete",
|
|
2937
2645
|
"pluginAlias": "eas-cli",
|
|
2938
2646
|
"pluginName": "eas-cli",
|
|
2939
2647
|
"pluginType": "core",
|
|
@@ -2980,8 +2688,8 @@
|
|
|
2980
2688
|
}
|
|
2981
2689
|
},
|
|
2982
2690
|
"contextDefinition": {
|
|
2983
|
-
"loggedIn": {},
|
|
2984
2691
|
"projectId": {},
|
|
2692
|
+
"loggedIn": {},
|
|
2985
2693
|
"vcsClient": {}
|
|
2986
2694
|
},
|
|
2987
2695
|
"isESM": false,
|
|
@@ -2989,28 +2697,57 @@
|
|
|
2989
2697
|
"build",
|
|
2990
2698
|
"commands",
|
|
2991
2699
|
"build",
|
|
2992
|
-
"
|
|
2700
|
+
"delete.js"
|
|
2993
2701
|
]
|
|
2994
2702
|
},
|
|
2995
|
-
"build:
|
|
2703
|
+
"build:dev": {
|
|
2996
2704
|
"aliases": [],
|
|
2997
|
-
"args": {
|
|
2998
|
-
|
|
2999
|
-
"name": "BUILD_ID"
|
|
3000
|
-
}
|
|
3001
|
-
},
|
|
3002
|
-
"description": "view a build for your project",
|
|
2705
|
+
"args": {},
|
|
2706
|
+
"description": "run dev client simulator/emulator build with matching fingerprint or create a new one",
|
|
3003
2707
|
"flags": {
|
|
3004
|
-
"
|
|
3005
|
-
"
|
|
3006
|
-
"name": "
|
|
2708
|
+
"platform": {
|
|
2709
|
+
"char": "p",
|
|
2710
|
+
"name": "platform",
|
|
2711
|
+
"hasDynamicHelp": false,
|
|
2712
|
+
"multiple": false,
|
|
2713
|
+
"options": [
|
|
2714
|
+
"ios",
|
|
2715
|
+
"android"
|
|
2716
|
+
],
|
|
2717
|
+
"type": "option"
|
|
2718
|
+
},
|
|
2719
|
+
"profile": {
|
|
2720
|
+
"char": "e",
|
|
2721
|
+
"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.",
|
|
2722
|
+
"name": "profile",
|
|
2723
|
+
"hasDynamicHelp": false,
|
|
2724
|
+
"helpValue": "PROFILE_NAME",
|
|
2725
|
+
"multiple": false,
|
|
2726
|
+
"type": "option"
|
|
2727
|
+
},
|
|
2728
|
+
"skip-build-if-not-found": {
|
|
2729
|
+
"description": "Skip build if no successful build with matching fingerprint is found.",
|
|
2730
|
+
"name": "skip-build-if-not-found",
|
|
2731
|
+
"allowNo": false,
|
|
2732
|
+
"type": "boolean"
|
|
2733
|
+
},
|
|
2734
|
+
"skip-bundler": {
|
|
2735
|
+
"description": "Install and run the development build without starting the bundler server.",
|
|
2736
|
+
"name": "skip-bundler",
|
|
3007
2737
|
"allowNo": false,
|
|
3008
2738
|
"type": "boolean"
|
|
2739
|
+
},
|
|
2740
|
+
"simulator": {
|
|
2741
|
+
"description": "iOS simulator name or UDID to install and run the development build on. If no value is provided, you will be prompted to select a simulator.",
|
|
2742
|
+
"name": "simulator",
|
|
2743
|
+
"hasDynamicHelp": false,
|
|
2744
|
+
"multiple": false,
|
|
2745
|
+
"type": "option"
|
|
3009
2746
|
}
|
|
3010
2747
|
},
|
|
3011
2748
|
"hasDynamicHelp": false,
|
|
3012
2749
|
"hiddenAliases": [],
|
|
3013
|
-
"id": "build:
|
|
2750
|
+
"id": "build:dev",
|
|
3014
2751
|
"pluginAlias": "eas-cli",
|
|
3015
2752
|
"pluginName": "eas-cli",
|
|
3016
2753
|
"pluginType": "core",
|
|
@@ -3057,29 +2794,81 @@
|
|
|
3057
2794
|
}
|
|
3058
2795
|
},
|
|
3059
2796
|
"contextDefinition": {
|
|
3060
|
-
"projectId": {},
|
|
3061
2797
|
"loggedIn": {},
|
|
3062
|
-
"
|
|
2798
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
2799
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
2800
|
+
"projectDir": {},
|
|
2801
|
+
"vcsClient": {},
|
|
2802
|
+
"analytics": {},
|
|
2803
|
+
"projectId": {}
|
|
3063
2804
|
},
|
|
3064
2805
|
"isESM": false,
|
|
3065
2806
|
"relativePath": [
|
|
3066
2807
|
"build",
|
|
3067
2808
|
"commands",
|
|
3068
2809
|
"build",
|
|
3069
|
-
"
|
|
2810
|
+
"dev.js"
|
|
3070
2811
|
]
|
|
3071
2812
|
},
|
|
3072
|
-
"
|
|
2813
|
+
"build:download": {
|
|
3073
2814
|
"aliases": [],
|
|
3074
|
-
"args": {
|
|
3075
|
-
|
|
3076
|
-
"description": "Name of the channel to create",
|
|
3077
|
-
"name": "name",
|
|
3078
|
-
"required": false
|
|
3079
|
-
}
|
|
3080
|
-
},
|
|
3081
|
-
"description": "create a channel",
|
|
2815
|
+
"args": {},
|
|
2816
|
+
"description": "download a simulator/emulator build by build ID or fingerprint hash",
|
|
3082
2817
|
"flags": {
|
|
2818
|
+
"build-id": {
|
|
2819
|
+
"aliases": [
|
|
2820
|
+
"id"
|
|
2821
|
+
],
|
|
2822
|
+
"description": "ID of the build to download. Mutually exclusive with --fingerprint, --platform, and --dev-client; the platform is derived from the build itself.",
|
|
2823
|
+
"exclusive": [
|
|
2824
|
+
"fingerprint",
|
|
2825
|
+
"platform",
|
|
2826
|
+
"dev-client"
|
|
2827
|
+
],
|
|
2828
|
+
"name": "build-id",
|
|
2829
|
+
"hasDynamicHelp": false,
|
|
2830
|
+
"multiple": false,
|
|
2831
|
+
"type": "option"
|
|
2832
|
+
},
|
|
2833
|
+
"fingerprint": {
|
|
2834
|
+
"description": "Fingerprint hash of the build to download",
|
|
2835
|
+
"exclusive": [
|
|
2836
|
+
"build-id"
|
|
2837
|
+
],
|
|
2838
|
+
"name": "fingerprint",
|
|
2839
|
+
"hasDynamicHelp": false,
|
|
2840
|
+
"multiple": false,
|
|
2841
|
+
"type": "option"
|
|
2842
|
+
},
|
|
2843
|
+
"platform": {
|
|
2844
|
+
"char": "p",
|
|
2845
|
+
"exclusive": [
|
|
2846
|
+
"build-id"
|
|
2847
|
+
],
|
|
2848
|
+
"name": "platform",
|
|
2849
|
+
"hasDynamicHelp": false,
|
|
2850
|
+
"multiple": false,
|
|
2851
|
+
"options": [
|
|
2852
|
+
"ios",
|
|
2853
|
+
"android"
|
|
2854
|
+
],
|
|
2855
|
+
"type": "option"
|
|
2856
|
+
},
|
|
2857
|
+
"dev-client": {
|
|
2858
|
+
"description": "Filter only dev-client builds.",
|
|
2859
|
+
"exclusive": [
|
|
2860
|
+
"build-id"
|
|
2861
|
+
],
|
|
2862
|
+
"name": "dev-client",
|
|
2863
|
+
"allowNo": true,
|
|
2864
|
+
"type": "boolean"
|
|
2865
|
+
},
|
|
2866
|
+
"all-artifacts": {
|
|
2867
|
+
"description": "Download all available build artifacts (build artifacts archive, Xcode logs, etc.) in addition to the application archive. Without this flag, only the application archive is downloaded and the command errors if it is missing.",
|
|
2868
|
+
"name": "all-artifacts",
|
|
2869
|
+
"allowNo": false,
|
|
2870
|
+
"type": "boolean"
|
|
2871
|
+
},
|
|
3083
2872
|
"json": {
|
|
3084
2873
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3085
2874
|
"name": "json",
|
|
@@ -3096,7 +2885,7 @@
|
|
|
3096
2885
|
},
|
|
3097
2886
|
"hasDynamicHelp": false,
|
|
3098
2887
|
"hiddenAliases": [],
|
|
3099
|
-
"id": "
|
|
2888
|
+
"id": "build:download",
|
|
3100
2889
|
"pluginAlias": "eas-cli",
|
|
3101
2890
|
"pluginName": "eas-cli",
|
|
3102
2891
|
"pluginType": "core",
|
|
@@ -3143,120 +2932,165 @@
|
|
|
3143
2932
|
}
|
|
3144
2933
|
},
|
|
3145
2934
|
"contextDefinition": {
|
|
3146
|
-
"
|
|
3147
|
-
"
|
|
2935
|
+
"loggedIn": {},
|
|
2936
|
+
"projectId": {}
|
|
3148
2937
|
},
|
|
3149
2938
|
"isESM": false,
|
|
3150
2939
|
"relativePath": [
|
|
3151
2940
|
"build",
|
|
3152
2941
|
"commands",
|
|
3153
|
-
"
|
|
3154
|
-
"
|
|
2942
|
+
"build",
|
|
2943
|
+
"download.js"
|
|
3155
2944
|
]
|
|
3156
2945
|
},
|
|
3157
|
-
"
|
|
2946
|
+
"build": {
|
|
3158
2947
|
"aliases": [],
|
|
3159
|
-
"args": {
|
|
3160
|
-
|
|
3161
|
-
"description": "Name of the channel to delete",
|
|
3162
|
-
"name": "name",
|
|
3163
|
-
"required": false
|
|
3164
|
-
}
|
|
3165
|
-
},
|
|
3166
|
-
"description": "Delete a channel",
|
|
2948
|
+
"args": {},
|
|
2949
|
+
"description": "start a build",
|
|
3167
2950
|
"flags": {
|
|
3168
|
-
"
|
|
3169
|
-
"
|
|
3170
|
-
"name": "
|
|
2951
|
+
"platform": {
|
|
2952
|
+
"char": "p",
|
|
2953
|
+
"name": "platform",
|
|
2954
|
+
"hasDynamicHelp": false,
|
|
2955
|
+
"multiple": false,
|
|
2956
|
+
"options": [
|
|
2957
|
+
"android",
|
|
2958
|
+
"ios",
|
|
2959
|
+
"all"
|
|
2960
|
+
],
|
|
2961
|
+
"type": "option"
|
|
2962
|
+
},
|
|
2963
|
+
"skip-credentials-check": {
|
|
2964
|
+
"hidden": true,
|
|
2965
|
+
"name": "skip-credentials-check",
|
|
3171
2966
|
"allowNo": false,
|
|
3172
2967
|
"type": "boolean"
|
|
3173
2968
|
},
|
|
3174
|
-
"
|
|
3175
|
-
"
|
|
3176
|
-
"name": "
|
|
3177
|
-
"noCacheDefault": true,
|
|
2969
|
+
"skip-project-configuration": {
|
|
2970
|
+
"hidden": true,
|
|
2971
|
+
"name": "skip-project-configuration",
|
|
3178
2972
|
"allowNo": false,
|
|
3179
2973
|
"type": "boolean"
|
|
3180
|
-
}
|
|
3181
|
-
},
|
|
3182
|
-
"hasDynamicHelp": false,
|
|
3183
|
-
"hiddenAliases": [],
|
|
3184
|
-
"id": "channel:delete",
|
|
3185
|
-
"pluginAlias": "eas-cli",
|
|
3186
|
-
"pluginName": "eas-cli",
|
|
3187
|
-
"pluginType": "core",
|
|
3188
|
-
"strict": true,
|
|
3189
|
-
"enableJsonFlag": false,
|
|
3190
|
-
"ContextOptions": {
|
|
3191
|
-
"LoggedIn": {
|
|
3192
|
-
"loggedIn": {}
|
|
3193
2974
|
},
|
|
3194
|
-
"
|
|
3195
|
-
"
|
|
2975
|
+
"profile": {
|
|
2976
|
+
"char": "e",
|
|
2977
|
+
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
2978
|
+
"name": "profile",
|
|
2979
|
+
"hasDynamicHelp": false,
|
|
2980
|
+
"helpValue": "PROFILE_NAME",
|
|
2981
|
+
"multiple": false,
|
|
2982
|
+
"type": "option"
|
|
3196
2983
|
},
|
|
3197
|
-
"
|
|
3198
|
-
"
|
|
2984
|
+
"local": {
|
|
2985
|
+
"description": "Run build locally [experimental]",
|
|
2986
|
+
"name": "local",
|
|
2987
|
+
"allowNo": false,
|
|
2988
|
+
"type": "boolean"
|
|
3199
2989
|
},
|
|
3200
|
-
"
|
|
3201
|
-
"
|
|
2990
|
+
"output": {
|
|
2991
|
+
"description": "Output path for local build",
|
|
2992
|
+
"name": "output",
|
|
2993
|
+
"hasDynamicHelp": false,
|
|
2994
|
+
"multiple": false,
|
|
2995
|
+
"type": "option"
|
|
3202
2996
|
},
|
|
3203
|
-
"
|
|
3204
|
-
"
|
|
2997
|
+
"wait": {
|
|
2998
|
+
"description": "Wait for build(s) to complete",
|
|
2999
|
+
"name": "wait",
|
|
3000
|
+
"allowNo": true,
|
|
3001
|
+
"type": "boolean"
|
|
3205
3002
|
},
|
|
3206
|
-
"
|
|
3207
|
-
"
|
|
3003
|
+
"clear-cache": {
|
|
3004
|
+
"description": "Clear cache before the build",
|
|
3005
|
+
"name": "clear-cache",
|
|
3006
|
+
"allowNo": false,
|
|
3007
|
+
"type": "boolean"
|
|
3208
3008
|
},
|
|
3209
|
-
"
|
|
3210
|
-
"
|
|
3211
|
-
|
|
3009
|
+
"auto-submit": {
|
|
3010
|
+
"aliases": [
|
|
3011
|
+
"submit"
|
|
3012
|
+
],
|
|
3013
|
+
"char": "s",
|
|
3014
|
+
"description": "Submit on build complete using the submit profile with the same name as the build profile",
|
|
3015
|
+
"exclusive": [
|
|
3016
|
+
"auto-submit-with-profile"
|
|
3017
|
+
],
|
|
3018
|
+
"name": "auto-submit",
|
|
3019
|
+
"allowNo": false,
|
|
3020
|
+
"type": "boolean"
|
|
3212
3021
|
},
|
|
3213
|
-
"
|
|
3214
|
-
"
|
|
3215
|
-
"
|
|
3022
|
+
"auto-submit-with-profile": {
|
|
3023
|
+
"description": "Submit on build complete using the submit profile with provided name",
|
|
3024
|
+
"exclusive": [
|
|
3025
|
+
"auto-submit"
|
|
3026
|
+
],
|
|
3027
|
+
"name": "auto-submit-with-profile",
|
|
3028
|
+
"hasDynamicHelp": false,
|
|
3029
|
+
"helpValue": "PROFILE_NAME",
|
|
3030
|
+
"multiple": false,
|
|
3031
|
+
"type": "option"
|
|
3216
3032
|
},
|
|
3217
|
-
"
|
|
3218
|
-
"
|
|
3033
|
+
"what-to-test": {
|
|
3034
|
+
"description": "Specify the \"What to Test\" information for the build in TestFlight (iOS-only). To be used with the `auto-submit` flag",
|
|
3035
|
+
"name": "what-to-test",
|
|
3036
|
+
"hasDynamicHelp": false,
|
|
3037
|
+
"multiple": false,
|
|
3038
|
+
"type": "option"
|
|
3219
3039
|
},
|
|
3220
|
-
"
|
|
3221
|
-
"
|
|
3040
|
+
"resource-class": {
|
|
3041
|
+
"deprecated": {
|
|
3042
|
+
"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/"
|
|
3043
|
+
},
|
|
3044
|
+
"description": "The instance type that will be used to run this build [experimental]",
|
|
3045
|
+
"hidden": true,
|
|
3046
|
+
"name": "resource-class",
|
|
3047
|
+
"hasDynamicHelp": false,
|
|
3048
|
+
"multiple": false,
|
|
3049
|
+
"options": [
|
|
3050
|
+
"default",
|
|
3051
|
+
"large",
|
|
3052
|
+
"m1-medium",
|
|
3053
|
+
"medium",
|
|
3054
|
+
"m-medium",
|
|
3055
|
+
"m-large"
|
|
3056
|
+
],
|
|
3057
|
+
"type": "option"
|
|
3222
3058
|
},
|
|
3223
|
-
"
|
|
3224
|
-
"
|
|
3059
|
+
"message": {
|
|
3060
|
+
"char": "m",
|
|
3061
|
+
"description": "A short message describing the build",
|
|
3062
|
+
"name": "message",
|
|
3063
|
+
"hasDynamicHelp": false,
|
|
3064
|
+
"multiple": false,
|
|
3065
|
+
"type": "option"
|
|
3225
3066
|
},
|
|
3226
|
-
"
|
|
3227
|
-
"
|
|
3228
|
-
|
|
3229
|
-
},
|
|
3230
|
-
"contextDefinition": {
|
|
3231
|
-
"projectId": {},
|
|
3232
|
-
"loggedIn": {}
|
|
3233
|
-
},
|
|
3234
|
-
"isESM": false,
|
|
3235
|
-
"relativePath": [
|
|
3236
|
-
"build",
|
|
3237
|
-
"commands",
|
|
3238
|
-
"channel",
|
|
3239
|
-
"delete.js"
|
|
3240
|
-
]
|
|
3241
|
-
},
|
|
3242
|
-
"channel:edit": {
|
|
3243
|
-
"aliases": [],
|
|
3244
|
-
"args": {
|
|
3245
|
-
"name": {
|
|
3246
|
-
"description": "Name of the channel to edit",
|
|
3247
|
-
"name": "name",
|
|
3248
|
-
"required": false
|
|
3249
|
-
}
|
|
3250
|
-
},
|
|
3251
|
-
"description": "point a channel at a new branch",
|
|
3252
|
-
"flags": {
|
|
3253
|
-
"branch": {
|
|
3254
|
-
"description": "Name of the branch to point to",
|
|
3255
|
-
"name": "branch",
|
|
3067
|
+
"build-logger-level": {
|
|
3068
|
+
"description": "The level of logs to output during the build process. Defaults to \"info\".",
|
|
3069
|
+
"name": "build-logger-level",
|
|
3256
3070
|
"hasDynamicHelp": false,
|
|
3257
3071
|
"multiple": false,
|
|
3072
|
+
"options": [
|
|
3073
|
+
"trace",
|
|
3074
|
+
"debug",
|
|
3075
|
+
"info",
|
|
3076
|
+
"warn",
|
|
3077
|
+
"error",
|
|
3078
|
+
"fatal"
|
|
3079
|
+
],
|
|
3258
3080
|
"type": "option"
|
|
3259
3081
|
},
|
|
3082
|
+
"freeze-credentials": {
|
|
3083
|
+
"description": "Prevent the build from updating credentials in non-interactive mode",
|
|
3084
|
+
"name": "freeze-credentials",
|
|
3085
|
+
"allowNo": false,
|
|
3086
|
+
"type": "boolean"
|
|
3087
|
+
},
|
|
3088
|
+
"verbose-logs": {
|
|
3089
|
+
"description": "Use verbose logs for the build process",
|
|
3090
|
+
"name": "verbose-logs",
|
|
3091
|
+
"allowNo": false,
|
|
3092
|
+
"type": "boolean"
|
|
3093
|
+
},
|
|
3260
3094
|
"json": {
|
|
3261
3095
|
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3262
3096
|
"name": "json",
|
|
@@ -3273,7 +3107,7 @@
|
|
|
3273
3107
|
},
|
|
3274
3108
|
"hasDynamicHelp": false,
|
|
3275
3109
|
"hiddenAliases": [],
|
|
3276
|
-
"id": "
|
|
3110
|
+
"id": "build",
|
|
3277
3111
|
"pluginAlias": "eas-cli",
|
|
3278
3112
|
"pluginName": "eas-cli",
|
|
3279
3113
|
"pluginType": "core",
|
|
@@ -3320,86 +3154,87 @@
|
|
|
3320
3154
|
}
|
|
3321
3155
|
},
|
|
3322
3156
|
"contextDefinition": {
|
|
3323
|
-
"
|
|
3324
|
-
"
|
|
3157
|
+
"loggedIn": {},
|
|
3158
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3159
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3160
|
+
"projectDir": {},
|
|
3161
|
+
"analytics": {},
|
|
3162
|
+
"vcsClient": {}
|
|
3325
3163
|
},
|
|
3326
3164
|
"isESM": false,
|
|
3327
3165
|
"relativePath": [
|
|
3328
3166
|
"build",
|
|
3329
3167
|
"commands",
|
|
3330
|
-
"
|
|
3331
|
-
"
|
|
3168
|
+
"build",
|
|
3169
|
+
"index.js"
|
|
3332
3170
|
]
|
|
3333
3171
|
},
|
|
3334
|
-
"
|
|
3172
|
+
"build:inspect": {
|
|
3335
3173
|
"aliases": [],
|
|
3336
3174
|
"args": {},
|
|
3337
|
-
"description": "
|
|
3175
|
+
"description": "inspect the state of the project at specific build stages, useful for troubleshooting",
|
|
3338
3176
|
"flags": {
|
|
3339
|
-
"
|
|
3340
|
-
"
|
|
3341
|
-
"name": "
|
|
3177
|
+
"platform": {
|
|
3178
|
+
"char": "p",
|
|
3179
|
+
"name": "platform",
|
|
3342
3180
|
"required": true,
|
|
3343
3181
|
"hasDynamicHelp": false,
|
|
3344
3182
|
"multiple": false,
|
|
3183
|
+
"options": [
|
|
3184
|
+
"android",
|
|
3185
|
+
"ios"
|
|
3186
|
+
],
|
|
3345
3187
|
"type": "option"
|
|
3346
3188
|
},
|
|
3347
|
-
"
|
|
3348
|
-
"
|
|
3349
|
-
"
|
|
3350
|
-
"
|
|
3189
|
+
"profile": {
|
|
3190
|
+
"char": "e",
|
|
3191
|
+
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
3192
|
+
"name": "profile",
|
|
3351
3193
|
"hasDynamicHelp": false,
|
|
3194
|
+
"helpValue": "PROFILE_NAME",
|
|
3352
3195
|
"multiple": false,
|
|
3353
3196
|
"type": "option"
|
|
3354
3197
|
},
|
|
3355
|
-
"
|
|
3356
|
-
"
|
|
3357
|
-
"
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
],
|
|
3361
|
-
"name": "days",
|
|
3198
|
+
"stage": {
|
|
3199
|
+
"char": "s",
|
|
3200
|
+
"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",
|
|
3201
|
+
"name": "stage",
|
|
3202
|
+
"required": true,
|
|
3362
3203
|
"hasDynamicHelp": false,
|
|
3363
3204
|
"multiple": false,
|
|
3364
|
-
"
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
"exclusive": [
|
|
3369
|
-
"days"
|
|
3205
|
+
"options": [
|
|
3206
|
+
"archive",
|
|
3207
|
+
"pre-build",
|
|
3208
|
+
"post-build"
|
|
3370
3209
|
],
|
|
3371
|
-
"name": "start",
|
|
3372
|
-
"hasDynamicHelp": false,
|
|
3373
|
-
"multiple": false,
|
|
3374
3210
|
"type": "option"
|
|
3375
3211
|
},
|
|
3376
|
-
"
|
|
3377
|
-
"
|
|
3378
|
-
"
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
"name": "end",
|
|
3212
|
+
"output": {
|
|
3213
|
+
"char": "o",
|
|
3214
|
+
"description": "Output directory.",
|
|
3215
|
+
"name": "output",
|
|
3216
|
+
"required": true,
|
|
3382
3217
|
"hasDynamicHelp": false,
|
|
3218
|
+
"helpValue": "OUTPUT_DIRECTORY",
|
|
3383
3219
|
"multiple": false,
|
|
3384
3220
|
"type": "option"
|
|
3385
3221
|
},
|
|
3386
|
-
"
|
|
3387
|
-
"description": "
|
|
3388
|
-
"name": "
|
|
3222
|
+
"force": {
|
|
3223
|
+
"description": "Delete OUTPUT_DIRECTORY if it already exists.",
|
|
3224
|
+
"name": "force",
|
|
3389
3225
|
"allowNo": false,
|
|
3390
3226
|
"type": "boolean"
|
|
3391
3227
|
},
|
|
3392
|
-
"
|
|
3393
|
-
"
|
|
3394
|
-
"name": "
|
|
3395
|
-
"noCacheDefault": true,
|
|
3228
|
+
"verbose": {
|
|
3229
|
+
"char": "v",
|
|
3230
|
+
"name": "verbose",
|
|
3396
3231
|
"allowNo": false,
|
|
3397
3232
|
"type": "boolean"
|
|
3398
3233
|
}
|
|
3399
3234
|
},
|
|
3400
3235
|
"hasDynamicHelp": false,
|
|
3401
3236
|
"hiddenAliases": [],
|
|
3402
|
-
"id": "
|
|
3237
|
+
"id": "build:inspect",
|
|
3403
3238
|
"pluginAlias": "eas-cli",
|
|
3404
3239
|
"pluginName": "eas-cli",
|
|
3405
3240
|
"pluginType": "core",
|
|
@@ -3446,145 +3281,71 @@
|
|
|
3446
3281
|
}
|
|
3447
3282
|
},
|
|
3448
3283
|
"contextDefinition": {
|
|
3449
|
-
"
|
|
3450
|
-
"
|
|
3284
|
+
"loggedIn": {},
|
|
3285
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3286
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3287
|
+
"projectDir": {},
|
|
3288
|
+
"analytics": {},
|
|
3289
|
+
"vcsClient": {}
|
|
3451
3290
|
},
|
|
3452
3291
|
"isESM": false,
|
|
3453
3292
|
"relativePath": [
|
|
3454
3293
|
"build",
|
|
3455
3294
|
"commands",
|
|
3456
|
-
"
|
|
3457
|
-
"
|
|
3295
|
+
"build",
|
|
3296
|
+
"inspect.js"
|
|
3458
3297
|
]
|
|
3459
3298
|
},
|
|
3460
|
-
"
|
|
3299
|
+
"build:internal": {
|
|
3461
3300
|
"aliases": [],
|
|
3462
3301
|
"args": {},
|
|
3463
|
-
"description": "list all channels",
|
|
3464
3302
|
"flags": {
|
|
3465
|
-
"
|
|
3466
|
-
"
|
|
3467
|
-
"name": "
|
|
3303
|
+
"platform": {
|
|
3304
|
+
"char": "p",
|
|
3305
|
+
"name": "platform",
|
|
3306
|
+
"required": true,
|
|
3468
3307
|
"hasDynamicHelp": false,
|
|
3469
3308
|
"multiple": false,
|
|
3309
|
+
"options": [
|
|
3310
|
+
"android",
|
|
3311
|
+
"ios"
|
|
3312
|
+
],
|
|
3470
3313
|
"type": "option"
|
|
3471
3314
|
},
|
|
3472
|
-
"
|
|
3473
|
-
"
|
|
3474
|
-
"
|
|
3315
|
+
"profile": {
|
|
3316
|
+
"char": "e",
|
|
3317
|
+
"description": "Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
3318
|
+
"name": "profile",
|
|
3475
3319
|
"hasDynamicHelp": false,
|
|
3320
|
+
"helpValue": "PROFILE_NAME",
|
|
3476
3321
|
"multiple": false,
|
|
3477
3322
|
"type": "option"
|
|
3478
3323
|
},
|
|
3479
|
-
"
|
|
3480
|
-
"description": "
|
|
3481
|
-
"
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
"non-interactive": {
|
|
3486
|
-
"description": "Run the command in non-interactive mode.",
|
|
3487
|
-
"name": "non-interactive",
|
|
3488
|
-
"noCacheDefault": true,
|
|
3324
|
+
"auto-submit": {
|
|
3325
|
+
"description": "Submit on build complete using the submit profile with the same name as the build profile",
|
|
3326
|
+
"exclusive": [
|
|
3327
|
+
"auto-submit-with-profile"
|
|
3328
|
+
],
|
|
3329
|
+
"name": "auto-submit",
|
|
3489
3330
|
"allowNo": false,
|
|
3490
3331
|
"type": "boolean"
|
|
3491
|
-
}
|
|
3492
|
-
},
|
|
3493
|
-
"hasDynamicHelp": false,
|
|
3494
|
-
"hiddenAliases": [],
|
|
3495
|
-
"id": "channel:list",
|
|
3496
|
-
"pluginAlias": "eas-cli",
|
|
3497
|
-
"pluginName": "eas-cli",
|
|
3498
|
-
"pluginType": "core",
|
|
3499
|
-
"strict": true,
|
|
3500
|
-
"enableJsonFlag": false,
|
|
3501
|
-
"ContextOptions": {
|
|
3502
|
-
"LoggedIn": {
|
|
3503
|
-
"loggedIn": {}
|
|
3504
|
-
},
|
|
3505
|
-
"MaybeLoggedIn": {
|
|
3506
|
-
"maybeLoggedIn": {}
|
|
3507
|
-
},
|
|
3508
|
-
"DynamicLoggedIn": {
|
|
3509
|
-
"getDynamicLoggedInAsync": {}
|
|
3510
|
-
},
|
|
3511
|
-
"SessionManagment": {
|
|
3512
|
-
"sessionManager": {}
|
|
3513
3332
|
},
|
|
3514
|
-
"
|
|
3515
|
-
"
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
"DynamicProjectConfig": {
|
|
3521
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
3522
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
3523
|
-
},
|
|
3524
|
-
"ProjectConfig": {
|
|
3525
|
-
"loggedIn": {},
|
|
3526
|
-
"privateProjectConfig": {}
|
|
3527
|
-
},
|
|
3528
|
-
"Analytics": {
|
|
3529
|
-
"analytics": {}
|
|
3530
|
-
},
|
|
3531
|
-
"Vcs": {
|
|
3532
|
-
"vcsClient": {}
|
|
3533
|
-
},
|
|
3534
|
-
"ServerSideEnvironmentVariables": {
|
|
3535
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
3536
|
-
},
|
|
3537
|
-
"ProjectId": {
|
|
3538
|
-
"projectId": {}
|
|
3539
|
-
}
|
|
3540
|
-
},
|
|
3541
|
-
"contextDefinition": {
|
|
3542
|
-
"projectId": {},
|
|
3543
|
-
"loggedIn": {}
|
|
3544
|
-
},
|
|
3545
|
-
"isESM": false,
|
|
3546
|
-
"relativePath": [
|
|
3547
|
-
"build",
|
|
3548
|
-
"commands",
|
|
3549
|
-
"channel",
|
|
3550
|
-
"list.js"
|
|
3551
|
-
]
|
|
3552
|
-
},
|
|
3553
|
-
"channel:pause": {
|
|
3554
|
-
"aliases": [],
|
|
3555
|
-
"args": {
|
|
3556
|
-
"name": {
|
|
3557
|
-
"description": "Name of the channel to edit",
|
|
3558
|
-
"name": "name",
|
|
3559
|
-
"required": false
|
|
3560
|
-
}
|
|
3561
|
-
},
|
|
3562
|
-
"description": "pause a channel to stop it from sending updates",
|
|
3563
|
-
"flags": {
|
|
3564
|
-
"branch": {
|
|
3565
|
-
"description": "Name of the branch to point to",
|
|
3566
|
-
"name": "branch",
|
|
3333
|
+
"auto-submit-with-profile": {
|
|
3334
|
+
"description": "Submit on build complete using the submit profile with provided name",
|
|
3335
|
+
"exclusive": [
|
|
3336
|
+
"auto-submit"
|
|
3337
|
+
],
|
|
3338
|
+
"name": "auto-submit-with-profile",
|
|
3567
3339
|
"hasDynamicHelp": false,
|
|
3340
|
+
"helpValue": "PROFILE_NAME",
|
|
3568
3341
|
"multiple": false,
|
|
3569
3342
|
"type": "option"
|
|
3570
|
-
},
|
|
3571
|
-
"json": {
|
|
3572
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3573
|
-
"name": "json",
|
|
3574
|
-
"allowNo": false,
|
|
3575
|
-
"type": "boolean"
|
|
3576
|
-
},
|
|
3577
|
-
"non-interactive": {
|
|
3578
|
-
"description": "Run the command in non-interactive mode.",
|
|
3579
|
-
"name": "non-interactive",
|
|
3580
|
-
"noCacheDefault": true,
|
|
3581
|
-
"allowNo": false,
|
|
3582
|
-
"type": "boolean"
|
|
3583
3343
|
}
|
|
3584
3344
|
},
|
|
3585
3345
|
"hasDynamicHelp": false,
|
|
3346
|
+
"hidden": true,
|
|
3586
3347
|
"hiddenAliases": [],
|
|
3587
|
-
"id": "
|
|
3348
|
+
"id": "build:internal",
|
|
3588
3349
|
"pluginAlias": "eas-cli",
|
|
3589
3350
|
"pluginName": "eas-cli",
|
|
3590
3351
|
"pluginType": "core",
|
|
@@ -3631,192 +3392,161 @@
|
|
|
3631
3392
|
}
|
|
3632
3393
|
},
|
|
3633
3394
|
"contextDefinition": {
|
|
3634
|
-
"
|
|
3635
|
-
"
|
|
3395
|
+
"loggedIn": {},
|
|
3396
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3397
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3398
|
+
"projectDir": {},
|
|
3399
|
+
"analytics": {},
|
|
3400
|
+
"vcsClient": {}
|
|
3636
3401
|
},
|
|
3637
3402
|
"isESM": false,
|
|
3638
3403
|
"relativePath": [
|
|
3639
3404
|
"build",
|
|
3640
3405
|
"commands",
|
|
3641
|
-
"
|
|
3642
|
-
"
|
|
3406
|
+
"build",
|
|
3407
|
+
"internal.js"
|
|
3643
3408
|
]
|
|
3644
3409
|
},
|
|
3645
|
-
"
|
|
3410
|
+
"build:list": {
|
|
3646
3411
|
"aliases": [],
|
|
3647
|
-
"args": {
|
|
3648
|
-
|
|
3649
|
-
"description": "Name of the channel to edit",
|
|
3650
|
-
"name": "name",
|
|
3651
|
-
"required": false
|
|
3652
|
-
}
|
|
3653
|
-
},
|
|
3654
|
-
"description": "resume a channel to start sending updates",
|
|
3412
|
+
"args": {},
|
|
3413
|
+
"description": "list all builds for your project",
|
|
3655
3414
|
"flags": {
|
|
3656
|
-
"
|
|
3657
|
-
"
|
|
3658
|
-
"name": "
|
|
3415
|
+
"platform": {
|
|
3416
|
+
"char": "p",
|
|
3417
|
+
"name": "platform",
|
|
3659
3418
|
"hasDynamicHelp": false,
|
|
3660
3419
|
"multiple": false,
|
|
3420
|
+
"options": [
|
|
3421
|
+
"android",
|
|
3422
|
+
"ios",
|
|
3423
|
+
"all"
|
|
3424
|
+
],
|
|
3661
3425
|
"type": "option"
|
|
3662
3426
|
},
|
|
3663
|
-
"
|
|
3664
|
-
"description": "
|
|
3665
|
-
"name": "
|
|
3666
|
-
"
|
|
3667
|
-
"
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
"hiddenAliases": [],
|
|
3679
|
-
"id": "channel:resume",
|
|
3680
|
-
"pluginAlias": "eas-cli",
|
|
3681
|
-
"pluginName": "eas-cli",
|
|
3682
|
-
"pluginType": "core",
|
|
3683
|
-
"strict": true,
|
|
3684
|
-
"enableJsonFlag": false,
|
|
3685
|
-
"ContextOptions": {
|
|
3686
|
-
"LoggedIn": {
|
|
3687
|
-
"loggedIn": {}
|
|
3688
|
-
},
|
|
3689
|
-
"MaybeLoggedIn": {
|
|
3690
|
-
"maybeLoggedIn": {}
|
|
3691
|
-
},
|
|
3692
|
-
"DynamicLoggedIn": {
|
|
3693
|
-
"getDynamicLoggedInAsync": {}
|
|
3694
|
-
},
|
|
3695
|
-
"SessionManagment": {
|
|
3696
|
-
"sessionManager": {}
|
|
3697
|
-
},
|
|
3698
|
-
"OptionalProjectConfig": {
|
|
3699
|
-
"optionalPrivateProjectConfig": {}
|
|
3700
|
-
},
|
|
3701
|
-
"ProjectDir": {
|
|
3702
|
-
"projectDir": {}
|
|
3703
|
-
},
|
|
3704
|
-
"DynamicProjectConfig": {
|
|
3705
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
3706
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
3427
|
+
"status": {
|
|
3428
|
+
"description": "Filter only builds with the specified status",
|
|
3429
|
+
"name": "status",
|
|
3430
|
+
"hasDynamicHelp": false,
|
|
3431
|
+
"multiple": false,
|
|
3432
|
+
"options": [
|
|
3433
|
+
"new",
|
|
3434
|
+
"in-queue",
|
|
3435
|
+
"in-progress",
|
|
3436
|
+
"pending-cancel",
|
|
3437
|
+
"errored",
|
|
3438
|
+
"finished",
|
|
3439
|
+
"canceled"
|
|
3440
|
+
],
|
|
3441
|
+
"type": "option"
|
|
3707
3442
|
},
|
|
3708
|
-
"
|
|
3709
|
-
"
|
|
3710
|
-
"
|
|
3443
|
+
"distribution": {
|
|
3444
|
+
"description": "Filter only builds with the specified distribution type",
|
|
3445
|
+
"name": "distribution",
|
|
3446
|
+
"hasDynamicHelp": false,
|
|
3447
|
+
"multiple": false,
|
|
3448
|
+
"options": [
|
|
3449
|
+
"store",
|
|
3450
|
+
"internal",
|
|
3451
|
+
"simulator"
|
|
3452
|
+
],
|
|
3453
|
+
"type": "option"
|
|
3711
3454
|
},
|
|
3712
|
-
"
|
|
3713
|
-
"
|
|
3455
|
+
"channel": {
|
|
3456
|
+
"name": "channel",
|
|
3457
|
+
"hasDynamicHelp": false,
|
|
3458
|
+
"multiple": false,
|
|
3459
|
+
"type": "option"
|
|
3714
3460
|
},
|
|
3715
|
-
"
|
|
3716
|
-
"
|
|
3461
|
+
"app-version": {
|
|
3462
|
+
"aliases": [
|
|
3463
|
+
"appVersion"
|
|
3464
|
+
],
|
|
3465
|
+
"description": "Filter only builds created with the specified main app version",
|
|
3466
|
+
"name": "app-version",
|
|
3467
|
+
"hasDynamicHelp": false,
|
|
3468
|
+
"multiple": false,
|
|
3469
|
+
"type": "option"
|
|
3717
3470
|
},
|
|
3718
|
-
"
|
|
3719
|
-
"
|
|
3471
|
+
"app-build-version": {
|
|
3472
|
+
"aliases": [
|
|
3473
|
+
"appBuildVersion"
|
|
3474
|
+
],
|
|
3475
|
+
"description": "Filter only builds created with the specified app build version",
|
|
3476
|
+
"name": "app-build-version",
|
|
3477
|
+
"hasDynamicHelp": false,
|
|
3478
|
+
"multiple": false,
|
|
3479
|
+
"type": "option"
|
|
3720
3480
|
},
|
|
3721
|
-
"
|
|
3722
|
-
"
|
|
3723
|
-
|
|
3724
|
-
},
|
|
3725
|
-
"contextDefinition": {
|
|
3726
|
-
"projectId": {},
|
|
3727
|
-
"loggedIn": {}
|
|
3728
|
-
},
|
|
3729
|
-
"isESM": false,
|
|
3730
|
-
"relativePath": [
|
|
3731
|
-
"build",
|
|
3732
|
-
"commands",
|
|
3733
|
-
"channel",
|
|
3734
|
-
"resume.js"
|
|
3735
|
-
]
|
|
3736
|
-
},
|
|
3737
|
-
"channel:rollout": {
|
|
3738
|
-
"aliases": [],
|
|
3739
|
-
"args": {
|
|
3740
|
-
"channel": {
|
|
3741
|
-
"description": "channel on which the rollout should be done",
|
|
3742
|
-
"name": "channel"
|
|
3743
|
-
}
|
|
3744
|
-
},
|
|
3745
|
-
"description": "Roll a new branch out on a channel incrementally.",
|
|
3746
|
-
"flags": {
|
|
3747
|
-
"action": {
|
|
3748
|
-
"description": "Rollout action to perform",
|
|
3749
|
-
"name": "action",
|
|
3750
|
-
"relationships": [
|
|
3751
|
-
{
|
|
3752
|
-
"type": "all",
|
|
3753
|
-
"flags": [
|
|
3754
|
-
{
|
|
3755
|
-
"name": "percent"
|
|
3756
|
-
},
|
|
3757
|
-
{
|
|
3758
|
-
"name": "outcome"
|
|
3759
|
-
},
|
|
3760
|
-
{
|
|
3761
|
-
"name": "branch"
|
|
3762
|
-
},
|
|
3763
|
-
{
|
|
3764
|
-
"name": "runtime-version"
|
|
3765
|
-
}
|
|
3766
|
-
]
|
|
3767
|
-
}
|
|
3481
|
+
"sdk-version": {
|
|
3482
|
+
"aliases": [
|
|
3483
|
+
"sdkVersion"
|
|
3768
3484
|
],
|
|
3769
|
-
"
|
|
3485
|
+
"description": "Filter only builds created with the specified Expo SDK version",
|
|
3486
|
+
"name": "sdk-version",
|
|
3770
3487
|
"hasDynamicHelp": false,
|
|
3771
3488
|
"multiple": false,
|
|
3772
|
-
"
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
"
|
|
3489
|
+
"type": "option"
|
|
3490
|
+
},
|
|
3491
|
+
"runtime-version": {
|
|
3492
|
+
"aliases": [
|
|
3493
|
+
"runtimeVersion"
|
|
3777
3494
|
],
|
|
3495
|
+
"description": "Filter only builds created with the specified runtime version",
|
|
3496
|
+
"name": "runtime-version",
|
|
3497
|
+
"hasDynamicHelp": false,
|
|
3498
|
+
"multiple": false,
|
|
3778
3499
|
"type": "option"
|
|
3779
3500
|
},
|
|
3780
|
-
"
|
|
3781
|
-
"
|
|
3782
|
-
|
|
3783
|
-
|
|
3501
|
+
"app-identifier": {
|
|
3502
|
+
"aliases": [
|
|
3503
|
+
"appIdentifier"
|
|
3504
|
+
],
|
|
3505
|
+
"description": "Filter only builds created with the specified app identifier",
|
|
3506
|
+
"name": "app-identifier",
|
|
3784
3507
|
"hasDynamicHelp": false,
|
|
3785
3508
|
"multiple": false,
|
|
3786
3509
|
"type": "option"
|
|
3787
3510
|
},
|
|
3788
|
-
"
|
|
3789
|
-
"
|
|
3790
|
-
|
|
3791
|
-
|
|
3511
|
+
"build-profile": {
|
|
3512
|
+
"aliases": [
|
|
3513
|
+
"profile",
|
|
3514
|
+
"buildProfile"
|
|
3515
|
+
],
|
|
3516
|
+
"char": "e",
|
|
3517
|
+
"description": "Filter only builds created with the specified build profile",
|
|
3518
|
+
"name": "build-profile",
|
|
3792
3519
|
"hasDynamicHelp": false,
|
|
3793
3520
|
"multiple": false,
|
|
3794
|
-
"
|
|
3795
|
-
|
|
3796
|
-
|
|
3521
|
+
"type": "option"
|
|
3522
|
+
},
|
|
3523
|
+
"git-commit-hash": {
|
|
3524
|
+
"aliases": [
|
|
3525
|
+
"gitCommitHash"
|
|
3797
3526
|
],
|
|
3527
|
+
"description": "Filter only builds created with the specified git commit hash",
|
|
3528
|
+
"name": "git-commit-hash",
|
|
3529
|
+
"hasDynamicHelp": false,
|
|
3530
|
+
"multiple": false,
|
|
3798
3531
|
"type": "option"
|
|
3799
3532
|
},
|
|
3800
|
-
"
|
|
3801
|
-
"description": "
|
|
3802
|
-
"name": "
|
|
3803
|
-
"required": false,
|
|
3533
|
+
"fingerprint-hash": {
|
|
3534
|
+
"description": "Filter only builds with the specified fingerprint hash",
|
|
3535
|
+
"name": "fingerprint-hash",
|
|
3804
3536
|
"hasDynamicHelp": false,
|
|
3805
3537
|
"multiple": false,
|
|
3806
3538
|
"type": "option"
|
|
3807
3539
|
},
|
|
3808
|
-
"
|
|
3809
|
-
"description": "
|
|
3810
|
-
"name": "
|
|
3811
|
-
"required": false,
|
|
3540
|
+
"offset": {
|
|
3541
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
3542
|
+
"name": "offset",
|
|
3812
3543
|
"hasDynamicHelp": false,
|
|
3813
3544
|
"multiple": false,
|
|
3814
3545
|
"type": "option"
|
|
3815
3546
|
},
|
|
3816
|
-
"
|
|
3817
|
-
"description": "
|
|
3818
|
-
"name": "
|
|
3819
|
-
"required": false,
|
|
3547
|
+
"limit": {
|
|
3548
|
+
"description": "The number of items to fetch each query. Defaults to 10 and is capped at 50.",
|
|
3549
|
+
"name": "limit",
|
|
3820
3550
|
"hasDynamicHelp": false,
|
|
3821
3551
|
"multiple": false,
|
|
3822
3552
|
"type": "option"
|
|
@@ -3833,11 +3563,17 @@
|
|
|
3833
3563
|
"noCacheDefault": true,
|
|
3834
3564
|
"allowNo": false,
|
|
3835
3565
|
"type": "boolean"
|
|
3566
|
+
},
|
|
3567
|
+
"simulator": {
|
|
3568
|
+
"description": "Filter only iOS simulator builds. Can only be used with --platform flag set to \"ios\"",
|
|
3569
|
+
"name": "simulator",
|
|
3570
|
+
"allowNo": false,
|
|
3571
|
+
"type": "boolean"
|
|
3836
3572
|
}
|
|
3837
3573
|
},
|
|
3838
3574
|
"hasDynamicHelp": false,
|
|
3839
3575
|
"hiddenAliases": [],
|
|
3840
|
-
"id": "
|
|
3576
|
+
"id": "build:list",
|
|
3841
3577
|
"pluginAlias": "eas-cli",
|
|
3842
3578
|
"pluginName": "eas-cli",
|
|
3843
3579
|
"pluginType": "core",
|
|
@@ -3884,42 +3620,67 @@
|
|
|
3884
3620
|
}
|
|
3885
3621
|
},
|
|
3886
3622
|
"contextDefinition": {
|
|
3623
|
+
"projectId": {},
|
|
3887
3624
|
"loggedIn": {},
|
|
3888
|
-
"privateProjectConfig": {},
|
|
3889
3625
|
"vcsClient": {}
|
|
3890
3626
|
},
|
|
3891
3627
|
"isESM": false,
|
|
3892
3628
|
"relativePath": [
|
|
3893
3629
|
"build",
|
|
3894
3630
|
"commands",
|
|
3895
|
-
"
|
|
3896
|
-
"
|
|
3631
|
+
"build",
|
|
3632
|
+
"list.js"
|
|
3897
3633
|
]
|
|
3898
3634
|
},
|
|
3899
|
-
"
|
|
3635
|
+
"build:resign": {
|
|
3900
3636
|
"aliases": [],
|
|
3901
|
-
"args": {
|
|
3902
|
-
|
|
3903
|
-
"description": "Name of the channel to view",
|
|
3904
|
-
"name": "name",
|
|
3905
|
-
"required": false
|
|
3906
|
-
}
|
|
3907
|
-
},
|
|
3908
|
-
"description": "view a channel",
|
|
3637
|
+
"args": {},
|
|
3638
|
+
"description": "re-sign a build archive",
|
|
3909
3639
|
"flags": {
|
|
3910
|
-
"
|
|
3911
|
-
"
|
|
3912
|
-
"name": "
|
|
3913
|
-
"
|
|
3914
|
-
"
|
|
3640
|
+
"platform": {
|
|
3641
|
+
"char": "p",
|
|
3642
|
+
"name": "platform",
|
|
3643
|
+
"hasDynamicHelp": false,
|
|
3644
|
+
"multiple": false,
|
|
3645
|
+
"options": [
|
|
3646
|
+
"android",
|
|
3647
|
+
"ios"
|
|
3648
|
+
],
|
|
3649
|
+
"type": "option"
|
|
3915
3650
|
},
|
|
3916
|
-
"
|
|
3917
|
-
"
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
"
|
|
3651
|
+
"target-profile": {
|
|
3652
|
+
"aliases": [
|
|
3653
|
+
"profile"
|
|
3654
|
+
],
|
|
3655
|
+
"char": "e",
|
|
3656
|
+
"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.",
|
|
3657
|
+
"name": "target-profile",
|
|
3658
|
+
"hasDynamicHelp": false,
|
|
3659
|
+
"helpValue": "PROFILE_NAME",
|
|
3660
|
+
"multiple": false,
|
|
3661
|
+
"type": "option"
|
|
3662
|
+
},
|
|
3663
|
+
"source-profile": {
|
|
3664
|
+
"description": "Name of the source build profile from eas.json. Used to filter builds eligible for re-signing.",
|
|
3665
|
+
"name": "source-profile",
|
|
3666
|
+
"hasDynamicHelp": false,
|
|
3667
|
+
"helpValue": "PROFILE_NAME",
|
|
3668
|
+
"multiple": false,
|
|
3669
|
+
"type": "option"
|
|
3670
|
+
},
|
|
3671
|
+
"wait": {
|
|
3672
|
+
"description": "Wait for build(s) to complete.",
|
|
3673
|
+
"name": "wait",
|
|
3674
|
+
"allowNo": true,
|
|
3921
3675
|
"type": "boolean"
|
|
3922
3676
|
},
|
|
3677
|
+
"id": {
|
|
3678
|
+
"description": "ID of the build to re-sign.",
|
|
3679
|
+
"name": "id",
|
|
3680
|
+
"hasDynamicHelp": false,
|
|
3681
|
+
"multiple": false,
|
|
3682
|
+
"type": "option"
|
|
3683
|
+
},
|
|
3923
3684
|
"offset": {
|
|
3924
3685
|
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
3925
3686
|
"name": "offset",
|
|
@@ -3933,11 +3694,24 @@
|
|
|
3933
3694
|
"hasDynamicHelp": false,
|
|
3934
3695
|
"multiple": false,
|
|
3935
3696
|
"type": "option"
|
|
3697
|
+
},
|
|
3698
|
+
"json": {
|
|
3699
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
3700
|
+
"name": "json",
|
|
3701
|
+
"allowNo": false,
|
|
3702
|
+
"type": "boolean"
|
|
3703
|
+
},
|
|
3704
|
+
"non-interactive": {
|
|
3705
|
+
"description": "Run the command in non-interactive mode.",
|
|
3706
|
+
"name": "non-interactive",
|
|
3707
|
+
"noCacheDefault": true,
|
|
3708
|
+
"allowNo": false,
|
|
3709
|
+
"type": "boolean"
|
|
3936
3710
|
}
|
|
3937
3711
|
},
|
|
3938
3712
|
"hasDynamicHelp": false,
|
|
3939
3713
|
"hiddenAliases": [],
|
|
3940
|
-
"id": "
|
|
3714
|
+
"id": "build:resign",
|
|
3941
3715
|
"pluginAlias": "eas-cli",
|
|
3942
3716
|
"pluginName": "eas-cli",
|
|
3943
3717
|
"pluginType": "core",
|
|
@@ -3984,22 +3758,71 @@
|
|
|
3984
3758
|
}
|
|
3985
3759
|
},
|
|
3986
3760
|
"contextDefinition": {
|
|
3987
|
-
"
|
|
3988
|
-
"
|
|
3761
|
+
"loggedIn": {},
|
|
3762
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
3763
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
3764
|
+
"projectDir": {},
|
|
3765
|
+
"analytics": {},
|
|
3766
|
+
"vcsClient": {}
|
|
3989
3767
|
},
|
|
3990
3768
|
"isESM": false,
|
|
3991
3769
|
"relativePath": [
|
|
3992
3770
|
"build",
|
|
3993
3771
|
"commands",
|
|
3994
|
-
"
|
|
3995
|
-
"
|
|
3772
|
+
"build",
|
|
3773
|
+
"resign.js"
|
|
3996
3774
|
]
|
|
3997
3775
|
},
|
|
3998
|
-
"
|
|
3776
|
+
"build:run": {
|
|
3999
3777
|
"aliases": [],
|
|
4000
3778
|
"args": {},
|
|
4001
|
-
"description": "
|
|
3779
|
+
"description": "run simulator/emulator builds from eas-cli",
|
|
4002
3780
|
"flags": {
|
|
3781
|
+
"latest": {
|
|
3782
|
+
"description": "Run the latest simulator/emulator build for specified platform",
|
|
3783
|
+
"exclusive": [
|
|
3784
|
+
"id",
|
|
3785
|
+
"path",
|
|
3786
|
+
"url"
|
|
3787
|
+
],
|
|
3788
|
+
"name": "latest",
|
|
3789
|
+
"allowNo": false,
|
|
3790
|
+
"type": "boolean"
|
|
3791
|
+
},
|
|
3792
|
+
"url": {
|
|
3793
|
+
"description": "Simulator/Emulator build archive url",
|
|
3794
|
+
"exclusive": [
|
|
3795
|
+
"latest",
|
|
3796
|
+
"id",
|
|
3797
|
+
"path"
|
|
3798
|
+
],
|
|
3799
|
+
"name": "url",
|
|
3800
|
+
"hasDynamicHelp": false,
|
|
3801
|
+
"multiple": false,
|
|
3802
|
+
"type": "option"
|
|
3803
|
+
},
|
|
3804
|
+
"path": {
|
|
3805
|
+
"description": "Path to the simulator/emulator build archive or app",
|
|
3806
|
+
"exclusive": [
|
|
3807
|
+
"latest",
|
|
3808
|
+
"id",
|
|
3809
|
+
"url"
|
|
3810
|
+
],
|
|
3811
|
+
"name": "path",
|
|
3812
|
+
"hasDynamicHelp": false,
|
|
3813
|
+
"multiple": false,
|
|
3814
|
+
"type": "option"
|
|
3815
|
+
},
|
|
3816
|
+
"id": {
|
|
3817
|
+
"description": "ID of the simulator/emulator build to run",
|
|
3818
|
+
"exclusive": [
|
|
3819
|
+
"latest, path, url"
|
|
3820
|
+
],
|
|
3821
|
+
"name": "id",
|
|
3822
|
+
"hasDynamicHelp": false,
|
|
3823
|
+
"multiple": false,
|
|
3824
|
+
"type": "option"
|
|
3825
|
+
},
|
|
4003
3826
|
"platform": {
|
|
4004
3827
|
"char": "p",
|
|
4005
3828
|
"name": "platform",
|
|
@@ -4013,17 +3836,38 @@
|
|
|
4013
3836
|
},
|
|
4014
3837
|
"profile": {
|
|
4015
3838
|
"char": "e",
|
|
4016
|
-
"description": "
|
|
3839
|
+
"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.",
|
|
4017
3840
|
"name": "profile",
|
|
4018
3841
|
"hasDynamicHelp": false,
|
|
4019
3842
|
"helpValue": "PROFILE_NAME",
|
|
4020
3843
|
"multiple": false,
|
|
4021
3844
|
"type": "option"
|
|
3845
|
+
},
|
|
3846
|
+
"simulator": {
|
|
3847
|
+
"description": "iOS simulator name or UDID to install and run the build on. If no value is provided, you will be prompted to select a simulator.",
|
|
3848
|
+
"name": "simulator",
|
|
3849
|
+
"hasDynamicHelp": false,
|
|
3850
|
+
"multiple": false,
|
|
3851
|
+
"type": "option"
|
|
3852
|
+
},
|
|
3853
|
+
"offset": {
|
|
3854
|
+
"description": "Start queries from specified index. Use for paginating results. Defaults to 0.",
|
|
3855
|
+
"name": "offset",
|
|
3856
|
+
"hasDynamicHelp": false,
|
|
3857
|
+
"multiple": false,
|
|
3858
|
+
"type": "option"
|
|
3859
|
+
},
|
|
3860
|
+
"limit": {
|
|
3861
|
+
"description": "The number of items to fetch each query. Defaults to 50 and is capped at 100.",
|
|
3862
|
+
"name": "limit",
|
|
3863
|
+
"hasDynamicHelp": false,
|
|
3864
|
+
"multiple": false,
|
|
3865
|
+
"type": "option"
|
|
4022
3866
|
}
|
|
4023
3867
|
},
|
|
4024
3868
|
"hasDynamicHelp": false,
|
|
4025
3869
|
"hiddenAliases": [],
|
|
4026
|
-
"id": "
|
|
3870
|
+
"id": "build:run",
|
|
4027
3871
|
"pluginAlias": "eas-cli",
|
|
4028
3872
|
"pluginName": "eas-cli",
|
|
4029
3873
|
"pluginType": "core",
|
|
@@ -4071,40 +3915,36 @@
|
|
|
4071
3915
|
},
|
|
4072
3916
|
"contextDefinition": {
|
|
4073
3917
|
"loggedIn": {},
|
|
4074
|
-
"
|
|
4075
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
4076
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
4077
|
-
"analytics": {},
|
|
3918
|
+
"projectId": {},
|
|
4078
3919
|
"vcsClient": {}
|
|
4079
3920
|
},
|
|
4080
3921
|
"isESM": false,
|
|
4081
3922
|
"relativePath": [
|
|
4082
3923
|
"build",
|
|
4083
3924
|
"commands",
|
|
4084
|
-
"
|
|
4085
|
-
"
|
|
3925
|
+
"build",
|
|
3926
|
+
"run.js"
|
|
4086
3927
|
]
|
|
4087
3928
|
},
|
|
4088
|
-
"
|
|
3929
|
+
"build:view": {
|
|
4089
3930
|
"aliases": [],
|
|
4090
|
-
"args": {
|
|
4091
|
-
|
|
3931
|
+
"args": {
|
|
3932
|
+
"BUILD_ID": {
|
|
3933
|
+
"name": "BUILD_ID"
|
|
3934
|
+
}
|
|
3935
|
+
},
|
|
3936
|
+
"description": "view a build for your project",
|
|
4092
3937
|
"flags": {
|
|
4093
|
-
"
|
|
4094
|
-
"
|
|
4095
|
-
"name": "
|
|
4096
|
-
"
|
|
4097
|
-
"
|
|
4098
|
-
"options": [
|
|
4099
|
-
"android",
|
|
4100
|
-
"ios"
|
|
4101
|
-
],
|
|
4102
|
-
"type": "option"
|
|
3938
|
+
"json": {
|
|
3939
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
3940
|
+
"name": "json",
|
|
3941
|
+
"allowNo": false,
|
|
3942
|
+
"type": "boolean"
|
|
4103
3943
|
}
|
|
4104
3944
|
},
|
|
4105
3945
|
"hasDynamicHelp": false,
|
|
4106
3946
|
"hiddenAliases": [],
|
|
4107
|
-
"id": "
|
|
3947
|
+
"id": "build:view",
|
|
4108
3948
|
"pluginAlias": "eas-cli",
|
|
4109
3949
|
"pluginName": "eas-cli",
|
|
4110
3950
|
"pluginType": "core",
|
|
@@ -4151,53 +3991,50 @@
|
|
|
4151
3991
|
}
|
|
4152
3992
|
},
|
|
4153
3993
|
"contextDefinition": {
|
|
3994
|
+
"projectId": {},
|
|
4154
3995
|
"loggedIn": {},
|
|
4155
|
-
"optionalPrivateProjectConfig": {},
|
|
4156
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
4157
|
-
"getDynamicPrivateProjectConfigAsync": {},
|
|
4158
|
-
"analytics": {},
|
|
4159
3996
|
"vcsClient": {}
|
|
4160
3997
|
},
|
|
4161
3998
|
"isESM": false,
|
|
4162
3999
|
"relativePath": [
|
|
4163
4000
|
"build",
|
|
4164
4001
|
"commands",
|
|
4165
|
-
"
|
|
4166
|
-
"
|
|
4002
|
+
"build",
|
|
4003
|
+
"view.js"
|
|
4167
4004
|
]
|
|
4168
4005
|
},
|
|
4169
|
-
"
|
|
4170
|
-
"aliases": [
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
"args": {
|
|
4174
|
-
"DEPLOYMENT_ID": {
|
|
4175
|
-
"name": "DEPLOYMENT_ID"
|
|
4176
|
-
}
|
|
4177
|
-
},
|
|
4178
|
-
"description": "Delete a deployment.",
|
|
4006
|
+
"credentials:configure-build": {
|
|
4007
|
+
"aliases": [],
|
|
4008
|
+
"args": {},
|
|
4009
|
+
"description": "Set up credentials for building your project.",
|
|
4179
4010
|
"flags": {
|
|
4180
|
-
"
|
|
4181
|
-
"
|
|
4182
|
-
"name": "
|
|
4183
|
-
"
|
|
4184
|
-
"
|
|
4011
|
+
"platform": {
|
|
4012
|
+
"char": "p",
|
|
4013
|
+
"name": "platform",
|
|
4014
|
+
"hasDynamicHelp": false,
|
|
4015
|
+
"multiple": false,
|
|
4016
|
+
"options": [
|
|
4017
|
+
"android",
|
|
4018
|
+
"ios"
|
|
4019
|
+
],
|
|
4020
|
+
"type": "option"
|
|
4185
4021
|
},
|
|
4186
|
-
"
|
|
4187
|
-
"
|
|
4188
|
-
"
|
|
4189
|
-
"
|
|
4190
|
-
"
|
|
4191
|
-
"
|
|
4022
|
+
"profile": {
|
|
4023
|
+
"char": "e",
|
|
4024
|
+
"description": "The name of the build profile in eas.json.",
|
|
4025
|
+
"name": "profile",
|
|
4026
|
+
"hasDynamicHelp": false,
|
|
4027
|
+
"helpValue": "PROFILE_NAME",
|
|
4028
|
+
"multiple": false,
|
|
4029
|
+
"type": "option"
|
|
4192
4030
|
}
|
|
4193
4031
|
},
|
|
4194
4032
|
"hasDynamicHelp": false,
|
|
4195
4033
|
"hiddenAliases": [],
|
|
4196
|
-
"id": "
|
|
4034
|
+
"id": "credentials:configure-build",
|
|
4197
4035
|
"pluginAlias": "eas-cli",
|
|
4198
4036
|
"pluginName": "eas-cli",
|
|
4199
4037
|
"pluginType": "core",
|
|
4200
|
-
"state": "preview",
|
|
4201
4038
|
"strict": true,
|
|
4202
4039
|
"enableJsonFlag": false,
|
|
4203
4040
|
"ContextOptions": {
|
|
@@ -4241,105 +4078,45 @@
|
|
|
4241
4078
|
}
|
|
4242
4079
|
},
|
|
4243
4080
|
"contextDefinition": {
|
|
4081
|
+
"loggedIn": {},
|
|
4082
|
+
"privateProjectConfig": {},
|
|
4244
4083
|
"getDynamicPublicProjectConfigAsync": {},
|
|
4245
4084
|
"getDynamicPrivateProjectConfigAsync": {},
|
|
4246
|
-
"
|
|
4247
|
-
"
|
|
4085
|
+
"analytics": {},
|
|
4086
|
+
"vcsClient": {}
|
|
4248
4087
|
},
|
|
4249
4088
|
"isESM": false,
|
|
4250
4089
|
"relativePath": [
|
|
4251
4090
|
"build",
|
|
4252
4091
|
"commands",
|
|
4253
|
-
"
|
|
4254
|
-
"
|
|
4092
|
+
"credentials",
|
|
4093
|
+
"configure-build.js"
|
|
4255
4094
|
]
|
|
4256
4095
|
},
|
|
4257
|
-
"
|
|
4258
|
-
"aliases": [
|
|
4259
|
-
"worker:deploy"
|
|
4260
|
-
],
|
|
4096
|
+
"credentials": {
|
|
4097
|
+
"aliases": [],
|
|
4261
4098
|
"args": {},
|
|
4262
|
-
"description": "
|
|
4099
|
+
"description": "manage credentials",
|
|
4263
4100
|
"flags": {
|
|
4264
|
-
"
|
|
4265
|
-
"
|
|
4266
|
-
|
|
4267
|
-
],
|
|
4268
|
-
"description": "Create a new production deployment.",
|
|
4269
|
-
"name": "prod",
|
|
4270
|
-
"allowNo": false,
|
|
4271
|
-
"type": "boolean"
|
|
4272
|
-
},
|
|
4273
|
-
"alias": {
|
|
4274
|
-
"description": "Custom alias to assign to the new deployment.",
|
|
4275
|
-
"name": "alias",
|
|
4276
|
-
"hasDynamicHelp": false,
|
|
4277
|
-
"helpValue": "name",
|
|
4278
|
-
"multiple": false,
|
|
4279
|
-
"type": "option"
|
|
4280
|
-
},
|
|
4281
|
-
"id": {
|
|
4282
|
-
"description": "Custom unique identifier for the new deployment.",
|
|
4283
|
-
"name": "id",
|
|
4284
|
-
"hasDynamicHelp": false,
|
|
4285
|
-
"helpValue": "xyz123",
|
|
4286
|
-
"multiple": false,
|
|
4287
|
-
"type": "option"
|
|
4288
|
-
},
|
|
4289
|
-
"export-dir": {
|
|
4290
|
-
"description": "Directory where the Expo project was exported.",
|
|
4291
|
-
"name": "export-dir",
|
|
4292
|
-
"default": "dist",
|
|
4293
|
-
"hasDynamicHelp": false,
|
|
4294
|
-
"helpValue": "dir",
|
|
4295
|
-
"multiple": false,
|
|
4296
|
-
"type": "option"
|
|
4297
|
-
},
|
|
4298
|
-
"dry-run": {
|
|
4299
|
-
"description": "Outputs a tarball of the new deployment instead of uploading it.",
|
|
4300
|
-
"name": "dry-run",
|
|
4301
|
-
"allowNo": false,
|
|
4302
|
-
"type": "boolean"
|
|
4303
|
-
},
|
|
4304
|
-
"source-maps": {
|
|
4305
|
-
"description": "Include source maps in the deployment.",
|
|
4306
|
-
"name": "source-maps",
|
|
4307
|
-
"allowNo": true,
|
|
4308
|
-
"type": "boolean"
|
|
4309
|
-
},
|
|
4310
|
-
"environment": {
|
|
4311
|
-
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4312
|
-
"name": "environment",
|
|
4101
|
+
"platform": {
|
|
4102
|
+
"char": "p",
|
|
4103
|
+
"name": "platform",
|
|
4313
4104
|
"hasDynamicHelp": false,
|
|
4314
4105
|
"multiple": false,
|
|
4106
|
+
"options": [
|
|
4107
|
+
"android",
|
|
4108
|
+
"ios"
|
|
4109
|
+
],
|
|
4315
4110
|
"type": "option"
|
|
4316
|
-
},
|
|
4317
|
-
"json": {
|
|
4318
|
-
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4319
|
-
"name": "json",
|
|
4320
|
-
"allowNo": false,
|
|
4321
|
-
"type": "boolean"
|
|
4322
|
-
},
|
|
4323
|
-
"non-interactive": {
|
|
4324
|
-
"description": "Run the command in non-interactive mode.",
|
|
4325
|
-
"name": "non-interactive",
|
|
4326
|
-
"noCacheDefault": true,
|
|
4327
|
-
"allowNo": false,
|
|
4328
|
-
"type": "boolean"
|
|
4329
4111
|
}
|
|
4330
4112
|
},
|
|
4331
4113
|
"hasDynamicHelp": false,
|
|
4332
4114
|
"hiddenAliases": [],
|
|
4333
|
-
"id": "
|
|
4115
|
+
"id": "credentials",
|
|
4334
4116
|
"pluginAlias": "eas-cli",
|
|
4335
4117
|
"pluginName": "eas-cli",
|
|
4336
4118
|
"pluginType": "core",
|
|
4337
|
-
"state": "preview",
|
|
4338
4119
|
"strict": true,
|
|
4339
|
-
"usage": [
|
|
4340
|
-
"deploy [options]",
|
|
4341
|
-
"deploy --prod"
|
|
4342
|
-
],
|
|
4343
4120
|
"enableJsonFlag": false,
|
|
4344
4121
|
"ContextOptions": {
|
|
4345
4122
|
"LoggedIn": {
|
|
@@ -4382,16 +4159,18 @@
|
|
|
4382
4159
|
}
|
|
4383
4160
|
},
|
|
4384
4161
|
"contextDefinition": {
|
|
4162
|
+
"loggedIn": {},
|
|
4163
|
+
"optionalPrivateProjectConfig": {},
|
|
4385
4164
|
"getDynamicPublicProjectConfigAsync": {},
|
|
4386
4165
|
"getDynamicPrivateProjectConfigAsync": {},
|
|
4387
|
-
"
|
|
4388
|
-
"
|
|
4166
|
+
"analytics": {},
|
|
4167
|
+
"vcsClient": {}
|
|
4389
4168
|
},
|
|
4390
4169
|
"isESM": false,
|
|
4391
4170
|
"relativePath": [
|
|
4392
4171
|
"build",
|
|
4393
4172
|
"commands",
|
|
4394
|
-
"
|
|
4173
|
+
"credentials",
|
|
4395
4174
|
"index.js"
|
|
4396
4175
|
]
|
|
4397
4176
|
},
|
|
@@ -4810,15 +4589,244 @@
|
|
|
4810
4589
|
}
|
|
4811
4590
|
},
|
|
4812
4591
|
"contextDefinition": {
|
|
4813
|
-
"projectId": {},
|
|
4592
|
+
"projectId": {},
|
|
4593
|
+
"loggedIn": {}
|
|
4594
|
+
},
|
|
4595
|
+
"isESM": false,
|
|
4596
|
+
"relativePath": [
|
|
4597
|
+
"build",
|
|
4598
|
+
"commands",
|
|
4599
|
+
"device",
|
|
4600
|
+
"view.js"
|
|
4601
|
+
]
|
|
4602
|
+
},
|
|
4603
|
+
"deploy:delete": {
|
|
4604
|
+
"aliases": [
|
|
4605
|
+
"worker:delete"
|
|
4606
|
+
],
|
|
4607
|
+
"args": {
|
|
4608
|
+
"DEPLOYMENT_ID": {
|
|
4609
|
+
"name": "DEPLOYMENT_ID"
|
|
4610
|
+
}
|
|
4611
|
+
},
|
|
4612
|
+
"description": "Delete a deployment.",
|
|
4613
|
+
"flags": {
|
|
4614
|
+
"json": {
|
|
4615
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4616
|
+
"name": "json",
|
|
4617
|
+
"allowNo": false,
|
|
4618
|
+
"type": "boolean"
|
|
4619
|
+
},
|
|
4620
|
+
"non-interactive": {
|
|
4621
|
+
"description": "Run the command in non-interactive mode.",
|
|
4622
|
+
"name": "non-interactive",
|
|
4623
|
+
"noCacheDefault": true,
|
|
4624
|
+
"allowNo": false,
|
|
4625
|
+
"type": "boolean"
|
|
4626
|
+
}
|
|
4627
|
+
},
|
|
4628
|
+
"hasDynamicHelp": false,
|
|
4629
|
+
"hiddenAliases": [],
|
|
4630
|
+
"id": "deploy:delete",
|
|
4631
|
+
"pluginAlias": "eas-cli",
|
|
4632
|
+
"pluginName": "eas-cli",
|
|
4633
|
+
"pluginType": "core",
|
|
4634
|
+
"state": "preview",
|
|
4635
|
+
"strict": true,
|
|
4636
|
+
"enableJsonFlag": false,
|
|
4637
|
+
"ContextOptions": {
|
|
4638
|
+
"LoggedIn": {
|
|
4639
|
+
"loggedIn": {}
|
|
4640
|
+
},
|
|
4641
|
+
"MaybeLoggedIn": {
|
|
4642
|
+
"maybeLoggedIn": {}
|
|
4643
|
+
},
|
|
4644
|
+
"DynamicLoggedIn": {
|
|
4645
|
+
"getDynamicLoggedInAsync": {}
|
|
4646
|
+
},
|
|
4647
|
+
"SessionManagment": {
|
|
4648
|
+
"sessionManager": {}
|
|
4649
|
+
},
|
|
4650
|
+
"OptionalProjectConfig": {
|
|
4651
|
+
"optionalPrivateProjectConfig": {}
|
|
4652
|
+
},
|
|
4653
|
+
"ProjectDir": {
|
|
4654
|
+
"projectDir": {}
|
|
4655
|
+
},
|
|
4656
|
+
"DynamicProjectConfig": {
|
|
4657
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4658
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
4659
|
+
},
|
|
4660
|
+
"ProjectConfig": {
|
|
4661
|
+
"loggedIn": {},
|
|
4662
|
+
"privateProjectConfig": {}
|
|
4663
|
+
},
|
|
4664
|
+
"Analytics": {
|
|
4665
|
+
"analytics": {}
|
|
4666
|
+
},
|
|
4667
|
+
"Vcs": {
|
|
4668
|
+
"vcsClient": {}
|
|
4669
|
+
},
|
|
4670
|
+
"ServerSideEnvironmentVariables": {
|
|
4671
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
4672
|
+
},
|
|
4673
|
+
"ProjectId": {
|
|
4674
|
+
"projectId": {}
|
|
4675
|
+
}
|
|
4676
|
+
},
|
|
4677
|
+
"contextDefinition": {
|
|
4678
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4679
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
4680
|
+
"projectDir": {},
|
|
4681
|
+
"loggedIn": {}
|
|
4682
|
+
},
|
|
4683
|
+
"isESM": false,
|
|
4684
|
+
"relativePath": [
|
|
4685
|
+
"build",
|
|
4686
|
+
"commands",
|
|
4687
|
+
"deploy",
|
|
4688
|
+
"delete.js"
|
|
4689
|
+
]
|
|
4690
|
+
},
|
|
4691
|
+
"deploy": {
|
|
4692
|
+
"aliases": [
|
|
4693
|
+
"worker:deploy"
|
|
4694
|
+
],
|
|
4695
|
+
"args": {},
|
|
4696
|
+
"description": "deploy your Expo Router web build and API Routes",
|
|
4697
|
+
"flags": {
|
|
4698
|
+
"prod": {
|
|
4699
|
+
"aliases": [
|
|
4700
|
+
"production"
|
|
4701
|
+
],
|
|
4702
|
+
"description": "Create a new production deployment.",
|
|
4703
|
+
"name": "prod",
|
|
4704
|
+
"allowNo": false,
|
|
4705
|
+
"type": "boolean"
|
|
4706
|
+
},
|
|
4707
|
+
"alias": {
|
|
4708
|
+
"description": "Custom alias to assign to the new deployment.",
|
|
4709
|
+
"name": "alias",
|
|
4710
|
+
"hasDynamicHelp": false,
|
|
4711
|
+
"helpValue": "name",
|
|
4712
|
+
"multiple": false,
|
|
4713
|
+
"type": "option"
|
|
4714
|
+
},
|
|
4715
|
+
"id": {
|
|
4716
|
+
"description": "Custom unique identifier for the new deployment.",
|
|
4717
|
+
"name": "id",
|
|
4718
|
+
"hasDynamicHelp": false,
|
|
4719
|
+
"helpValue": "xyz123",
|
|
4720
|
+
"multiple": false,
|
|
4721
|
+
"type": "option"
|
|
4722
|
+
},
|
|
4723
|
+
"export-dir": {
|
|
4724
|
+
"description": "Directory where the Expo project was exported.",
|
|
4725
|
+
"name": "export-dir",
|
|
4726
|
+
"default": "dist",
|
|
4727
|
+
"hasDynamicHelp": false,
|
|
4728
|
+
"helpValue": "dir",
|
|
4729
|
+
"multiple": false,
|
|
4730
|
+
"type": "option"
|
|
4731
|
+
},
|
|
4732
|
+
"dry-run": {
|
|
4733
|
+
"description": "Outputs a tarball of the new deployment instead of uploading it.",
|
|
4734
|
+
"name": "dry-run",
|
|
4735
|
+
"allowNo": false,
|
|
4736
|
+
"type": "boolean"
|
|
4737
|
+
},
|
|
4738
|
+
"source-maps": {
|
|
4739
|
+
"description": "Include source maps in the deployment.",
|
|
4740
|
+
"name": "source-maps",
|
|
4741
|
+
"allowNo": true,
|
|
4742
|
+
"type": "boolean"
|
|
4743
|
+
},
|
|
4744
|
+
"environment": {
|
|
4745
|
+
"description": "Environment variable's environment, e.g. 'production', 'preview', 'development'",
|
|
4746
|
+
"name": "environment",
|
|
4747
|
+
"hasDynamicHelp": false,
|
|
4748
|
+
"multiple": false,
|
|
4749
|
+
"type": "option"
|
|
4750
|
+
},
|
|
4751
|
+
"json": {
|
|
4752
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.",
|
|
4753
|
+
"name": "json",
|
|
4754
|
+
"allowNo": false,
|
|
4755
|
+
"type": "boolean"
|
|
4756
|
+
},
|
|
4757
|
+
"non-interactive": {
|
|
4758
|
+
"description": "Run the command in non-interactive mode.",
|
|
4759
|
+
"name": "non-interactive",
|
|
4760
|
+
"noCacheDefault": true,
|
|
4761
|
+
"allowNo": false,
|
|
4762
|
+
"type": "boolean"
|
|
4763
|
+
}
|
|
4764
|
+
},
|
|
4765
|
+
"hasDynamicHelp": false,
|
|
4766
|
+
"hiddenAliases": [],
|
|
4767
|
+
"id": "deploy",
|
|
4768
|
+
"pluginAlias": "eas-cli",
|
|
4769
|
+
"pluginName": "eas-cli",
|
|
4770
|
+
"pluginType": "core",
|
|
4771
|
+
"state": "preview",
|
|
4772
|
+
"strict": true,
|
|
4773
|
+
"usage": [
|
|
4774
|
+
"deploy [options]",
|
|
4775
|
+
"deploy --prod"
|
|
4776
|
+
],
|
|
4777
|
+
"enableJsonFlag": false,
|
|
4778
|
+
"ContextOptions": {
|
|
4779
|
+
"LoggedIn": {
|
|
4780
|
+
"loggedIn": {}
|
|
4781
|
+
},
|
|
4782
|
+
"MaybeLoggedIn": {
|
|
4783
|
+
"maybeLoggedIn": {}
|
|
4784
|
+
},
|
|
4785
|
+
"DynamicLoggedIn": {
|
|
4786
|
+
"getDynamicLoggedInAsync": {}
|
|
4787
|
+
},
|
|
4788
|
+
"SessionManagment": {
|
|
4789
|
+
"sessionManager": {}
|
|
4790
|
+
},
|
|
4791
|
+
"OptionalProjectConfig": {
|
|
4792
|
+
"optionalPrivateProjectConfig": {}
|
|
4793
|
+
},
|
|
4794
|
+
"ProjectDir": {
|
|
4795
|
+
"projectDir": {}
|
|
4796
|
+
},
|
|
4797
|
+
"DynamicProjectConfig": {
|
|
4798
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4799
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
4800
|
+
},
|
|
4801
|
+
"ProjectConfig": {
|
|
4802
|
+
"loggedIn": {},
|
|
4803
|
+
"privateProjectConfig": {}
|
|
4804
|
+
},
|
|
4805
|
+
"Analytics": {
|
|
4806
|
+
"analytics": {}
|
|
4807
|
+
},
|
|
4808
|
+
"Vcs": {
|
|
4809
|
+
"vcsClient": {}
|
|
4810
|
+
},
|
|
4811
|
+
"ServerSideEnvironmentVariables": {
|
|
4812
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
4813
|
+
},
|
|
4814
|
+
"ProjectId": {
|
|
4815
|
+
"projectId": {}
|
|
4816
|
+
}
|
|
4817
|
+
},
|
|
4818
|
+
"contextDefinition": {
|
|
4819
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
4820
|
+
"getDynamicPrivateProjectConfigAsync": {},
|
|
4821
|
+
"projectDir": {},
|
|
4814
4822
|
"loggedIn": {}
|
|
4815
4823
|
},
|
|
4816
4824
|
"isESM": false,
|
|
4817
4825
|
"relativePath": [
|
|
4818
4826
|
"build",
|
|
4819
4827
|
"commands",
|
|
4820
|
-
"
|
|
4821
|
-
"
|
|
4828
|
+
"deploy",
|
|
4829
|
+
"index.js"
|
|
4822
4830
|
]
|
|
4823
4831
|
},
|
|
4824
4832
|
"env:create": {
|
|
@@ -5967,17 +5975,261 @@
|
|
|
5967
5975
|
"projectId": {},
|
|
5968
5976
|
"loggedIn": {},
|
|
5969
5977
|
"privateProjectConfig": {},
|
|
5970
|
-
"vcsClient": {},
|
|
5971
|
-
"getServerSideEnvironmentVariablesAsync": {},
|
|
5972
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
5973
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
5978
|
+
"vcsClient": {},
|
|
5979
|
+
"getServerSideEnvironmentVariablesAsync": {},
|
|
5980
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
5981
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
5982
|
+
},
|
|
5983
|
+
"isESM": false,
|
|
5984
|
+
"relativePath": [
|
|
5985
|
+
"build",
|
|
5986
|
+
"commands",
|
|
5987
|
+
"fingerprint",
|
|
5988
|
+
"generate.js"
|
|
5989
|
+
]
|
|
5990
|
+
},
|
|
5991
|
+
"metadata:lint": {
|
|
5992
|
+
"aliases": [],
|
|
5993
|
+
"args": {},
|
|
5994
|
+
"description": "validate the local store configuration",
|
|
5995
|
+
"flags": {
|
|
5996
|
+
"json": {
|
|
5997
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr",
|
|
5998
|
+
"name": "json",
|
|
5999
|
+
"allowNo": false,
|
|
6000
|
+
"type": "boolean"
|
|
6001
|
+
},
|
|
6002
|
+
"profile": {
|
|
6003
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
6004
|
+
"name": "profile",
|
|
6005
|
+
"hasDynamicHelp": false,
|
|
6006
|
+
"multiple": false,
|
|
6007
|
+
"type": "option"
|
|
6008
|
+
}
|
|
6009
|
+
},
|
|
6010
|
+
"hasDynamicHelp": false,
|
|
6011
|
+
"hiddenAliases": [],
|
|
6012
|
+
"id": "metadata:lint",
|
|
6013
|
+
"pluginAlias": "eas-cli",
|
|
6014
|
+
"pluginName": "eas-cli",
|
|
6015
|
+
"pluginType": "core",
|
|
6016
|
+
"strict": true,
|
|
6017
|
+
"enableJsonFlag": false,
|
|
6018
|
+
"ContextOptions": {
|
|
6019
|
+
"LoggedIn": {
|
|
6020
|
+
"loggedIn": {}
|
|
6021
|
+
},
|
|
6022
|
+
"MaybeLoggedIn": {
|
|
6023
|
+
"maybeLoggedIn": {}
|
|
6024
|
+
},
|
|
6025
|
+
"DynamicLoggedIn": {
|
|
6026
|
+
"getDynamicLoggedInAsync": {}
|
|
6027
|
+
},
|
|
6028
|
+
"SessionManagment": {
|
|
6029
|
+
"sessionManager": {}
|
|
6030
|
+
},
|
|
6031
|
+
"OptionalProjectConfig": {
|
|
6032
|
+
"optionalPrivateProjectConfig": {}
|
|
6033
|
+
},
|
|
6034
|
+
"ProjectDir": {
|
|
6035
|
+
"projectDir": {}
|
|
6036
|
+
},
|
|
6037
|
+
"DynamicProjectConfig": {
|
|
6038
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
6039
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
6040
|
+
},
|
|
6041
|
+
"ProjectConfig": {
|
|
6042
|
+
"loggedIn": {},
|
|
6043
|
+
"privateProjectConfig": {}
|
|
6044
|
+
},
|
|
6045
|
+
"Analytics": {
|
|
6046
|
+
"analytics": {}
|
|
6047
|
+
},
|
|
6048
|
+
"Vcs": {
|
|
6049
|
+
"vcsClient": {}
|
|
6050
|
+
},
|
|
6051
|
+
"ServerSideEnvironmentVariables": {
|
|
6052
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
6053
|
+
},
|
|
6054
|
+
"ProjectId": {
|
|
6055
|
+
"projectId": {}
|
|
6056
|
+
}
|
|
6057
|
+
},
|
|
6058
|
+
"contextDefinition": {
|
|
6059
|
+
"projectDir": {}
|
|
6060
|
+
},
|
|
6061
|
+
"isESM": false,
|
|
6062
|
+
"relativePath": [
|
|
6063
|
+
"build",
|
|
6064
|
+
"commands",
|
|
6065
|
+
"metadata",
|
|
6066
|
+
"lint.js"
|
|
6067
|
+
]
|
|
6068
|
+
},
|
|
6069
|
+
"metadata:pull": {
|
|
6070
|
+
"aliases": [],
|
|
6071
|
+
"args": {},
|
|
6072
|
+
"description": "generate the local store configuration from the app stores",
|
|
6073
|
+
"flags": {
|
|
6074
|
+
"profile": {
|
|
6075
|
+
"char": "e",
|
|
6076
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
6077
|
+
"name": "profile",
|
|
6078
|
+
"hasDynamicHelp": false,
|
|
6079
|
+
"multiple": false,
|
|
6080
|
+
"type": "option"
|
|
6081
|
+
},
|
|
6082
|
+
"non-interactive": {
|
|
6083
|
+
"description": "Run the command in non-interactive mode.",
|
|
6084
|
+
"name": "non-interactive",
|
|
6085
|
+
"noCacheDefault": true,
|
|
6086
|
+
"allowNo": false,
|
|
6087
|
+
"type": "boolean"
|
|
6088
|
+
}
|
|
6089
|
+
},
|
|
6090
|
+
"hasDynamicHelp": false,
|
|
6091
|
+
"hiddenAliases": [],
|
|
6092
|
+
"id": "metadata:pull",
|
|
6093
|
+
"pluginAlias": "eas-cli",
|
|
6094
|
+
"pluginName": "eas-cli",
|
|
6095
|
+
"pluginType": "core",
|
|
6096
|
+
"strict": true,
|
|
6097
|
+
"enableJsonFlag": false,
|
|
6098
|
+
"ContextOptions": {
|
|
6099
|
+
"LoggedIn": {
|
|
6100
|
+
"loggedIn": {}
|
|
6101
|
+
},
|
|
6102
|
+
"MaybeLoggedIn": {
|
|
6103
|
+
"maybeLoggedIn": {}
|
|
6104
|
+
},
|
|
6105
|
+
"DynamicLoggedIn": {
|
|
6106
|
+
"getDynamicLoggedInAsync": {}
|
|
6107
|
+
},
|
|
6108
|
+
"SessionManagment": {
|
|
6109
|
+
"sessionManager": {}
|
|
6110
|
+
},
|
|
6111
|
+
"OptionalProjectConfig": {
|
|
6112
|
+
"optionalPrivateProjectConfig": {}
|
|
6113
|
+
},
|
|
6114
|
+
"ProjectDir": {
|
|
6115
|
+
"projectDir": {}
|
|
6116
|
+
},
|
|
6117
|
+
"DynamicProjectConfig": {
|
|
6118
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
6119
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
6120
|
+
},
|
|
6121
|
+
"ProjectConfig": {
|
|
6122
|
+
"loggedIn": {},
|
|
6123
|
+
"privateProjectConfig": {}
|
|
6124
|
+
},
|
|
6125
|
+
"Analytics": {
|
|
6126
|
+
"analytics": {}
|
|
6127
|
+
},
|
|
6128
|
+
"Vcs": {
|
|
6129
|
+
"vcsClient": {}
|
|
6130
|
+
},
|
|
6131
|
+
"ServerSideEnvironmentVariables": {
|
|
6132
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
6133
|
+
},
|
|
6134
|
+
"ProjectId": {
|
|
6135
|
+
"projectId": {}
|
|
6136
|
+
}
|
|
6137
|
+
},
|
|
6138
|
+
"contextDefinition": {
|
|
6139
|
+
"loggedIn": {},
|
|
6140
|
+
"privateProjectConfig": {},
|
|
6141
|
+
"analytics": {},
|
|
6142
|
+
"vcsClient": {}
|
|
6143
|
+
},
|
|
6144
|
+
"isESM": false,
|
|
6145
|
+
"relativePath": [
|
|
6146
|
+
"build",
|
|
6147
|
+
"commands",
|
|
6148
|
+
"metadata",
|
|
6149
|
+
"pull.js"
|
|
6150
|
+
]
|
|
6151
|
+
},
|
|
6152
|
+
"metadata:push": {
|
|
6153
|
+
"aliases": [],
|
|
6154
|
+
"args": {},
|
|
6155
|
+
"description": "sync the local store configuration to the app stores",
|
|
6156
|
+
"flags": {
|
|
6157
|
+
"profile": {
|
|
6158
|
+
"char": "e",
|
|
6159
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
6160
|
+
"name": "profile",
|
|
6161
|
+
"hasDynamicHelp": false,
|
|
6162
|
+
"multiple": false,
|
|
6163
|
+
"type": "option"
|
|
6164
|
+
},
|
|
6165
|
+
"non-interactive": {
|
|
6166
|
+
"description": "Run the command in non-interactive mode.",
|
|
6167
|
+
"name": "non-interactive",
|
|
6168
|
+
"noCacheDefault": true,
|
|
6169
|
+
"allowNo": false,
|
|
6170
|
+
"type": "boolean"
|
|
6171
|
+
}
|
|
6172
|
+
},
|
|
6173
|
+
"hasDynamicHelp": false,
|
|
6174
|
+
"hiddenAliases": [],
|
|
6175
|
+
"id": "metadata:push",
|
|
6176
|
+
"pluginAlias": "eas-cli",
|
|
6177
|
+
"pluginName": "eas-cli",
|
|
6178
|
+
"pluginType": "core",
|
|
6179
|
+
"strict": true,
|
|
6180
|
+
"enableJsonFlag": false,
|
|
6181
|
+
"ContextOptions": {
|
|
6182
|
+
"LoggedIn": {
|
|
6183
|
+
"loggedIn": {}
|
|
6184
|
+
},
|
|
6185
|
+
"MaybeLoggedIn": {
|
|
6186
|
+
"maybeLoggedIn": {}
|
|
6187
|
+
},
|
|
6188
|
+
"DynamicLoggedIn": {
|
|
6189
|
+
"getDynamicLoggedInAsync": {}
|
|
6190
|
+
},
|
|
6191
|
+
"SessionManagment": {
|
|
6192
|
+
"sessionManager": {}
|
|
6193
|
+
},
|
|
6194
|
+
"OptionalProjectConfig": {
|
|
6195
|
+
"optionalPrivateProjectConfig": {}
|
|
6196
|
+
},
|
|
6197
|
+
"ProjectDir": {
|
|
6198
|
+
"projectDir": {}
|
|
6199
|
+
},
|
|
6200
|
+
"DynamicProjectConfig": {
|
|
6201
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
6202
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
6203
|
+
},
|
|
6204
|
+
"ProjectConfig": {
|
|
6205
|
+
"loggedIn": {},
|
|
6206
|
+
"privateProjectConfig": {}
|
|
6207
|
+
},
|
|
6208
|
+
"Analytics": {
|
|
6209
|
+
"analytics": {}
|
|
6210
|
+
},
|
|
6211
|
+
"Vcs": {
|
|
6212
|
+
"vcsClient": {}
|
|
6213
|
+
},
|
|
6214
|
+
"ServerSideEnvironmentVariables": {
|
|
6215
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
6216
|
+
},
|
|
6217
|
+
"ProjectId": {
|
|
6218
|
+
"projectId": {}
|
|
6219
|
+
}
|
|
6220
|
+
},
|
|
6221
|
+
"contextDefinition": {
|
|
6222
|
+
"loggedIn": {},
|
|
6223
|
+
"privateProjectConfig": {},
|
|
6224
|
+
"analytics": {},
|
|
6225
|
+
"vcsClient": {}
|
|
5974
6226
|
},
|
|
5975
6227
|
"isESM": false,
|
|
5976
6228
|
"relativePath": [
|
|
5977
6229
|
"build",
|
|
5978
6230
|
"commands",
|
|
5979
|
-
"
|
|
5980
|
-
"
|
|
6231
|
+
"metadata",
|
|
6232
|
+
"push.js"
|
|
5981
6233
|
]
|
|
5982
6234
|
},
|
|
5983
6235
|
"observe:events": {
|
|
@@ -6712,271 +6964,32 @@
|
|
|
6712
6964
|
"init"
|
|
6713
6965
|
],
|
|
6714
6966
|
"args": {},
|
|
6715
|
-
"description": "create or link an EAS project",
|
|
6716
|
-
"flags": {
|
|
6717
|
-
"id": {
|
|
6718
|
-
"description": "ID of the EAS project to link",
|
|
6719
|
-
"name": "id",
|
|
6720
|
-
"hasDynamicHelp": false,
|
|
6721
|
-
"multiple": false,
|
|
6722
|
-
"type": "option"
|
|
6723
|
-
},
|
|
6724
|
-
"force": {
|
|
6725
|
-
"description": "Whether to create a new project/link an existing project without additional prompts or overwrite any existing project ID when running with --id flag",
|
|
6726
|
-
"name": "force",
|
|
6727
|
-
"allowNo": false,
|
|
6728
|
-
"type": "boolean"
|
|
6729
|
-
},
|
|
6730
|
-
"non-interactive": {
|
|
6731
|
-
"description": "Run the command in non-interactive mode.",
|
|
6732
|
-
"name": "non-interactive",
|
|
6733
|
-
"noCacheDefault": true,
|
|
6734
|
-
"allowNo": false,
|
|
6735
|
-
"type": "boolean"
|
|
6736
|
-
}
|
|
6737
|
-
},
|
|
6738
|
-
"hasDynamicHelp": false,
|
|
6739
|
-
"hiddenAliases": [],
|
|
6740
|
-
"id": "project:init",
|
|
6741
|
-
"pluginAlias": "eas-cli",
|
|
6742
|
-
"pluginName": "eas-cli",
|
|
6743
|
-
"pluginType": "core",
|
|
6744
|
-
"strict": true,
|
|
6745
|
-
"enableJsonFlag": false,
|
|
6746
|
-
"ContextOptions": {
|
|
6747
|
-
"LoggedIn": {
|
|
6748
|
-
"loggedIn": {}
|
|
6749
|
-
},
|
|
6750
|
-
"MaybeLoggedIn": {
|
|
6751
|
-
"maybeLoggedIn": {}
|
|
6752
|
-
},
|
|
6753
|
-
"DynamicLoggedIn": {
|
|
6754
|
-
"getDynamicLoggedInAsync": {}
|
|
6755
|
-
},
|
|
6756
|
-
"SessionManagment": {
|
|
6757
|
-
"sessionManager": {}
|
|
6758
|
-
},
|
|
6759
|
-
"OptionalProjectConfig": {
|
|
6760
|
-
"optionalPrivateProjectConfig": {}
|
|
6761
|
-
},
|
|
6762
|
-
"ProjectDir": {
|
|
6763
|
-
"projectDir": {}
|
|
6764
|
-
},
|
|
6765
|
-
"DynamicProjectConfig": {
|
|
6766
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
6767
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
6768
|
-
},
|
|
6769
|
-
"ProjectConfig": {
|
|
6770
|
-
"loggedIn": {},
|
|
6771
|
-
"privateProjectConfig": {}
|
|
6772
|
-
},
|
|
6773
|
-
"Analytics": {
|
|
6774
|
-
"analytics": {}
|
|
6775
|
-
},
|
|
6776
|
-
"Vcs": {
|
|
6777
|
-
"vcsClient": {}
|
|
6778
|
-
},
|
|
6779
|
-
"ServerSideEnvironmentVariables": {
|
|
6780
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
6781
|
-
},
|
|
6782
|
-
"ProjectId": {
|
|
6783
|
-
"projectId": {}
|
|
6784
|
-
}
|
|
6785
|
-
},
|
|
6786
|
-
"contextDefinition": {
|
|
6787
|
-
"loggedIn": {},
|
|
6788
|
-
"projectDir": {}
|
|
6789
|
-
},
|
|
6790
|
-
"isESM": false,
|
|
6791
|
-
"relativePath": [
|
|
6792
|
-
"build",
|
|
6793
|
-
"commands",
|
|
6794
|
-
"project",
|
|
6795
|
-
"init.js"
|
|
6796
|
-
]
|
|
6797
|
-
},
|
|
6798
|
-
"project:new": {
|
|
6799
|
-
"aliases": [
|
|
6800
|
-
"new"
|
|
6801
|
-
],
|
|
6802
|
-
"args": {
|
|
6803
|
-
"path": {
|
|
6804
|
-
"description": "Path to create the project (defaults to current directory)",
|
|
6805
|
-
"name": "path",
|
|
6806
|
-
"required": false
|
|
6807
|
-
}
|
|
6808
|
-
},
|
|
6809
|
-
"description": "Create a new project configured with Expo Application Services (EAS)",
|
|
6810
|
-
"flags": {
|
|
6811
|
-
"package-manager": {
|
|
6812
|
-
"char": "p",
|
|
6813
|
-
"description": "Package manager to use for installing dependencies",
|
|
6814
|
-
"name": "package-manager",
|
|
6815
|
-
"default": "npm",
|
|
6816
|
-
"hasDynamicHelp": false,
|
|
6817
|
-
"multiple": false,
|
|
6818
|
-
"options": [
|
|
6819
|
-
"bun",
|
|
6820
|
-
"npm",
|
|
6821
|
-
"pnpm",
|
|
6822
|
-
"yarn"
|
|
6823
|
-
],
|
|
6824
|
-
"type": "option"
|
|
6825
|
-
}
|
|
6826
|
-
},
|
|
6827
|
-
"hasDynamicHelp": false,
|
|
6828
|
-
"hiddenAliases": [],
|
|
6829
|
-
"id": "project:new",
|
|
6830
|
-
"pluginAlias": "eas-cli",
|
|
6831
|
-
"pluginName": "eas-cli",
|
|
6832
|
-
"pluginType": "core",
|
|
6833
|
-
"strict": true,
|
|
6834
|
-
"enableJsonFlag": false,
|
|
6835
|
-
"ContextOptions": {
|
|
6836
|
-
"LoggedIn": {
|
|
6837
|
-
"loggedIn": {}
|
|
6838
|
-
},
|
|
6839
|
-
"MaybeLoggedIn": {
|
|
6840
|
-
"maybeLoggedIn": {}
|
|
6841
|
-
},
|
|
6842
|
-
"DynamicLoggedIn": {
|
|
6843
|
-
"getDynamicLoggedInAsync": {}
|
|
6844
|
-
},
|
|
6845
|
-
"SessionManagment": {
|
|
6846
|
-
"sessionManager": {}
|
|
6847
|
-
},
|
|
6848
|
-
"OptionalProjectConfig": {
|
|
6849
|
-
"optionalPrivateProjectConfig": {}
|
|
6850
|
-
},
|
|
6851
|
-
"ProjectDir": {
|
|
6852
|
-
"projectDir": {}
|
|
6853
|
-
},
|
|
6854
|
-
"DynamicProjectConfig": {
|
|
6855
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
6856
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
6857
|
-
},
|
|
6858
|
-
"ProjectConfig": {
|
|
6859
|
-
"loggedIn": {},
|
|
6860
|
-
"privateProjectConfig": {}
|
|
6861
|
-
},
|
|
6862
|
-
"Analytics": {
|
|
6863
|
-
"analytics": {}
|
|
6864
|
-
},
|
|
6865
|
-
"Vcs": {
|
|
6866
|
-
"vcsClient": {}
|
|
6867
|
-
},
|
|
6868
|
-
"ServerSideEnvironmentVariables": {
|
|
6869
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
6870
|
-
},
|
|
6871
|
-
"ProjectId": {
|
|
6872
|
-
"projectId": {}
|
|
6873
|
-
}
|
|
6874
|
-
},
|
|
6875
|
-
"contextDefinition": {
|
|
6876
|
-
"loggedIn": {}
|
|
6877
|
-
},
|
|
6878
|
-
"isESM": false,
|
|
6879
|
-
"relativePath": [
|
|
6880
|
-
"build",
|
|
6881
|
-
"commands",
|
|
6882
|
-
"project",
|
|
6883
|
-
"new.js"
|
|
6884
|
-
]
|
|
6885
|
-
},
|
|
6886
|
-
"project:onboarding": {
|
|
6887
|
-
"aliases": [
|
|
6888
|
-
"init:onboarding",
|
|
6889
|
-
"onboarding"
|
|
6890
|
-
],
|
|
6891
|
-
"args": {
|
|
6892
|
-
"TARGET_PROJECT_DIRECTORY": {
|
|
6893
|
-
"name": "TARGET_PROJECT_DIRECTORY"
|
|
6894
|
-
}
|
|
6895
|
-
},
|
|
6896
|
-
"description": "continue onboarding process started on the https://expo.new website.",
|
|
6897
|
-
"flags": {},
|
|
6898
|
-
"hasDynamicHelp": false,
|
|
6899
|
-
"hiddenAliases": [],
|
|
6900
|
-
"id": "project:onboarding",
|
|
6901
|
-
"pluginAlias": "eas-cli",
|
|
6902
|
-
"pluginName": "eas-cli",
|
|
6903
|
-
"pluginType": "core",
|
|
6904
|
-
"strict": true,
|
|
6905
|
-
"enableJsonFlag": false,
|
|
6906
|
-
"ContextOptions": {
|
|
6907
|
-
"LoggedIn": {
|
|
6908
|
-
"loggedIn": {}
|
|
6909
|
-
},
|
|
6910
|
-
"MaybeLoggedIn": {
|
|
6911
|
-
"maybeLoggedIn": {}
|
|
6912
|
-
},
|
|
6913
|
-
"DynamicLoggedIn": {
|
|
6914
|
-
"getDynamicLoggedInAsync": {}
|
|
6915
|
-
},
|
|
6916
|
-
"SessionManagment": {
|
|
6917
|
-
"sessionManager": {}
|
|
6918
|
-
},
|
|
6919
|
-
"OptionalProjectConfig": {
|
|
6920
|
-
"optionalPrivateProjectConfig": {}
|
|
6921
|
-
},
|
|
6922
|
-
"ProjectDir": {
|
|
6923
|
-
"projectDir": {}
|
|
6924
|
-
},
|
|
6925
|
-
"DynamicProjectConfig": {
|
|
6926
|
-
"getDynamicPublicProjectConfigAsync": {},
|
|
6927
|
-
"getDynamicPrivateProjectConfigAsync": {}
|
|
6928
|
-
},
|
|
6929
|
-
"ProjectConfig": {
|
|
6930
|
-
"loggedIn": {},
|
|
6931
|
-
"privateProjectConfig": {}
|
|
6932
|
-
},
|
|
6933
|
-
"Analytics": {
|
|
6934
|
-
"analytics": {}
|
|
6935
|
-
},
|
|
6936
|
-
"Vcs": {
|
|
6937
|
-
"vcsClient": {}
|
|
6938
|
-
},
|
|
6939
|
-
"ServerSideEnvironmentVariables": {
|
|
6940
|
-
"getServerSideEnvironmentVariablesAsync": {}
|
|
6941
|
-
},
|
|
6942
|
-
"ProjectId": {
|
|
6943
|
-
"projectId": {}
|
|
6944
|
-
}
|
|
6945
|
-
},
|
|
6946
|
-
"contextDefinition": {
|
|
6947
|
-
"loggedIn": {},
|
|
6948
|
-
"analytics": {}
|
|
6949
|
-
},
|
|
6950
|
-
"isESM": false,
|
|
6951
|
-
"relativePath": [
|
|
6952
|
-
"build",
|
|
6953
|
-
"commands",
|
|
6954
|
-
"project",
|
|
6955
|
-
"onboarding.js"
|
|
6956
|
-
]
|
|
6957
|
-
},
|
|
6958
|
-
"metadata:lint": {
|
|
6959
|
-
"aliases": [],
|
|
6960
|
-
"args": {},
|
|
6961
|
-
"description": "validate the local store configuration",
|
|
6967
|
+
"description": "create or link an EAS project",
|
|
6962
6968
|
"flags": {
|
|
6963
|
-
"
|
|
6964
|
-
"description": "
|
|
6965
|
-
"name": "
|
|
6966
|
-
"allowNo": false,
|
|
6967
|
-
"type": "boolean"
|
|
6968
|
-
},
|
|
6969
|
-
"profile": {
|
|
6970
|
-
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
6971
|
-
"name": "profile",
|
|
6969
|
+
"id": {
|
|
6970
|
+
"description": "ID of the EAS project to link",
|
|
6971
|
+
"name": "id",
|
|
6972
6972
|
"hasDynamicHelp": false,
|
|
6973
6973
|
"multiple": false,
|
|
6974
6974
|
"type": "option"
|
|
6975
|
+
},
|
|
6976
|
+
"force": {
|
|
6977
|
+
"description": "Whether to create a new project/link an existing project without additional prompts or overwrite any existing project ID when running with --id flag",
|
|
6978
|
+
"name": "force",
|
|
6979
|
+
"allowNo": false,
|
|
6980
|
+
"type": "boolean"
|
|
6981
|
+
},
|
|
6982
|
+
"non-interactive": {
|
|
6983
|
+
"description": "Run the command in non-interactive mode.",
|
|
6984
|
+
"name": "non-interactive",
|
|
6985
|
+
"noCacheDefault": true,
|
|
6986
|
+
"allowNo": false,
|
|
6987
|
+
"type": "boolean"
|
|
6975
6988
|
}
|
|
6976
6989
|
},
|
|
6977
6990
|
"hasDynamicHelp": false,
|
|
6978
6991
|
"hiddenAliases": [],
|
|
6979
|
-
"id": "
|
|
6992
|
+
"id": "project:init",
|
|
6980
6993
|
"pluginAlias": "eas-cli",
|
|
6981
6994
|
"pluginName": "eas-cli",
|
|
6982
6995
|
"pluginType": "core",
|
|
@@ -7023,40 +7036,49 @@
|
|
|
7023
7036
|
}
|
|
7024
7037
|
},
|
|
7025
7038
|
"contextDefinition": {
|
|
7039
|
+
"loggedIn": {},
|
|
7026
7040
|
"projectDir": {}
|
|
7027
7041
|
},
|
|
7028
7042
|
"isESM": false,
|
|
7029
7043
|
"relativePath": [
|
|
7030
7044
|
"build",
|
|
7031
7045
|
"commands",
|
|
7032
|
-
"
|
|
7033
|
-
"
|
|
7046
|
+
"project",
|
|
7047
|
+
"init.js"
|
|
7034
7048
|
]
|
|
7035
7049
|
},
|
|
7036
|
-
"
|
|
7037
|
-
"aliases": [
|
|
7038
|
-
|
|
7039
|
-
|
|
7050
|
+
"project:new": {
|
|
7051
|
+
"aliases": [
|
|
7052
|
+
"new"
|
|
7053
|
+
],
|
|
7054
|
+
"args": {
|
|
7055
|
+
"path": {
|
|
7056
|
+
"description": "Path to create the project (defaults to current directory)",
|
|
7057
|
+
"name": "path",
|
|
7058
|
+
"required": false
|
|
7059
|
+
}
|
|
7060
|
+
},
|
|
7061
|
+
"description": "Create a new project configured with Expo Application Services (EAS)",
|
|
7040
7062
|
"flags": {
|
|
7041
|
-
"
|
|
7042
|
-
"char": "
|
|
7043
|
-
"description": "
|
|
7044
|
-
"name": "
|
|
7063
|
+
"package-manager": {
|
|
7064
|
+
"char": "p",
|
|
7065
|
+
"description": "Package manager to use for installing dependencies",
|
|
7066
|
+
"name": "package-manager",
|
|
7067
|
+
"default": "npm",
|
|
7045
7068
|
"hasDynamicHelp": false,
|
|
7046
7069
|
"multiple": false,
|
|
7070
|
+
"options": [
|
|
7071
|
+
"bun",
|
|
7072
|
+
"npm",
|
|
7073
|
+
"pnpm",
|
|
7074
|
+
"yarn"
|
|
7075
|
+
],
|
|
7047
7076
|
"type": "option"
|
|
7048
|
-
},
|
|
7049
|
-
"non-interactive": {
|
|
7050
|
-
"description": "Run the command in non-interactive mode.",
|
|
7051
|
-
"name": "non-interactive",
|
|
7052
|
-
"noCacheDefault": true,
|
|
7053
|
-
"allowNo": false,
|
|
7054
|
-
"type": "boolean"
|
|
7055
7077
|
}
|
|
7056
7078
|
},
|
|
7057
7079
|
"hasDynamicHelp": false,
|
|
7058
7080
|
"hiddenAliases": [],
|
|
7059
|
-
"id": "
|
|
7081
|
+
"id": "project:new",
|
|
7060
7082
|
"pluginAlias": "eas-cli",
|
|
7061
7083
|
"pluginName": "eas-cli",
|
|
7062
7084
|
"pluginType": "core",
|
|
@@ -7103,43 +7125,31 @@
|
|
|
7103
7125
|
}
|
|
7104
7126
|
},
|
|
7105
7127
|
"contextDefinition": {
|
|
7106
|
-
"loggedIn": {}
|
|
7107
|
-
"privateProjectConfig": {},
|
|
7108
|
-
"analytics": {},
|
|
7109
|
-
"vcsClient": {}
|
|
7128
|
+
"loggedIn": {}
|
|
7110
7129
|
},
|
|
7111
7130
|
"isESM": false,
|
|
7112
7131
|
"relativePath": [
|
|
7113
7132
|
"build",
|
|
7114
7133
|
"commands",
|
|
7115
|
-
"
|
|
7116
|
-
"
|
|
7134
|
+
"project",
|
|
7135
|
+
"new.js"
|
|
7117
7136
|
]
|
|
7118
7137
|
},
|
|
7119
|
-
"
|
|
7120
|
-
"aliases": [
|
|
7121
|
-
|
|
7122
|
-
|
|
7123
|
-
|
|
7124
|
-
|
|
7125
|
-
|
|
7126
|
-
"
|
|
7127
|
-
"name": "profile",
|
|
7128
|
-
"hasDynamicHelp": false,
|
|
7129
|
-
"multiple": false,
|
|
7130
|
-
"type": "option"
|
|
7131
|
-
},
|
|
7132
|
-
"non-interactive": {
|
|
7133
|
-
"description": "Run the command in non-interactive mode.",
|
|
7134
|
-
"name": "non-interactive",
|
|
7135
|
-
"noCacheDefault": true,
|
|
7136
|
-
"allowNo": false,
|
|
7137
|
-
"type": "boolean"
|
|
7138
|
+
"project:onboarding": {
|
|
7139
|
+
"aliases": [
|
|
7140
|
+
"init:onboarding",
|
|
7141
|
+
"onboarding"
|
|
7142
|
+
],
|
|
7143
|
+
"args": {
|
|
7144
|
+
"TARGET_PROJECT_DIRECTORY": {
|
|
7145
|
+
"name": "TARGET_PROJECT_DIRECTORY"
|
|
7138
7146
|
}
|
|
7139
7147
|
},
|
|
7148
|
+
"description": "continue onboarding process started on the https://expo.new website.",
|
|
7149
|
+
"flags": {},
|
|
7140
7150
|
"hasDynamicHelp": false,
|
|
7141
7151
|
"hiddenAliases": [],
|
|
7142
|
-
"id": "
|
|
7152
|
+
"id": "project:onboarding",
|
|
7143
7153
|
"pluginAlias": "eas-cli",
|
|
7144
7154
|
"pluginName": "eas-cli",
|
|
7145
7155
|
"pluginType": "core",
|
|
@@ -7187,16 +7197,14 @@
|
|
|
7187
7197
|
},
|
|
7188
7198
|
"contextDefinition": {
|
|
7189
7199
|
"loggedIn": {},
|
|
7190
|
-
"
|
|
7191
|
-
"analytics": {},
|
|
7192
|
-
"vcsClient": {}
|
|
7200
|
+
"analytics": {}
|
|
7193
7201
|
},
|
|
7194
7202
|
"isESM": false,
|
|
7195
7203
|
"relativePath": [
|
|
7196
7204
|
"build",
|
|
7197
7205
|
"commands",
|
|
7198
|
-
"
|
|
7199
|
-
"
|
|
7206
|
+
"project",
|
|
7207
|
+
"onboarding.js"
|
|
7200
7208
|
]
|
|
7201
7209
|
},
|
|
7202
7210
|
"secret:create": {
|
|
@@ -7562,41 +7570,31 @@
|
|
|
7562
7570
|
"push.js"
|
|
7563
7571
|
]
|
|
7564
7572
|
},
|
|
7565
|
-
"
|
|
7573
|
+
"simulator:get": {
|
|
7566
7574
|
"aliases": [],
|
|
7567
7575
|
"args": {},
|
|
7576
|
+
"description": "[EXPERIMENTAL] get info about a remote simulator session on EAS by its device run session ID",
|
|
7568
7577
|
"flags": {
|
|
7569
|
-
"platform": {
|
|
7570
|
-
"name": "platform",
|
|
7571
|
-
"required": true,
|
|
7572
|
-
"hasDynamicHelp": false,
|
|
7573
|
-
"multiple": false,
|
|
7574
|
-
"options": [
|
|
7575
|
-
"android",
|
|
7576
|
-
"ios"
|
|
7577
|
-
],
|
|
7578
|
-
"type": "option"
|
|
7579
|
-
},
|
|
7580
|
-
"profile": {
|
|
7581
|
-
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
7582
|
-
"name": "profile",
|
|
7583
|
-
"hasDynamicHelp": false,
|
|
7584
|
-
"multiple": false,
|
|
7585
|
-
"type": "option"
|
|
7586
|
-
},
|
|
7587
7578
|
"id": {
|
|
7588
|
-
"description": "
|
|
7579
|
+
"description": "Device run session ID",
|
|
7589
7580
|
"name": "id",
|
|
7590
7581
|
"required": true,
|
|
7591
7582
|
"hasDynamicHelp": false,
|
|
7592
7583
|
"multiple": false,
|
|
7593
7584
|
"type": "option"
|
|
7585
|
+
},
|
|
7586
|
+
"non-interactive": {
|
|
7587
|
+
"description": "Run the command in non-interactive mode.",
|
|
7588
|
+
"name": "non-interactive",
|
|
7589
|
+
"noCacheDefault": true,
|
|
7590
|
+
"allowNo": false,
|
|
7591
|
+
"type": "boolean"
|
|
7594
7592
|
}
|
|
7595
7593
|
},
|
|
7596
7594
|
"hasDynamicHelp": false,
|
|
7597
7595
|
"hidden": true,
|
|
7598
7596
|
"hiddenAliases": [],
|
|
7599
|
-
"id": "
|
|
7597
|
+
"id": "simulator:get",
|
|
7600
7598
|
"pluginAlias": "eas-cli",
|
|
7601
7599
|
"pluginName": "eas-cli",
|
|
7602
7600
|
"pluginType": "core",
|
|
@@ -7643,24 +7641,20 @@
|
|
|
7643
7641
|
}
|
|
7644
7642
|
},
|
|
7645
7643
|
"contextDefinition": {
|
|
7646
|
-
"loggedIn": {}
|
|
7647
|
-
"privateProjectConfig": {},
|
|
7648
|
-
"projectDir": {},
|
|
7649
|
-
"analytics": {},
|
|
7650
|
-
"vcsClient": {}
|
|
7644
|
+
"loggedIn": {}
|
|
7651
7645
|
},
|
|
7652
7646
|
"isESM": false,
|
|
7653
7647
|
"relativePath": [
|
|
7654
7648
|
"build",
|
|
7655
7649
|
"commands",
|
|
7656
|
-
"
|
|
7657
|
-
"
|
|
7650
|
+
"simulator",
|
|
7651
|
+
"get.js"
|
|
7658
7652
|
]
|
|
7659
7653
|
},
|
|
7660
7654
|
"simulator:start": {
|
|
7661
7655
|
"aliases": [],
|
|
7662
7656
|
"args": {},
|
|
7663
|
-
"description": "[EXPERIMENTAL] start a remote simulator session on EAS and get
|
|
7657
|
+
"description": "[EXPERIMENTAL] start a remote simulator session on EAS and get instructions to connect to it",
|
|
7664
7658
|
"flags": {
|
|
7665
7659
|
"platform": {
|
|
7666
7660
|
"description": "Device platform",
|
|
@@ -7681,7 +7675,8 @@
|
|
|
7681
7675
|
"hasDynamicHelp": false,
|
|
7682
7676
|
"multiple": false,
|
|
7683
7677
|
"options": [
|
|
7684
|
-
"agent-device"
|
|
7678
|
+
"agent-device",
|
|
7679
|
+
"serve-sim"
|
|
7685
7680
|
],
|
|
7686
7681
|
"type": "option"
|
|
7687
7682
|
},
|
|
@@ -7842,6 +7837,101 @@
|
|
|
7842
7837
|
"stop.js"
|
|
7843
7838
|
]
|
|
7844
7839
|
},
|
|
7840
|
+
"submit:internal": {
|
|
7841
|
+
"aliases": [],
|
|
7842
|
+
"args": {},
|
|
7843
|
+
"flags": {
|
|
7844
|
+
"platform": {
|
|
7845
|
+
"name": "platform",
|
|
7846
|
+
"required": true,
|
|
7847
|
+
"hasDynamicHelp": false,
|
|
7848
|
+
"multiple": false,
|
|
7849
|
+
"options": [
|
|
7850
|
+
"android",
|
|
7851
|
+
"ios"
|
|
7852
|
+
],
|
|
7853
|
+
"type": "option"
|
|
7854
|
+
},
|
|
7855
|
+
"profile": {
|
|
7856
|
+
"description": "Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json.",
|
|
7857
|
+
"name": "profile",
|
|
7858
|
+
"hasDynamicHelp": false,
|
|
7859
|
+
"multiple": false,
|
|
7860
|
+
"type": "option"
|
|
7861
|
+
},
|
|
7862
|
+
"id": {
|
|
7863
|
+
"description": "ID of the build to submit",
|
|
7864
|
+
"name": "id",
|
|
7865
|
+
"required": true,
|
|
7866
|
+
"hasDynamicHelp": false,
|
|
7867
|
+
"multiple": false,
|
|
7868
|
+
"type": "option"
|
|
7869
|
+
}
|
|
7870
|
+
},
|
|
7871
|
+
"hasDynamicHelp": false,
|
|
7872
|
+
"hidden": true,
|
|
7873
|
+
"hiddenAliases": [],
|
|
7874
|
+
"id": "submit:internal",
|
|
7875
|
+
"pluginAlias": "eas-cli",
|
|
7876
|
+
"pluginName": "eas-cli",
|
|
7877
|
+
"pluginType": "core",
|
|
7878
|
+
"strict": true,
|
|
7879
|
+
"enableJsonFlag": false,
|
|
7880
|
+
"ContextOptions": {
|
|
7881
|
+
"LoggedIn": {
|
|
7882
|
+
"loggedIn": {}
|
|
7883
|
+
},
|
|
7884
|
+
"MaybeLoggedIn": {
|
|
7885
|
+
"maybeLoggedIn": {}
|
|
7886
|
+
},
|
|
7887
|
+
"DynamicLoggedIn": {
|
|
7888
|
+
"getDynamicLoggedInAsync": {}
|
|
7889
|
+
},
|
|
7890
|
+
"SessionManagment": {
|
|
7891
|
+
"sessionManager": {}
|
|
7892
|
+
},
|
|
7893
|
+
"OptionalProjectConfig": {
|
|
7894
|
+
"optionalPrivateProjectConfig": {}
|
|
7895
|
+
},
|
|
7896
|
+
"ProjectDir": {
|
|
7897
|
+
"projectDir": {}
|
|
7898
|
+
},
|
|
7899
|
+
"DynamicProjectConfig": {
|
|
7900
|
+
"getDynamicPublicProjectConfigAsync": {},
|
|
7901
|
+
"getDynamicPrivateProjectConfigAsync": {}
|
|
7902
|
+
},
|
|
7903
|
+
"ProjectConfig": {
|
|
7904
|
+
"loggedIn": {},
|
|
7905
|
+
"privateProjectConfig": {}
|
|
7906
|
+
},
|
|
7907
|
+
"Analytics": {
|
|
7908
|
+
"analytics": {}
|
|
7909
|
+
},
|
|
7910
|
+
"Vcs": {
|
|
7911
|
+
"vcsClient": {}
|
|
7912
|
+
},
|
|
7913
|
+
"ServerSideEnvironmentVariables": {
|
|
7914
|
+
"getServerSideEnvironmentVariablesAsync": {}
|
|
7915
|
+
},
|
|
7916
|
+
"ProjectId": {
|
|
7917
|
+
"projectId": {}
|
|
7918
|
+
}
|
|
7919
|
+
},
|
|
7920
|
+
"contextDefinition": {
|
|
7921
|
+
"loggedIn": {},
|
|
7922
|
+
"privateProjectConfig": {},
|
|
7923
|
+
"projectDir": {},
|
|
7924
|
+
"analytics": {},
|
|
7925
|
+
"vcsClient": {}
|
|
7926
|
+
},
|
|
7927
|
+
"isESM": false,
|
|
7928
|
+
"relativePath": [
|
|
7929
|
+
"build",
|
|
7930
|
+
"commands",
|
|
7931
|
+
"submit",
|
|
7932
|
+
"internal.js"
|
|
7933
|
+
]
|
|
7934
|
+
},
|
|
7845
7935
|
"update:configure": {
|
|
7846
7936
|
"aliases": [],
|
|
7847
7937
|
"args": {},
|
|
@@ -11730,5 +11820,5 @@
|
|
|
11730
11820
|
]
|
|
11731
11821
|
}
|
|
11732
11822
|
},
|
|
11733
|
-
"version": "18.12.
|
|
11823
|
+
"version": "18.12.2"
|
|
11734
11824
|
}
|