@radhya/mach 2.0.34 → 2.0.36
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 +15 -13
- package/dist/index.js +174 -176
- package/docs/frameworks/react-native.md +1 -1
- package/expo-plugin/index.js +4 -0
- package/package.json +2 -2
|
@@ -105,7 +105,7 @@ Set package and version code at the root:
|
|
|
105
105
|
}
|
|
106
106
|
```
|
|
107
107
|
|
|
108
|
-
For Google Play submission
|
|
108
|
+
For Google Play submission, upload a Google Play service account credential for the exact package id. Mach-managed versionCode assignment uses the Dashboard counter and does not require a Google Play service key.
|
|
109
109
|
|
|
110
110
|
## Development Builds
|
|
111
111
|
|
package/expo-plugin/index.js
CHANGED
|
@@ -112,6 +112,10 @@ module.exports = function withMachDeepLinks(config) {
|
|
|
112
112
|
config.updates = {
|
|
113
113
|
...(config.updates || {}),
|
|
114
114
|
url: ota.url,
|
|
115
|
+
requestHeaders: {
|
|
116
|
+
...(config.updates && config.updates.requestHeaders ? config.updates.requestHeaders : {}),
|
|
117
|
+
'expo-channel-name': ota.channel,
|
|
118
|
+
},
|
|
115
119
|
}
|
|
116
120
|
if (ota.runtimeVersion) {
|
|
117
121
|
config.runtimeVersion = ota.runtimeVersion
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@radhya/mach",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.36",
|
|
4
4
|
"description": "Mach CLI: Cloud Build Orchestrator for React Native & Expo",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
|
-
"mach": "
|
|
8
|
+
"mach": "dist/index.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist/",
|