@microtronics/studio-cli 0.31.0 → 0.31.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 -5
- package/out/package/apm.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
## 0.31.
|
|
3
|
+
## 0.31.1 (2025-05-12)
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
###
|
|
6
|
+
### Bug Fixes
|
|
7
7
|
|
|
8
|
-
*
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
* **studio-cli:** correct APM part check for 'blo' files ([a4fdcde](https://bitbucket.org/microtronics-core/vscode-studio/commits/a4fdcde0b3a1a28e073af54934292e9b1734ad66))
|
|
9
|
+
|
|
10
|
+
## 0.31.0 (2025-05-05)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* replace tarballjs with @gera2ld/tarjs ([b32454e](https://bitbucket.org/microtronics-core/vscode-studio/commits/b32454e04a5cd8f21ebb1e91f75fbe062fc593d8))
|
|
16
|
+
* **studio-cli:** add package path autodetection with "*" ([868b035](https://bitbucket.org/microtronics-core/vscode-studio/commits/868b03564dc9e3b31eb279d72826b17f1333503b))
|
|
17
|
+
* **studio-cli:** add support for publishing from archive ([79ef977](https://bitbucket.org/microtronics-core/vscode-studio/commits/79ef97783a56ce440e53e82dabd621db65c54637))
|
|
11
18
|
* **studio-cli:** support library publishing from package ([c731637](https://bitbucket.org/microtronics-core/vscode-studio/commits/c731637960a4de698eec5447005287a16b4cf73a))
|
|
12
19
|
|
|
13
20
|
## 0.30.0 (2025-05-05)
|
package/out/package/apm.js
CHANGED
|
@@ -136,7 +136,7 @@ var APM;
|
|
|
136
136
|
apmBuffer.append(`bin/dfiles/${vscode_uri_1.Utils.basename(fileName)}`, dfileBlob);
|
|
137
137
|
}
|
|
138
138
|
// handle blo files
|
|
139
|
-
if (await manifest_1.Manifest.isApmPartEnabled(cwd, fs, APM.Part.
|
|
139
|
+
if (await manifest_1.Manifest.isApmPartEnabled(cwd, fs, APM.Part.blo, manifest)) {
|
|
140
140
|
// get files in blo dir
|
|
141
141
|
await insertRelativePathFilesToBuffer(cwd, fs, apmBuffer, defaultFiles_1.DefaultFiles.filePaths.dist.bloPath, 'bin/blo');
|
|
142
142
|
}
|