@microtronics/studio-cli 0.21.0 → 0.22.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 CHANGED
@@ -1,10 +1,24 @@
1
1
 
2
2
 
3
- ## 0.21.0 (2025-02-25)
3
+ ## 0.22.0 (2025-02-25)
4
4
 
5
5
 
6
6
  ### Features
7
7
 
8
+ * **studio-cli:** use semver api calls for `wynni` environment ([dcc6695](https://bitbucket.org/microtronics-core/vscode-studio/commits/dcc6695ecf7b76acea9d70f5d85b125167d4c874))
9
+
10
+ ## 0.21.1 (2025-02-25)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **studio-cli:** use correct env name `wynni` ([ac5f9c3](https://bitbucket.org/microtronics-core/vscode-studio/commits/ac5f9c3e32d212dab42a99ff228c243eaf4c001c))
16
+
17
+ ## 0.21.0 (2025-02-25)
18
+
19
+
20
+ ### Features
21
+
8
22
  * **studio-cli:** added publish option `--allowedBackends` ([7cf0873](https://bitbucket.org/microtronics-core/vscode-studio/commits/7cf08737bbc994fd16a3a76604a6550f3284df60))
9
23
 
10
24
  ## 0.20.0 (2025-02-25)
@@ -1890,7 +1890,7 @@ export declare namespace Globals {
1890
1890
  */
1891
1891
  export enum ENV {
1892
1892
  lucky = "lucky",
1893
- winny = "winny",
1893
+ wynni = "wynni",
1894
1894
  production = "production"
1895
1895
  }
1896
1896
  export interface Defines {
package/out/globals.js CHANGED
@@ -40,7 +40,7 @@ var Globals;
40
40
  let ENV;
41
41
  (function (ENV) {
42
42
  ENV["lucky"] = "lucky";
43
- ENV["winny"] = "winny";
43
+ ENV["wynni"] = "wynni";
44
44
  ENV["production"] = "production";
45
45
  })(ENV = Globals.ENV || (Globals.ENV = {}));
46
46
  /**
@@ -313,7 +313,7 @@ var Registry;
313
313
  * @param env
314
314
  */
315
315
  function headerBasedOnEnv(env) {
316
- if (env === globals_1.Globals.ENV.lucky) {
316
+ if ([globals_1.Globals.ENV.lucky, globals_1.Globals.ENV.wynni].includes(env)) {
317
317
  return { 'X-Semver': 'true' };
318
318
  }
319
319
  return {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microtronics/studio-cli",
3
- "version": "0.21.0",
3
+ "version": "0.22.0",
4
4
  "description": "Microtronics Studio CLI Tool",
5
5
  "main": "./out/api.js",
6
6
  "typings": "./dist/studio-cli.d.ts",