@notask/unity-cli-tools 1.1.0-rc.1 → 1.1.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 CHANGED
@@ -1,3 +1,25 @@
1
+ ## [1.1.1](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.1.0...1.1.1) (2025-05-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **hot-fix:** re-import event modules ([36d1c00](https://github.com/NoTaskStudios/unity-cli-tools/commit/36d1c0011b663c88e321199ab953edc412b10ada))
7
+
8
+ # [1.1.0](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.7...1.1.0) (2025-05-04)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * access modifiers and catch execa errors ([78c7d26](https://github.com/NoTaskStudios/unity-cli-tools/commit/78c7d26e863fecfe6518384335f9f403cf4144e7))
14
+
15
+
16
+ ### Features
17
+
18
+ * **Hub:** Added Error track event for installers ([7333430](https://github.com/NoTaskStudios/unity-cli-tools/commit/7333430a87b2a306e0d9915f2d5bb60baf538698))
19
+ * **Hub:** Added install event emitter for hub events ([cb26730](https://github.com/NoTaskStudios/unity-cli-tools/commit/cb26730c94840218dbc6300573dd601003632a33))
20
+ * **Hub:** Added installer std parser to event emitter ([ffe57b4](https://github.com/NoTaskStudios/unity-cli-tools/commit/ffe57b4b09a1d921573351526df5e887b23875cf))
21
+ * **Hub:** Added types for installer event emitter ([f25e486](https://github.com/NoTaskStudios/unity-cli-tools/commit/f25e48611e0d7b8b49aafea4f0900f65e42cc079))
22
+
1
23
  # [1.1.0-rc.1](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.7...1.1.0-rc.1) (2025-05-04)
2
24
 
3
25
 
package/dist/cjs/index.js CHANGED
@@ -17,9 +17,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
17
17
  return (mod && mod.__esModule) ? mod : { "default": mod };
18
18
  };
19
19
  Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.UnityEditor = exports.UnityHub = void 0;
20
+ exports.UnityHubInstallerEvent = exports.UnityEditor = exports.UnityHub = void 0;
21
21
  var unityHub_ts_1 = require("./unityHub.js");
22
22
  Object.defineProperty(exports, "UnityHub", { enumerable: true, get: function () { return __importDefault(unityHub_ts_1).default; } });
23
23
  var unityEditor_ts_1 = require("./unityEditor.js");
24
24
  Object.defineProperty(exports, "UnityEditor", { enumerable: true, get: function () { return __importDefault(unityEditor_ts_1).default; } });
25
+ var hubEventEmitter_ts_1 = require("./events/hubEventEmitter.js");
26
+ Object.defineProperty(exports, "UnityHubInstallerEvent", { enumerable: true, get: function () { return hubEventEmitter_ts_1.UnityHubInstallerEvent; } });
25
27
  __exportStar(require("./types/unity.js"), exports);
@@ -1,3 +1,4 @@
1
1
  export { default as UnityHub } from "./unityHub.ts";
2
2
  export { default as UnityEditor } from "./unityEditor.ts";
3
+ export { UnityHubInstallerEvent } from "./events/hubEventEmitter.ts";
3
4
  export * from "./types/unity.ts";
package/dist/esm/index.js CHANGED
@@ -1,3 +1,4 @@
1
1
  export { default as UnityHub } from "./unityHub.js";
2
2
  export { default as UnityEditor } from "./unityEditor.js";
3
+ export { UnityHubInstallerEvent } from "./events/hubEventEmitter.js";
3
4
  export * from "./types/unity.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@notask/unity-cli-tools",
3
- "version": "1.1.0-rc.1",
3
+ "version": "1.1.1",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/esm/index.d.ts",