eas-cli 10.2.2 → 10.2.4
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 +60 -60
- package/build/build/local.js +1 -1
- package/build/build/metadata.js +1 -0
- package/build/build/runBuildAndSubmit.js +11 -0
- package/build/commandUtils/flags.d.ts +13 -0
- package/build/commandUtils/flags.js +47 -1
- package/build/commands/env/create.d.ts +23 -0
- package/build/commands/env/create.js +164 -0
- package/build/commands/env/delete.d.ts +18 -0
- package/build/commands/env/delete.js +92 -0
- package/build/commands/env/get.d.ts +19 -0
- package/build/commands/env/get.js +92 -0
- package/build/commands/env/link.d.ts +15 -0
- package/build/commands/env/link.js +57 -0
- package/build/commands/env/list.d.ts +16 -0
- package/build/commands/env/list.js +55 -0
- package/build/commands/env/unlink.d.ts +15 -0
- package/build/commands/env/unlink.js +62 -0
- package/build/commands/env/update.d.ts +21 -0
- package/build/commands/env/update.js +130 -0
- package/build/env.d.ts +5 -0
- package/build/env.js +5 -0
- package/build/graphql/generated.d.ts +555 -52
- package/build/graphql/generated.js +42 -2
- package/build/graphql/mutations/EnvironmentVariableMutation.d.ts +38 -0
- package/build/graphql/mutations/EnvironmentVariableMutation.js +113 -0
- package/build/graphql/queries/EnvironmentVariablesQuery.d.ts +13 -0
- package/build/graphql/queries/EnvironmentVariablesQuery.js +83 -0
- package/build/graphql/types/EnvironmentVariable.d.ts +1 -0
- package/build/graphql/types/EnvironmentVariable.js +16 -0
- package/build/project/ios/bundleIdentifier.js +4 -0
- package/build/utils/formatVariable.d.ts +2 -0
- package/build/utils/formatVariable.js +16 -0
- package/build/utils/prompts.d.ts +9 -0
- package/build/utils/prompts.js +68 -0
- package/oclif.manifest.json +410 -1
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "10.2.
|
|
2
|
+
"version": "10.2.4",
|
|
3
3
|
"commands": {
|
|
4
4
|
"analytics": {
|
|
5
5
|
"id": "analytics",
|
|
@@ -1849,6 +1849,415 @@
|
|
|
1849
1849
|
"privateProjectConfig": {}
|
|
1850
1850
|
}
|
|
1851
1851
|
},
|
|
1852
|
+
"env:create": {
|
|
1853
|
+
"id": "env:create",
|
|
1854
|
+
"description": "create an environment variable on the current project or owner account",
|
|
1855
|
+
"strict": true,
|
|
1856
|
+
"pluginName": "eas-cli",
|
|
1857
|
+
"pluginAlias": "eas-cli",
|
|
1858
|
+
"pluginType": "core",
|
|
1859
|
+
"hidden": true,
|
|
1860
|
+
"aliases": [],
|
|
1861
|
+
"flags": {
|
|
1862
|
+
"name": {
|
|
1863
|
+
"name": "name",
|
|
1864
|
+
"type": "option",
|
|
1865
|
+
"description": "Name of the variable",
|
|
1866
|
+
"multiple": false
|
|
1867
|
+
},
|
|
1868
|
+
"value": {
|
|
1869
|
+
"name": "value",
|
|
1870
|
+
"type": "option",
|
|
1871
|
+
"description": "Text value or the variable",
|
|
1872
|
+
"multiple": false
|
|
1873
|
+
},
|
|
1874
|
+
"link": {
|
|
1875
|
+
"name": "link",
|
|
1876
|
+
"type": "boolean",
|
|
1877
|
+
"description": "Link shared variable to the current project",
|
|
1878
|
+
"allowNo": false
|
|
1879
|
+
},
|
|
1880
|
+
"force": {
|
|
1881
|
+
"name": "force",
|
|
1882
|
+
"type": "boolean",
|
|
1883
|
+
"description": "Overwrite existing variable",
|
|
1884
|
+
"allowNo": false
|
|
1885
|
+
},
|
|
1886
|
+
"visibility": {
|
|
1887
|
+
"name": "visibility",
|
|
1888
|
+
"type": "option",
|
|
1889
|
+
"description": "Visibility of the variable",
|
|
1890
|
+
"helpValue": "(secret|sensitive|public)",
|
|
1891
|
+
"multiple": false,
|
|
1892
|
+
"options": [
|
|
1893
|
+
"secret",
|
|
1894
|
+
"sensitive",
|
|
1895
|
+
"public"
|
|
1896
|
+
]
|
|
1897
|
+
},
|
|
1898
|
+
"scope": {
|
|
1899
|
+
"name": "scope",
|
|
1900
|
+
"type": "option",
|
|
1901
|
+
"description": "Scope for the variable",
|
|
1902
|
+
"helpValue": "(shared|project)",
|
|
1903
|
+
"multiple": false,
|
|
1904
|
+
"options": [
|
|
1905
|
+
"shared",
|
|
1906
|
+
"project"
|
|
1907
|
+
],
|
|
1908
|
+
"default": "PROJECT"
|
|
1909
|
+
},
|
|
1910
|
+
"environment": {
|
|
1911
|
+
"name": "environment",
|
|
1912
|
+
"type": "option",
|
|
1913
|
+
"description": "Environment variable's environment",
|
|
1914
|
+
"helpValue": "(development|preview|production)",
|
|
1915
|
+
"multiple": false,
|
|
1916
|
+
"options": [
|
|
1917
|
+
"development",
|
|
1918
|
+
"preview",
|
|
1919
|
+
"production"
|
|
1920
|
+
]
|
|
1921
|
+
},
|
|
1922
|
+
"non-interactive": {
|
|
1923
|
+
"name": "non-interactive",
|
|
1924
|
+
"type": "boolean",
|
|
1925
|
+
"description": "Run the command in non-interactive mode.",
|
|
1926
|
+
"allowNo": false
|
|
1927
|
+
}
|
|
1928
|
+
},
|
|
1929
|
+
"args": {},
|
|
1930
|
+
"contextDefinition": {
|
|
1931
|
+
"loggedIn": {},
|
|
1932
|
+
"privateProjectConfig": {},
|
|
1933
|
+
"analytics": {}
|
|
1934
|
+
}
|
|
1935
|
+
},
|
|
1936
|
+
"env:delete": {
|
|
1937
|
+
"id": "env:delete",
|
|
1938
|
+
"description": "delete an environment variable by name",
|
|
1939
|
+
"strict": true,
|
|
1940
|
+
"pluginName": "eas-cli",
|
|
1941
|
+
"pluginAlias": "eas-cli",
|
|
1942
|
+
"pluginType": "core",
|
|
1943
|
+
"hidden": true,
|
|
1944
|
+
"aliases": [],
|
|
1945
|
+
"flags": {
|
|
1946
|
+
"name": {
|
|
1947
|
+
"name": "name",
|
|
1948
|
+
"type": "option",
|
|
1949
|
+
"description": "Name of the variable to delete",
|
|
1950
|
+
"multiple": false
|
|
1951
|
+
},
|
|
1952
|
+
"scope": {
|
|
1953
|
+
"name": "scope",
|
|
1954
|
+
"type": "option",
|
|
1955
|
+
"description": "Scope for the variable",
|
|
1956
|
+
"helpValue": "(shared|project)",
|
|
1957
|
+
"multiple": false,
|
|
1958
|
+
"options": [
|
|
1959
|
+
"shared",
|
|
1960
|
+
"project"
|
|
1961
|
+
],
|
|
1962
|
+
"default": "PROJECT"
|
|
1963
|
+
},
|
|
1964
|
+
"environment": {
|
|
1965
|
+
"name": "environment",
|
|
1966
|
+
"type": "option",
|
|
1967
|
+
"description": "Environment variable's environment",
|
|
1968
|
+
"helpValue": "(development|preview|production)",
|
|
1969
|
+
"multiple": false,
|
|
1970
|
+
"options": [
|
|
1971
|
+
"development",
|
|
1972
|
+
"preview",
|
|
1973
|
+
"production"
|
|
1974
|
+
]
|
|
1975
|
+
},
|
|
1976
|
+
"non-interactive": {
|
|
1977
|
+
"name": "non-interactive",
|
|
1978
|
+
"type": "boolean",
|
|
1979
|
+
"description": "Run the command in non-interactive mode.",
|
|
1980
|
+
"allowNo": false
|
|
1981
|
+
}
|
|
1982
|
+
},
|
|
1983
|
+
"args": {},
|
|
1984
|
+
"contextDefinition": {
|
|
1985
|
+
"loggedIn": {},
|
|
1986
|
+
"privateProjectConfig": {}
|
|
1987
|
+
}
|
|
1988
|
+
},
|
|
1989
|
+
"env:get": {
|
|
1990
|
+
"id": "env:get",
|
|
1991
|
+
"description": "get environment variable",
|
|
1992
|
+
"strict": true,
|
|
1993
|
+
"pluginName": "eas-cli",
|
|
1994
|
+
"pluginAlias": "eas-cli",
|
|
1995
|
+
"pluginType": "core",
|
|
1996
|
+
"hidden": true,
|
|
1997
|
+
"aliases": [],
|
|
1998
|
+
"flags": {
|
|
1999
|
+
"name": {
|
|
2000
|
+
"name": "name",
|
|
2001
|
+
"type": "option",
|
|
2002
|
+
"description": "Name of the variable",
|
|
2003
|
+
"multiple": false
|
|
2004
|
+
},
|
|
2005
|
+
"format": {
|
|
2006
|
+
"name": "format",
|
|
2007
|
+
"type": "option",
|
|
2008
|
+
"description": "Output format",
|
|
2009
|
+
"helpValue": "(long|short)",
|
|
2010
|
+
"multiple": false,
|
|
2011
|
+
"options": [
|
|
2012
|
+
"long",
|
|
2013
|
+
"short"
|
|
2014
|
+
],
|
|
2015
|
+
"default": "short"
|
|
2016
|
+
},
|
|
2017
|
+
"scope": {
|
|
2018
|
+
"name": "scope",
|
|
2019
|
+
"type": "option",
|
|
2020
|
+
"description": "Scope for the variable",
|
|
2021
|
+
"helpValue": "(shared|project)",
|
|
2022
|
+
"multiple": false,
|
|
2023
|
+
"options": [
|
|
2024
|
+
"shared",
|
|
2025
|
+
"project"
|
|
2026
|
+
],
|
|
2027
|
+
"default": "PROJECT"
|
|
2028
|
+
},
|
|
2029
|
+
"non-interactive": {
|
|
2030
|
+
"name": "non-interactive",
|
|
2031
|
+
"type": "boolean",
|
|
2032
|
+
"description": "Run the command in non-interactive mode.",
|
|
2033
|
+
"allowNo": false
|
|
2034
|
+
},
|
|
2035
|
+
"environment": {
|
|
2036
|
+
"name": "environment",
|
|
2037
|
+
"type": "option",
|
|
2038
|
+
"description": "Environment variable's environment",
|
|
2039
|
+
"helpValue": "(development|preview|production)",
|
|
2040
|
+
"multiple": false,
|
|
2041
|
+
"options": [
|
|
2042
|
+
"development",
|
|
2043
|
+
"preview",
|
|
2044
|
+
"production"
|
|
2045
|
+
]
|
|
2046
|
+
}
|
|
2047
|
+
},
|
|
2048
|
+
"args": {},
|
|
2049
|
+
"contextDefinition": {
|
|
2050
|
+
"loggedIn": {},
|
|
2051
|
+
"privateProjectConfig": {}
|
|
2052
|
+
}
|
|
2053
|
+
},
|
|
2054
|
+
"env:link": {
|
|
2055
|
+
"id": "env:link",
|
|
2056
|
+
"description": "link a shared environment variable to the current project",
|
|
2057
|
+
"strict": true,
|
|
2058
|
+
"pluginName": "eas-cli",
|
|
2059
|
+
"pluginAlias": "eas-cli",
|
|
2060
|
+
"pluginType": "core",
|
|
2061
|
+
"hidden": true,
|
|
2062
|
+
"aliases": [],
|
|
2063
|
+
"flags": {
|
|
2064
|
+
"name": {
|
|
2065
|
+
"name": "name",
|
|
2066
|
+
"type": "option",
|
|
2067
|
+
"description": "Name of the variable",
|
|
2068
|
+
"multiple": false
|
|
2069
|
+
},
|
|
2070
|
+
"environment": {
|
|
2071
|
+
"name": "environment",
|
|
2072
|
+
"type": "option",
|
|
2073
|
+
"description": "Environment variable's environment",
|
|
2074
|
+
"helpValue": "(development|preview|production)",
|
|
2075
|
+
"multiple": false,
|
|
2076
|
+
"options": [
|
|
2077
|
+
"development",
|
|
2078
|
+
"preview",
|
|
2079
|
+
"production"
|
|
2080
|
+
]
|
|
2081
|
+
},
|
|
2082
|
+
"non-interactive": {
|
|
2083
|
+
"name": "non-interactive",
|
|
2084
|
+
"type": "boolean",
|
|
2085
|
+
"description": "Run the command in non-interactive mode.",
|
|
2086
|
+
"allowNo": false
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
"args": {},
|
|
2090
|
+
"contextDefinition": {
|
|
2091
|
+
"loggedIn": {},
|
|
2092
|
+
"privateProjectConfig": {}
|
|
2093
|
+
}
|
|
2094
|
+
},
|
|
2095
|
+
"env:list": {
|
|
2096
|
+
"id": "env:list",
|
|
2097
|
+
"description": "list environment variables for the current project",
|
|
2098
|
+
"strict": true,
|
|
2099
|
+
"pluginName": "eas-cli",
|
|
2100
|
+
"pluginAlias": "eas-cli",
|
|
2101
|
+
"pluginType": "core",
|
|
2102
|
+
"hidden": true,
|
|
2103
|
+
"aliases": [],
|
|
2104
|
+
"flags": {
|
|
2105
|
+
"format": {
|
|
2106
|
+
"name": "format",
|
|
2107
|
+
"type": "option",
|
|
2108
|
+
"description": "Output format",
|
|
2109
|
+
"helpValue": "(long|short)",
|
|
2110
|
+
"multiple": false,
|
|
2111
|
+
"options": [
|
|
2112
|
+
"long",
|
|
2113
|
+
"short"
|
|
2114
|
+
],
|
|
2115
|
+
"default": "short"
|
|
2116
|
+
},
|
|
2117
|
+
"scope": {
|
|
2118
|
+
"name": "scope",
|
|
2119
|
+
"type": "option",
|
|
2120
|
+
"description": "Scope for the variable",
|
|
2121
|
+
"helpValue": "(shared|project)",
|
|
2122
|
+
"multiple": false,
|
|
2123
|
+
"options": [
|
|
2124
|
+
"shared",
|
|
2125
|
+
"project"
|
|
2126
|
+
],
|
|
2127
|
+
"default": "PROJECT"
|
|
2128
|
+
},
|
|
2129
|
+
"environment": {
|
|
2130
|
+
"name": "environment",
|
|
2131
|
+
"type": "option",
|
|
2132
|
+
"description": "Environment variable's environment",
|
|
2133
|
+
"helpValue": "(development|preview|production)",
|
|
2134
|
+
"multiple": false,
|
|
2135
|
+
"options": [
|
|
2136
|
+
"development",
|
|
2137
|
+
"preview",
|
|
2138
|
+
"production"
|
|
2139
|
+
]
|
|
2140
|
+
}
|
|
2141
|
+
},
|
|
2142
|
+
"args": {},
|
|
2143
|
+
"contextDefinition": {
|
|
2144
|
+
"loggedIn": {},
|
|
2145
|
+
"privateProjectConfig": {}
|
|
2146
|
+
}
|
|
2147
|
+
},
|
|
2148
|
+
"env:unlink": {
|
|
2149
|
+
"id": "env:unlink",
|
|
2150
|
+
"description": "unlink a shared environment variable to the current project",
|
|
2151
|
+
"strict": true,
|
|
2152
|
+
"pluginName": "eas-cli",
|
|
2153
|
+
"pluginAlias": "eas-cli",
|
|
2154
|
+
"pluginType": "core",
|
|
2155
|
+
"hidden": true,
|
|
2156
|
+
"aliases": [],
|
|
2157
|
+
"flags": {
|
|
2158
|
+
"name": {
|
|
2159
|
+
"name": "name",
|
|
2160
|
+
"type": "option",
|
|
2161
|
+
"description": "Name of the variable",
|
|
2162
|
+
"multiple": false
|
|
2163
|
+
},
|
|
2164
|
+
"environment": {
|
|
2165
|
+
"name": "environment",
|
|
2166
|
+
"type": "option",
|
|
2167
|
+
"description": "Environment variable's environment",
|
|
2168
|
+
"helpValue": "(development|preview|production)",
|
|
2169
|
+
"multiple": false,
|
|
2170
|
+
"options": [
|
|
2171
|
+
"development",
|
|
2172
|
+
"preview",
|
|
2173
|
+
"production"
|
|
2174
|
+
]
|
|
2175
|
+
},
|
|
2176
|
+
"non-interactive": {
|
|
2177
|
+
"name": "non-interactive",
|
|
2178
|
+
"type": "boolean",
|
|
2179
|
+
"description": "Run the command in non-interactive mode.",
|
|
2180
|
+
"allowNo": false
|
|
2181
|
+
}
|
|
2182
|
+
},
|
|
2183
|
+
"args": {},
|
|
2184
|
+
"contextDefinition": {
|
|
2185
|
+
"loggedIn": {},
|
|
2186
|
+
"privateProjectConfig": {}
|
|
2187
|
+
}
|
|
2188
|
+
},
|
|
2189
|
+
"env:update": {
|
|
2190
|
+
"id": "env:update",
|
|
2191
|
+
"description": "update an environment variable on the current project or owner account",
|
|
2192
|
+
"strict": true,
|
|
2193
|
+
"pluginName": "eas-cli",
|
|
2194
|
+
"pluginAlias": "eas-cli",
|
|
2195
|
+
"pluginType": "core",
|
|
2196
|
+
"hidden": true,
|
|
2197
|
+
"aliases": [],
|
|
2198
|
+
"flags": {
|
|
2199
|
+
"name": {
|
|
2200
|
+
"name": "name",
|
|
2201
|
+
"type": "option",
|
|
2202
|
+
"description": "Name of the variable",
|
|
2203
|
+
"multiple": false
|
|
2204
|
+
},
|
|
2205
|
+
"value": {
|
|
2206
|
+
"name": "value",
|
|
2207
|
+
"type": "option",
|
|
2208
|
+
"description": "Text value or the variable",
|
|
2209
|
+
"multiple": false
|
|
2210
|
+
},
|
|
2211
|
+
"visibility": {
|
|
2212
|
+
"name": "visibility",
|
|
2213
|
+
"type": "option",
|
|
2214
|
+
"description": "Visibility of the variable",
|
|
2215
|
+
"helpValue": "(secret|sensitive|public)",
|
|
2216
|
+
"multiple": false,
|
|
2217
|
+
"options": [
|
|
2218
|
+
"secret",
|
|
2219
|
+
"sensitive",
|
|
2220
|
+
"public"
|
|
2221
|
+
]
|
|
2222
|
+
},
|
|
2223
|
+
"scope": {
|
|
2224
|
+
"name": "scope",
|
|
2225
|
+
"type": "option",
|
|
2226
|
+
"description": "Scope for the variable",
|
|
2227
|
+
"helpValue": "(shared|project)",
|
|
2228
|
+
"multiple": false,
|
|
2229
|
+
"options": [
|
|
2230
|
+
"shared",
|
|
2231
|
+
"project"
|
|
2232
|
+
],
|
|
2233
|
+
"default": "PROJECT"
|
|
2234
|
+
},
|
|
2235
|
+
"environment": {
|
|
2236
|
+
"name": "environment",
|
|
2237
|
+
"type": "option",
|
|
2238
|
+
"description": "Environment variable's environment",
|
|
2239
|
+
"helpValue": "(development|preview|production)",
|
|
2240
|
+
"multiple": false,
|
|
2241
|
+
"options": [
|
|
2242
|
+
"development",
|
|
2243
|
+
"preview",
|
|
2244
|
+
"production"
|
|
2245
|
+
]
|
|
2246
|
+
},
|
|
2247
|
+
"non-interactive": {
|
|
2248
|
+
"name": "non-interactive",
|
|
2249
|
+
"type": "boolean",
|
|
2250
|
+
"description": "Run the command in non-interactive mode.",
|
|
2251
|
+
"allowNo": false
|
|
2252
|
+
}
|
|
2253
|
+
},
|
|
2254
|
+
"args": {},
|
|
2255
|
+
"contextDefinition": {
|
|
2256
|
+
"loggedIn": {},
|
|
2257
|
+
"privateProjectConfig": {},
|
|
2258
|
+
"analytics": {}
|
|
2259
|
+
}
|
|
2260
|
+
},
|
|
1852
2261
|
"metadata:lint": {
|
|
1853
2262
|
"id": "metadata:lint",
|
|
1854
2263
|
"description": "validate the local store configuration",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "10.2.
|
|
4
|
+
"version": "10.2.4",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"@expo/config": "8.5.4",
|
|
14
14
|
"@expo/config-plugins": "7.8.4",
|
|
15
15
|
"@expo/config-types": "50.0.0",
|
|
16
|
-
"@expo/eas-build-job": "1.0.
|
|
17
|
-
"@expo/eas-json": "10.2.
|
|
16
|
+
"@expo/eas-build-job": "1.0.130",
|
|
17
|
+
"@expo/eas-json": "10.2.4",
|
|
18
18
|
"@expo/json-file": "8.2.37",
|
|
19
19
|
"@expo/logger": "1.0.117",
|
|
20
20
|
"@expo/multipart-body-parser": "1.1.0",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@expo/results": "1.0.0",
|
|
29
29
|
"@expo/rudder-sdk-node": "1.1.1",
|
|
30
30
|
"@expo/spawn-async": "1.7.0",
|
|
31
|
-
"@expo/steps": "1.0.
|
|
31
|
+
"@expo/steps": "1.0.130",
|
|
32
32
|
"@expo/timeago.js": "1.0.0",
|
|
33
33
|
"@oclif/core": "^1.26.2",
|
|
34
34
|
"@oclif/plugin-autocomplete": "^2.3.10",
|
|
@@ -223,5 +223,5 @@
|
|
|
223
223
|
"node": "20.11.0",
|
|
224
224
|
"yarn": "1.22.21"
|
|
225
225
|
},
|
|
226
|
-
"gitHead": "
|
|
226
|
+
"gitHead": "987c23fc2d2c917a31fad7fd923132a337513c9d"
|
|
227
227
|
}
|