@microtronics/studio-cli 0.9.1 → 0.11.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 +28 -0
- package/dist/studio-cli.d.ts +2342 -16
- package/out/api.d.ts.map +1 -1
- package/out/api.js +7 -1
- package/out/cliFS.js +1 -1
- package/out/dde/fileGenerators/xml.d.ts.map +1 -1
- package/out/dde/fileGenerators/xml.js +2 -29
- package/out/defaultFiles.d.ts.map +1 -1
- package/out/defaultFiles.js +16 -0
- package/out/globals.d.ts.map +1 -1
- package/out/globals.js +9 -0
- package/out/helper.d.ts.map +1 -1
- package/out/helper.js +41 -0
- package/out/main.js +45 -52
- package/out/manifest.d.ts.map +1 -1
- package/out/manifest.js +235 -2
- package/out/package/apm.d.ts.map +1 -0
- package/out/package/apm.js +264 -0
- package/out/package/library.d.ts.map +1 -0
- package/out/package/library.js +162 -0
- package/out/package/package.d.ts.map +1 -0
- package/out/package/package.js +219 -0
- package/out/registryAPI.d.ts.map +1 -1
- package/out/registryAPI.js +188 -1
- package/out/scriptRunner.d.ts.map +1 -1
- package/out/scriptRunner.js +3 -2
- package/out/typings/registry.d.ts.map +1 -1
- package/package.json +76 -73
- package/studio-cli-app +4 -0
- package/studio-cli-lib +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## 0.11.0 (2025-01-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **studio-cli:** allow publishing a library project to the registry ([0eabc7d](https://bitbucket.org/microtronics-core/vscode-studio/commits/0eabc7dbf335dcd61a907eab3b56c2b4ba30f57b))
|
|
9
|
+
* **studio-cli:** validate the given version string within the studio.json ([4cb429c](https://bitbucket.org/microtronics-core/vscode-studio/commits/4cb429c37cda38cd3888b868f95efe223c11aa61))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **studio-cli:** consider during manifest validation if it is a library project ([b879aae](https://bitbucket.org/microtronics-core/vscode-studio/commits/b879aae85bced2b3bc874879ba8fa92a9928d0ae))
|
|
15
|
+
* **studio-cli:** forward studio environment to library publish function ([ba8f79f](https://bitbucket.org/microtronics-core/vscode-studio/commits/ba8f79f0fc9d05c92759a6d1ef4a11f690faba38))
|
|
16
|
+
|
|
17
|
+
## 0.10.0 (2025-01-14)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **studio-cli:** allow switching apm release to semver with lucky environment ([bd24f41](https://bitbucket.org/microtronics-core/vscode-studio/commits/bd24f417d9ac844ab92cf7e3ede6853ab9f1a9c5))
|
|
23
|
+
* **studio-cli:** first working version that supports publishing an APM ([0dede3e](https://bitbucket.org/microtronics-core/vscode-studio/commits/0dede3eef94b0a046e4b6ef37d224233c0bbd69e))
|
|
24
|
+
* **studio-cli:** publish with semver when env is lucky ([7b8e2fa](https://bitbucket.org/microtronics-core/vscode-studio/commits/7b8e2fa15cd2de4faa21b582c9a609a15826489f))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* **studio-cli:** findFiles function had wrong working directory ([aba5b86](https://bitbucket.org/microtronics-core/vscode-studio/commits/aba5b869bfef8fbe0cd0274d6a6cc60a7c11f48a))
|
|
30
|
+
|
|
3
31
|
## 0.9.1 (2024-12-19)
|
|
4
32
|
|
|
5
33
|
## 0.9.0 (2024-12-19)
|