airborne-devkit 0.12.0 → 0.13.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 +24 -0
- package/package.json +1 -1
- package/src/index.js +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
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_cli-v0.1.3 - 2025-10-28
|
|
6
|
+
#### Bug Fixes
|
|
7
|
+
- ensure directoryPath defaults to current working directory - (7404ed8) - Yash Rajput
|
|
8
|
+
|
|
9
|
+
- - -
|
|
10
|
+
|
|
11
|
+
## v0.13.0 - 2025-10-28
|
|
12
|
+
#### Miscellaneous Chores
|
|
13
|
+
- **(version)** v0.13.0 [skip ci] - (bdbd374) - Airborne Bot
|
|
14
|
+
|
|
15
|
+
- - -
|
|
16
|
+
|
|
17
|
+
## v0.12.0 - 2025-10-28
|
|
18
|
+
#### Miscellaneous Chores
|
|
19
|
+
- **(version)** v0.12.0 [skip ci] - (c3041a8) - Airborne Bot
|
|
20
|
+
|
|
21
|
+
- - -
|
|
22
|
+
|
|
23
|
+
## v0.11.1 - 2025-10-28
|
|
24
|
+
#### Miscellaneous Chores
|
|
25
|
+
- **(version)** v0.11.1 [skip ci] - (210c3f8) - Airborne Bot
|
|
26
|
+
|
|
27
|
+
- - -
|
|
28
|
+
|
|
5
29
|
## airborne_cli-v0.1.2 - 2025-10-17
|
|
6
30
|
#### Bug Fixes
|
|
7
31
|
- npm releases - (6d08891) - Yash Rajput
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -26,7 +26,7 @@ const program = new Command();
|
|
|
26
26
|
program
|
|
27
27
|
.name("airborne-devkit")
|
|
28
28
|
.description("Command-line interface for Airborne operations")
|
|
29
|
-
.version("0.
|
|
29
|
+
.version("0.13.1");
|
|
30
30
|
|
|
31
31
|
coreCli.commands.forEach((cmd, i) => {
|
|
32
32
|
if (cmd._name !== "PostLogin") {
|
|
@@ -608,6 +608,9 @@ Notes:
|
|
|
608
608
|
)
|
|
609
609
|
.action(async (directoryPath, options) => {
|
|
610
610
|
try {
|
|
611
|
+
if (!directoryPath) {
|
|
612
|
+
directoryPath = process.cwd();
|
|
613
|
+
}
|
|
611
614
|
options.directoryPath = directoryPath;
|
|
612
615
|
if (!options.platform) {
|
|
613
616
|
options.platform = await promptWithType(
|