@microtronics/studio-cli 0.26.0 → 0.27.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/CHANGELOG.md +9 -2
- package/dist/studio-cli.d.ts +6 -1
- package/out/scriptRunner.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 0.27.0 (2025-03-20)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Features
|
|
7
7
|
|
|
8
|
-
*
|
|
8
|
+
* **studio-core:** support to allow preview of the app version manifest ([fdfe18b](https://bitbucket.org/microtronics-core/vscode-studio/commits/fdfe18bf873de150b6870004249880a3e990a811))
|
|
9
|
+
|
|
10
|
+
## 0.26.0 (2025-03-18)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* implemented generic logger ([46b72a1](https://bitbucket.org/microtronics-core/vscode-studio/commits/46b72a1f5bcf9cfe85e58deb7e69bf3e56aa0875))
|
|
9
16
|
* **studio-cli:** introduced generic logger with chalk as colorization tool ([6593494](https://bitbucket.org/microtronics-core/vscode-studio/commits/65934942e2d30b3dfcc965e798ad8c508bf2ed52))
|
|
10
17
|
|
|
11
18
|
## 0.25.0 (2025-03-12)
|
package/dist/studio-cli.d.ts
CHANGED
|
@@ -372,7 +372,7 @@ declare interface components {
|
|
|
372
372
|
ApplicationVersion: string | number;
|
|
373
373
|
ApplicationVersionInSemver: boolean;
|
|
374
374
|
/** @description File that can be downloaded */
|
|
375
|
-
ApplicationFileName: "release-notes.md" | "app.tar.gz";
|
|
375
|
+
ApplicationFileName: "release-notes.md" | "app.tar.gz" | "studio.json";
|
|
376
376
|
/** @description User Id */
|
|
377
377
|
MemberId: string;
|
|
378
378
|
/** @description User Id */
|
|
@@ -3584,6 +3584,11 @@ declare interface paths {
|
|
|
3584
3584
|
[name: string]: unknown;
|
|
3585
3585
|
};
|
|
3586
3586
|
content: {
|
|
3587
|
+
"application/json": {
|
|
3588
|
+
name?: string;
|
|
3589
|
+
} & {
|
|
3590
|
+
[key: string]: unknown;
|
|
3591
|
+
};
|
|
3587
3592
|
"application/gzip": string;
|
|
3588
3593
|
"text/markdown": string;
|
|
3589
3594
|
};
|
package/out/scriptRunner.js
CHANGED
|
@@ -94,7 +94,9 @@ async function execShell(cwd, cmd, logger) {
|
|
|
94
94
|
// todo use spawn instead of exec to allow streaming to the console
|
|
95
95
|
child_process.exec(cmd, { cwd: cwd.fsPath, env: process.env }, (error, stdout, stderr) => {
|
|
96
96
|
logger.log(stdout);
|
|
97
|
-
|
|
97
|
+
if (stderr) {
|
|
98
|
+
logger.error(stderr);
|
|
99
|
+
}
|
|
98
100
|
if (error) {
|
|
99
101
|
reject(error);
|
|
100
102
|
}
|