@otalan/cli 1.0.2 → 1.0.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/CHANGELOG.md +16 -0
- package/README.md +7 -0
- package/dist/bin.js +42 -40
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@otalan/cli` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 1.0.4 - 2026-05-04
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Prompt interactively for bundle native version and bundle ID, with hints for the detected native version, local bundle ID, and active published bundle ID when available.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Link npm package metadata and README introduction to https://otalan.com.
|
|
14
|
+
|
|
15
|
+
## 1.0.3 - 2026-05-04
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- Add bundle prompt refinements for local and published bundle ID hints.
|
|
20
|
+
|
|
5
21
|
## 1.0.2 - 2026-05-04
|
|
6
22
|
|
|
7
23
|
### Added
|
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Otalan CLI for bundling and publishing OTA update releases for Capacitor and Expo / React Native apps.
|
|
4
4
|
|
|
5
|
+
Website: [otalan.com](https://otalan.com)
|
|
6
|
+
|
|
5
7
|
Published as an npm package, but the CLI itself runs on Bun.
|
|
6
8
|
|
|
7
9
|
## Requirements
|
|
@@ -293,6 +295,7 @@ Current behavior:
|
|
|
293
295
|
|
|
294
296
|
Native version defaults:
|
|
295
297
|
|
|
298
|
+
- In an interactive terminal, `otalan bundle` prompts for the native version after showing the detected active native version.
|
|
296
299
|
- Capacitor iOS reads `CFBundleShortVersionString` from `Info.plist` and resolves `$(MARKETING_VERSION)` from the Xcode project when needed
|
|
297
300
|
- Capacitor Android reads `versionName` from `android/app/build.gradle` or `build.gradle.kts`
|
|
298
301
|
- Expo reads the selected platform version from Expo config and falls back to the top-level Expo `version`
|
|
@@ -310,6 +313,10 @@ otalan bundle --target expo --platform ios --bundle-id 1.0.5
|
|
|
310
313
|
|
|
311
314
|
If you omit `bundleId`:
|
|
312
315
|
|
|
316
|
+
- in an interactive terminal, the CLI prompts for a bundle ID and shows the local bundle ID from `.otalan/bundle/manifest.json` when available
|
|
317
|
+
- when `otalan login` and `otalan init` are configured, the prompt also shows the active published bundle ID for the selected platform/native version/channel
|
|
318
|
+
- published bundle hints use `--channel`, defaulting to `production`
|
|
319
|
+
- pressing Enter without a bundle ID keeps the automatic bundle ID behavior
|
|
313
320
|
- the CLI reads `nativeVersion` from the selected native platform and adds a short hash suffix
|
|
314
321
|
- example: `1.0.0-abc123def456`
|
|
315
322
|
|