@notask/unity-cli-tools 1.1.0 → 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 +7 -0
- package/dist/cjs/index.js +3 -1
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
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
|
+
|
|
1
8
|
# [1.1.0](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.7...1.1.0) (2025-05-04)
|
|
2
9
|
|
|
3
10
|
|
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);
|
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED