@otalan/cli 1.0.6 → 1.0.7
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/CHANGELOG.md +7 -0
- package/README.md +3 -10
- package/dist/bin.js +24 -24
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@otalan/cli` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 1.0.7 - 2026-05-06
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Clean public README examples to avoid project-specific app IDs, generated-looking slugs, and local development API URLs.
|
|
10
|
+
- Keep user-facing login guidance pointed at the public Otalan API keys page.
|
|
11
|
+
|
|
5
12
|
## 1.0.6 - 2026-05-05
|
|
6
13
|
|
|
7
14
|
### Changed
|
package/README.md
CHANGED
|
@@ -206,8 +206,8 @@ Example project config:
|
|
|
206
206
|
|
|
207
207
|
```json
|
|
208
208
|
{
|
|
209
|
-
"organizationSlug": "
|
|
210
|
-
"projectSlug": "
|
|
209
|
+
"organizationSlug": "example-organization",
|
|
210
|
+
"projectSlug": "example-project",
|
|
211
211
|
"appId": "com.example.app"
|
|
212
212
|
}
|
|
213
213
|
```
|
|
@@ -238,12 +238,6 @@ Saves the CI key and API base URL locally.
|
|
|
238
238
|
otalan login --api-key otalan_ci_xxx --api-url https://api.otalan.com
|
|
239
239
|
```
|
|
240
240
|
|
|
241
|
-
Local development:
|
|
242
|
-
|
|
243
|
-
```bash
|
|
244
|
-
otalan login --api-key otalan_ci_xxx --api-url http://localhost:8787
|
|
245
|
-
```
|
|
246
|
-
|
|
247
241
|
### `otalan doctor`
|
|
248
242
|
|
|
249
243
|
Checks API connectivity and prints the organization/project context resolved from the configured CI key.
|
|
@@ -268,7 +262,7 @@ If you already ran `otalan login`, the CLI resolves `organizationSlug` and `proj
|
|
|
268
262
|
|
|
269
263
|
```bash
|
|
270
264
|
otalan init \
|
|
271
|
-
--app-id
|
|
265
|
+
--app-id com.example.app
|
|
272
266
|
```
|
|
273
267
|
|
|
274
268
|
### `otalan bundle`
|
|
@@ -470,6 +464,5 @@ bun pm pack --dry-run
|
|
|
470
464
|
- This is a Bun-based CLI published on npm.
|
|
471
465
|
- Expo / React Native bundling uses `bunx expo ...`.
|
|
472
466
|
- Default API URL is `https://api.otalan.com`.
|
|
473
|
-
- Local development API URL is `http://localhost:8787`.
|
|
474
467
|
- Publishing, rollback, status, and `bundles` expect a CI key and an active app.
|
|
475
468
|
- Run `bun run build` after changing CLI source if you want `dist/bin.js` updated locally.
|