@microtronics/studio-cli 0.32.1 → 0.32.2

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 CHANGED
@@ -1,11 +1,18 @@
1
1
 
2
2
 
3
- ## 0.32.1 (2025-06-02)
3
+ ## 0.32.2 (2025-06-02)
4
4
 
5
5
 
6
6
  ### Bug Fixes
7
7
 
8
- * **studio-cli:** enable prerelease handling in semver range checks ([77f6720](https://bitbucket.org/microtronics-core/vscode-studio/commits/77f6720f643c0ad491fca1d0ac0ae37bae1fbbd4))
8
+ * **studio-cli:** improve semver validation in dependency check ([2238827](https://bitbucket.org/microtronics-core/vscode-studio/commits/2238827380cdbe56fa5798c6de50c284df4da4c7))
9
+
10
+ ## 0.32.1 (2025-06-02)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **studio-cli:** enable prerelease handling in semver range checks ([77f6720](https://bitbucket.org/microtronics-core/vscode-studio/commits/77f6720f643c0ad491fca1d0ac0ae37bae1fbbd4))
9
16
  * **studio-cli:** improve validation for project properties ([1cc8749](https://bitbucket.org/microtronics-core/vscode-studio/commits/1cc8749d2fa8bcea39605477fdc53480791f6c35))
10
17
 
11
18
  ## 0.32.0 (2025-05-23)
@@ -149,8 +149,8 @@ var Dependencies;
149
149
  const libraryPath = vscode_uri_1.Utils.joinPath(cwd, exports.LIB_DEPS_PATH, libraryName);
150
150
  try {
151
151
  const libraryManifest = await manifest_1.Manifest.read(libraryPath, fs);
152
- return (semver.eq(libraryManifest.version, cleanVersion) &&
153
- libraryManifest.publisher.toLowerCase() === publisherId.toLowerCase());
152
+ const gte = semver.gte(libraryManifest.version, cleanVersion);
153
+ return gte && libraryManifest.publisher.toLowerCase() === publisherId.toLowerCase();
154
154
  }
155
155
  catch (e) {
156
156
  // no manifest found or any other error -> trigger reinstall
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microtronics/studio-cli",
3
- "version": "0.32.1",
3
+ "version": "0.32.2",
4
4
  "description": "Microtronics Studio CLI Tool",
5
5
  "main": "./out/api.js",
6
6
  "typings": "./dist/studio-cli.d.ts",