@uwayss/bareed 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -23,3 +23,17 @@ It offers to install your dependencies when they are missing, and to create the
|
|
|
23
23
|
application on the server when your slug is not there yet.
|
|
24
24
|
|
|
25
25
|
`bareed --login` saves them without an upload. `bareed --logout` deletes them.
|
|
26
|
+
|
|
27
|
+
## In CI
|
|
28
|
+
|
|
29
|
+
`--yes` asks nothing. Set `BAREED_URL` and `BAREED_PASSWORD` in the environment,
|
|
30
|
+
and name the target with `--app` and `--runtime`:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
bareed --yes --app your-app-slug --runtime 1.0.0
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
The password stays in the environment. Nothing is written to the config file.
|
|
37
|
+
|
|
38
|
+
Without `--app` or `--runtime`, it reads your Expo config. `--yes` creates a
|
|
39
|
+
runtime version that is not on the server yet, but never an application.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uwayss/bareed",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Export an Expo app and upload it to your own Bareed update server",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Muhammed Antar",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
},
|
|
26
26
|
"files": ["bin", "README.md"],
|
|
27
27
|
"optionalDependencies": {
|
|
28
|
-
"@uwayss/bareed-darwin-arm64": "0.
|
|
29
|
-
"@uwayss/bareed-darwin-x64": "0.
|
|
30
|
-
"@uwayss/bareed-linux-x64": "0.
|
|
31
|
-
"@uwayss/bareed-linux-arm64": "0.
|
|
32
|
-
"@uwayss/bareed-win32-x64": "0.
|
|
33
|
-
"@uwayss/bareed-win32-arm64": "0.
|
|
28
|
+
"@uwayss/bareed-darwin-arm64": "0.3.0",
|
|
29
|
+
"@uwayss/bareed-darwin-x64": "0.3.0",
|
|
30
|
+
"@uwayss/bareed-linux-x64": "0.3.0",
|
|
31
|
+
"@uwayss/bareed-linux-arm64": "0.3.0",
|
|
32
|
+
"@uwayss/bareed-win32-x64": "0.3.0",
|
|
33
|
+
"@uwayss/bareed-win32-arm64": "0.3.0"
|
|
34
34
|
}
|
|
35
35
|
}
|