airborne-core-cli 0.9.0 → 0.11.1
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 +12 -0
- package/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
|
3
3
|
|
|
4
4
|
- - -
|
|
5
|
+
## airborne_core_cli-v0.1.1 - 2025-10-17
|
|
6
|
+
#### Bug Fixes
|
|
7
|
+
- npm releases - (6d08891) - Yash Rajput
|
|
8
|
+
|
|
9
|
+
- - -
|
|
10
|
+
|
|
11
|
+
## v0.10.1 - 2025-10-17
|
|
12
|
+
#### Miscellaneous Chores
|
|
13
|
+
- **(version)** v0.10.1 [skip ci] - (47c2ede) - Airborne Bot
|
|
14
|
+
|
|
15
|
+
- - -
|
|
16
|
+
|
|
5
17
|
## airborne_core_cli-v0.1.0 - 2025-10-16
|
|
6
18
|
#### Features
|
|
7
19
|
- added airborne cli - (545c8a7) - yash.rajput.001
|
package/index.js
CHANGED
|
@@ -117,7 +117,7 @@ function printColoredJSON(obj, indent = 2) {
|
|
|
117
117
|
const program = new Command()
|
|
118
118
|
.name("airborne-core-cli")
|
|
119
119
|
.description("Command-line interface for Airborne OTA operations")
|
|
120
|
-
.version("0.
|
|
120
|
+
.version("0.11.1");
|
|
121
121
|
|
|
122
122
|
program
|
|
123
123
|
.command("CreateApplication")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "airborne-core-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"airborne-core-cli": "bin.js"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"outputPath": "dist"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"airborne-server-sdk": "
|
|
17
|
+
"airborne-server-sdk": "*",
|
|
18
18
|
"chalk": "^5.6.2",
|
|
19
19
|
"commander": "14.0.1",
|
|
20
20
|
"json-stringify-safe": "^5.0.1"
|