@notask/unity-cli-tools 1.2.0-rc.1 → 2.0.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.
Files changed (64) hide show
  1. package/.claude/settings.local.json +7 -0
  2. package/CHANGELOG.md +164 -164
  3. package/LICENSE +23 -23
  4. package/README.md +809 -347
  5. package/dist/cjs/errors/Result.js +76 -0
  6. package/dist/cjs/errors/UnityError.js +77 -0
  7. package/dist/cjs/errors/index.js +18 -0
  8. package/dist/cjs/events/hubEventEmitter.js +16 -16
  9. package/dist/cjs/events/hubEventParser.js +97 -27
  10. package/dist/cjs/events/patterns/implementations/bracketModulePattern.js +57 -0
  11. package/dist/cjs/events/patterns/implementations/errorPattern.js +99 -0
  12. package/dist/cjs/events/patterns/implementations/fallbackPattern.js +63 -0
  13. package/dist/cjs/events/patterns/implementations/index.js +9 -0
  14. package/dist/cjs/events/patterns/index.js +23 -0
  15. package/dist/cjs/events/patterns/patternRegistry.js +69 -0
  16. package/dist/cjs/events/patterns/statusNormalizer.js +280 -0
  17. package/dist/cjs/events/patterns/types.js +2 -0
  18. package/dist/cjs/index.js +8 -11
  19. package/dist/cjs/unityEditor.js +182 -230
  20. package/dist/cjs/unityHub.js +110 -85
  21. package/dist/cjs/utils/commandExecutor.js +8 -9
  22. package/dist/esm/errors/Result.d.ts +21 -0
  23. package/dist/esm/errors/Result.js +63 -0
  24. package/dist/esm/errors/UnityError.d.ts +36 -0
  25. package/dist/esm/errors/UnityError.js +64 -0
  26. package/dist/esm/errors/index.d.ts +2 -0
  27. package/dist/esm/errors/index.js +2 -0
  28. package/dist/esm/events/hubEventEmitter.d.ts +1 -1
  29. package/dist/esm/events/hubEventParser.d.ts +17 -3
  30. package/dist/esm/events/hubEventParser.js +97 -27
  31. package/dist/esm/events/patterns/implementations/bracketModulePattern.d.ts +11 -0
  32. package/dist/esm/events/patterns/implementations/bracketModulePattern.js +53 -0
  33. package/dist/esm/events/patterns/implementations/errorPattern.d.ts +22 -0
  34. package/dist/esm/events/patterns/implementations/errorPattern.js +95 -0
  35. package/dist/esm/events/patterns/implementations/fallbackPattern.d.ts +13 -0
  36. package/dist/esm/events/patterns/implementations/fallbackPattern.js +59 -0
  37. package/dist/esm/events/patterns/implementations/index.d.ts +3 -0
  38. package/dist/esm/events/patterns/implementations/index.js +3 -0
  39. package/dist/esm/events/patterns/index.d.ts +4 -0
  40. package/dist/esm/events/patterns/index.js +4 -0
  41. package/dist/esm/events/patterns/patternRegistry.d.ts +14 -0
  42. package/dist/esm/events/patterns/patternRegistry.js +65 -0
  43. package/dist/esm/events/patterns/statusNormalizer.d.ts +15 -0
  44. package/dist/esm/events/patterns/statusNormalizer.js +276 -0
  45. package/dist/esm/events/patterns/types.d.ts +30 -0
  46. package/dist/esm/events/patterns/types.js +1 -0
  47. package/dist/esm/index.d.ts +5 -6
  48. package/dist/esm/index.js +1 -2
  49. package/dist/esm/unityEditor.d.ts +11 -15
  50. package/dist/esm/unityEditor.js +196 -244
  51. package/dist/esm/unityHub.d.ts +13 -11
  52. package/dist/esm/unityHub.js +108 -83
  53. package/dist/esm/utils/commandExecutor.d.ts +4 -3
  54. package/dist/esm/utils/commandExecutor.js +8 -9
  55. package/package.json +70 -70
  56. package/sandbox/index.js +51 -0
  57. package/sandbox/node_modules/.package-lock.json +10495 -0
  58. package/sandbox/package.json +13 -0
  59. package/dist/cjs/configs/unityConfig.js +0 -74
  60. package/dist/cjs/unityTemplates.js +0 -29
  61. package/dist/esm/configs/unityConfig.d.ts +0 -25
  62. package/dist/esm/configs/unityConfig.js +0 -68
  63. package/dist/esm/unityTemplates.d.ts +0 -10
  64. package/dist/esm/unityTemplates.js +0 -24
@@ -0,0 +1,7 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(npm run build:*)"
5
+ ]
6
+ }
7
+ }
package/CHANGELOG.md CHANGED
@@ -1,164 +1,164 @@
1
- # [1.2.0-rc.1](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.1.2...1.2.0-rc.1) (2025-05-08)
2
-
3
-
4
- ### Bug Fixes
5
-
6
- * **Hub:** Remove hubPath field ([9b1b737](https://github.com/NoTaskStudios/unity-cli-tools/commit/9b1b737d90c91322872d715f86c9f7f53ae8c1ea))
7
- * put return type on local functions ([1eef3de](https://github.com/NoTaskStudios/unity-cli-tools/commit/1eef3de26b03481cfc5476caa2d13a62b6fe0bdb))
8
-
9
-
10
- ### Features
11
-
12
- * **Config:** Create a entity to handle configurations ([ef8f34f](https://github.com/NoTaskStudios/unity-cli-tools/commit/ef8f34f143e2dcb1f1585588df23033ac68d3d80))
13
- * **Config:** Added Template path and interfaces ([7ec4de0](https://github.com/NoTaskStudios/unity-cli-tools/commit/7ec4de0d9a22c50094d1ed027d3fa068245a9f73))
14
- * **Config:** Create unity path types ([5b329bb](https://github.com/NoTaskStudios/unity-cli-tools/commit/5b329bb621b715bfaa63ead294d71c7bc8510fe2))
15
- * **Editor:** Added cloneFromTemplate function ([149c389](https://github.com/NoTaskStudios/unity-cli-tools/commit/149c389c3421a8d88b06cdc32e690afa40b68f27))
16
- * **Template:** Added UnityTemplates class for editor templates ([fca3256](https://github.com/NoTaskStudios/unity-cli-tools/commit/fca3256a14c4f8a8af701ced2f6449798f196020))
17
- * **Template:** Template path configuration ([1067deb](https://github.com/NoTaskStudios/unity-cli-tools/commit/1067deb516d3ef7e4d5bb6f26298be44f3763774))
18
-
19
- ## [1.1.2](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.1.1...1.1.2) (2025-05-04)
20
-
21
-
22
- ### Bug Fixes
23
-
24
- * **hot-fix:** completed promise as get ([22f152a](https://github.com/NoTaskStudios/unity-cli-tools/commit/22f152a5da016371719649593a96005a636fa9c5))
25
-
26
- ## [1.1.1](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.1.0...1.1.1) (2025-05-04)
27
-
28
-
29
- ### Bug Fixes
30
-
31
- * **hot-fix:** re-import event modules ([36d1c00](https://github.com/NoTaskStudios/unity-cli-tools/commit/36d1c0011b663c88e321199ab953edc412b10ada))
32
-
33
- # [1.1.0](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.7...1.1.0) (2025-05-04)
34
-
35
-
36
- ### Bug Fixes
37
-
38
- * access modifiers and catch execa errors ([78c7d26](https://github.com/NoTaskStudios/unity-cli-tools/commit/78c7d26e863fecfe6518384335f9f403cf4144e7))
39
-
40
-
41
- ### Features
42
-
43
- * **Hub:** Added Error track event for installers ([7333430](https://github.com/NoTaskStudios/unity-cli-tools/commit/7333430a87b2a306e0d9915f2d5bb60baf538698))
44
- * **Hub:** Added install event emitter for hub events ([cb26730](https://github.com/NoTaskStudios/unity-cli-tools/commit/cb26730c94840218dbc6300573dd601003632a33))
45
- * **Hub:** Added installer std parser to event emitter ([ffe57b4](https://github.com/NoTaskStudios/unity-cli-tools/commit/ffe57b4b09a1d921573351526df5e887b23875cf))
46
- * **Hub:** Added types for installer event emitter ([f25e486](https://github.com/NoTaskStudios/unity-cli-tools/commit/f25e48611e0d7b8b49aafea4f0900f65e42cc079))
47
-
48
- # [1.1.0-rc.1](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.7...1.1.0-rc.1) (2025-05-04)
49
-
50
-
51
- ### Bug Fixes
52
-
53
- * access modifiers and catch execa errors ([78c7d26](https://github.com/NoTaskStudios/unity-cli-tools/commit/78c7d26e863fecfe6518384335f9f403cf4144e7))
54
-
55
-
56
- ### Features
57
-
58
- * **Hub:** Added Error track event for installers ([7333430](https://github.com/NoTaskStudios/unity-cli-tools/commit/7333430a87b2a306e0d9915f2d5bb60baf538698))
59
- * **Hub:** Added install event emitter for hub events ([cb26730](https://github.com/NoTaskStudios/unity-cli-tools/commit/cb26730c94840218dbc6300573dd601003632a33))
60
- * **Hub:** Added installer std parser to event emitter ([ffe57b4](https://github.com/NoTaskStudios/unity-cli-tools/commit/ffe57b4b09a1d921573351526df5e887b23875cf))
61
- * **Hub:** Added types for installer event emitter ([f25e486](https://github.com/NoTaskStudios/unity-cli-tools/commit/f25e48611e0d7b8b49aafea4f0900f65e42cc079))
62
-
63
- ## [1.0.7](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.6...1.0.7) (2025-05-03)
64
-
65
-
66
- ### Bug Fixes
67
-
68
- * **Editor:** hotfix import error from UnityEditor security ([f7cf9b8](https://github.com/NoTaskStudios/unity-cli-tools/commit/f7cf9b886e63df9e7ad2c10ac3351f42a73b9c81))
69
- * extended CommandOptions with std events ([8198f9f](https://github.com/NoTaskStudios/unity-cli-tools/commit/8198f9f5fec330a389405194412310d22b3ab785))
70
- * **Hub:** simple stream output feedback ([ba21b46](https://github.com/NoTaskStudios/unity-cli-tools/commit/ba21b462f3eee168909ae54003936e4c551bcaed)), closes [#13](https://github.com/NoTaskStudios/unity-cli-tools/issues/13)
71
- * subprocess send streams stdout and stderr ([4348611](https://github.com/NoTaskStudios/unity-cli-tools/commit/4348611f96da5fbbed39895ac587a5e6caad1d03))
72
-
73
- ## [1.0.6](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.5...1.0.6) (2025-04-30)
74
-
75
-
76
- ### Bug Fixes
77
-
78
- * **Hub:** adjust in default params values ([ca12050](https://github.com/NoTaskStudios/unity-cli-tools/commit/ca120505433e4c6c01c54e1917de564a4883416b))
79
- * **Hub:** auto detect system arch when arg no passed ([1e6ff27](https://github.com/NoTaskStudios/unity-cli-tools/commit/1e6ff27ca37a70014823693489447d8cd2ada9b9))
80
- * **Hub:** Remove some class members ([78c37e2](https://github.com/NoTaskStudios/unity-cli-tools/commit/78c37e2b83197e6d8445bbdeeb23ff4c457eedd0))
81
-
82
- ## [1.0.6-rc.2](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.6-rc.1...1.0.6-rc.2) (2025-04-30)
83
-
84
-
85
- ### Bug Fixes
86
-
87
- * **Hub:** auto detect system arch when arg no passed ([1e6ff27](https://github.com/NoTaskStudios/unity-cli-tools/commit/1e6ff27ca37a70014823693489447d8cd2ada9b9))
88
-
89
- ## [1.0.6-rc.1](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.5...1.0.6-rc.1) (2025-04-30)
90
-
91
-
92
- ### Bug Fixes
93
-
94
- * **Hub:** adjust in default params values ([ca12050](https://github.com/NoTaskStudios/unity-cli-tools/commit/ca120505433e4c6c01c54e1917de564a4883416b))
95
- * **Hub:** Remove some class members ([78c37e2](https://github.com/NoTaskStudios/unity-cli-tools/commit/78c37e2b83197e6d8445bbdeeb23ff4c457eedd0))
96
-
97
- ## [1.0.5](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.4...1.0.5) (2025-04-29)
98
-
99
-
100
- ### Bug Fixes
101
-
102
- * **Editor:** Force hubIPC and usehub to add projects ([1da532a](https://github.com/NoTaskStudios/unity-cli-tools/commit/1da532a5db4cb9d1e7404861e570633b4661be99))
103
-
104
- ## [1.0.4](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.3...1.0.4) (2025-04-29)
105
-
106
-
107
- ### Bug Fixes
108
-
109
- * **Hub:** get changeset for editor version installation ([ab4d9ad](https://github.com/NoTaskStudios/unity-cli-tools/commit/ab4d9adaeb3909bf44de5bdbbdde5e9c3ced297f))
110
-
111
- ## [1.0.3](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.2...1.0.3) (2025-04-28)
112
-
113
-
114
- ### Bug Fixes
115
-
116
- * change type naming ([0e32839](https://github.com/NoTaskStudios/unity-cli-tools/commit/0e32839146eaa6072dd5f5c54e01033b9a7e1ab6))
117
- * **Editor:** fix logging sensitive information ([504d4b6](https://github.com/NoTaskStudios/unity-cli-tools/commit/504d4b6caaaa62278c68f13193d8a46c38bb3df1))
118
-
119
- ## [1.0.2](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.1...1.0.2) (2025-04-23)
120
-
121
-
122
- ### Bug Fixes
123
-
124
- * **Build:** wrong modules references ([c5ec8c3](https://github.com/NoTaskStudios/unity-cli-tools/commit/c5ec8c3e295b147703bd07029d28e081daf78c86))
125
- * **Hub:** way to get hub versions by filtering ([ae7b497](https://github.com/NoTaskStudios/unity-cli-tools/commit/ae7b49742c64c816b3b147ef7feeebf5386ca54c))
126
-
127
- ## [1.0.1](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.0...1.0.1) (2025-04-23)
128
-
129
-
130
- ### Bug Fixes
131
-
132
- * **Build:** outputting correct output folder ([8c20b2c](https://github.com/NoTaskStudios/unity-cli-tools/commit/8c20b2c6db2ff83fc37e88ce8e95fc3fce816418))
133
-
134
- # 1.0.0 (2025-04-22)
135
-
136
-
137
- ### Bug Fixes
138
-
139
- * **Hub:** Renaming the 'moduleId' parameter to 'modules' ([50384f4](https://github.com/NoTaskStudios/unity-cli-tools/commit/50384f41a2c58a18e2da135ffa5ae357a6e20ca7))
140
-
141
-
142
- ### Features
143
-
144
- * **Command:** Add a command executor on top execa ([8c25801](https://github.com/NoTaskStudios/unity-cli-tools/commit/8c25801f9a866a92bc95ebed9aa556c8a5574ede))
145
- * **Hub:** Add unity hub command line by code ([bffbdba](https://github.com/NoTaskStudios/unity-cli-tools/commit/bffbdbaf24bb505482ab51d47214f1e9c5e7942c))
146
- * **Types:** Add unity types for hub and editor ([23a7b41](https://github.com/NoTaskStudios/unity-cli-tools/commit/23a7b4172f5d3b80876aaf043b961759cbe4274c))
147
-
148
- # 1.0.0-rc.1 (2025-04-22)
149
-
150
-
151
- ### Bug Fixes
152
-
153
- * **Hub:** Renaming the 'moduleId' parameter to 'modules' ([50384f4](https://github.com/NoTaskStudios/unity-cli-tools/commit/50384f41a2c58a18e2da135ffa5ae357a6e20ca7))
154
-
155
-
156
- ### Features
157
-
158
- * **Command:** Add a command executor on top execa ([8c25801](https://github.com/NoTaskStudios/unity-cli-tools/commit/8c25801f9a866a92bc95ebed9aa556c8a5574ede))
159
- * **Hub:** Add unity hub command line by code ([bffbdba](https://github.com/NoTaskStudios/unity-cli-tools/commit/bffbdbaf24bb505482ab51d47214f1e9c5e7942c))
160
- * **Types:** Add unity types for hub and editor ([23a7b41](https://github.com/NoTaskStudios/unity-cli-tools/commit/23a7b4172f5d3b80876aaf043b961759cbe4274c))
161
-
162
- # Changelog
163
-
164
- All notable changes to this project will be documented in this file.
1
+ # [2.0.0](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.1.2...2.0.0) (2025-12-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **unityHub:** correct typo in error message ([b5a722b](https://github.com/NoTaskStudios/unity-cli-tools/commit/b5a722b9243a98523dc4f5679ab1c8323a7f5070))
7
+
8
+
9
+ ### Features
10
+
11
+ * Export error utilities from package entrypoint ([278f629](https://github.com/NoTaskStudios/unity-cli-tools/commit/278f629e63b701435a2a42513004afe5e986d98a))
12
+ * Introduce Result<T, E> type and UnityError hierarchy ([74b91ba](https://github.com/NoTaskStudios/unity-cli-tools/commit/74b91baa0a84f8b512076aaee6a34d3c7f80525c))
13
+
14
+
15
+ ### BREAKING CHANGES
16
+
17
+ * Functions that previously threw exceptions now return `Result<T, E>`.
18
+
19
+ ## [1.1.2](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.1.1...1.1.2) (2025-05-04)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * **hot-fix:** completed promise as get ([22f152a](https://github.com/NoTaskStudios/unity-cli-tools/commit/22f152a5da016371719649593a96005a636fa9c5))
25
+
26
+ ## [1.1.1](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.1.0...1.1.1) (2025-05-04)
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * **hot-fix:** re-import event modules ([36d1c00](https://github.com/NoTaskStudios/unity-cli-tools/commit/36d1c0011b663c88e321199ab953edc412b10ada))
32
+
33
+ # [1.1.0](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.7...1.1.0) (2025-05-04)
34
+
35
+
36
+ ### Bug Fixes
37
+
38
+ * access modifiers and catch execa errors ([78c7d26](https://github.com/NoTaskStudios/unity-cli-tools/commit/78c7d26e863fecfe6518384335f9f403cf4144e7))
39
+
40
+
41
+ ### Features
42
+
43
+ * **Hub:** Added Error track event for installers ([7333430](https://github.com/NoTaskStudios/unity-cli-tools/commit/7333430a87b2a306e0d9915f2d5bb60baf538698))
44
+ * **Hub:** Added install event emitter for hub events ([cb26730](https://github.com/NoTaskStudios/unity-cli-tools/commit/cb26730c94840218dbc6300573dd601003632a33))
45
+ * **Hub:** Added installer std parser to event emitter ([ffe57b4](https://github.com/NoTaskStudios/unity-cli-tools/commit/ffe57b4b09a1d921573351526df5e887b23875cf))
46
+ * **Hub:** Added types for installer event emitter ([f25e486](https://github.com/NoTaskStudios/unity-cli-tools/commit/f25e48611e0d7b8b49aafea4f0900f65e42cc079))
47
+
48
+ # [1.1.0-rc.1](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.7...1.1.0-rc.1) (2025-05-04)
49
+
50
+
51
+ ### Bug Fixes
52
+
53
+ * access modifiers and catch execa errors ([78c7d26](https://github.com/NoTaskStudios/unity-cli-tools/commit/78c7d26e863fecfe6518384335f9f403cf4144e7))
54
+
55
+
56
+ ### Features
57
+
58
+ * **Hub:** Added Error track event for installers ([7333430](https://github.com/NoTaskStudios/unity-cli-tools/commit/7333430a87b2a306e0d9915f2d5bb60baf538698))
59
+ * **Hub:** Added install event emitter for hub events ([cb26730](https://github.com/NoTaskStudios/unity-cli-tools/commit/cb26730c94840218dbc6300573dd601003632a33))
60
+ * **Hub:** Added installer std parser to event emitter ([ffe57b4](https://github.com/NoTaskStudios/unity-cli-tools/commit/ffe57b4b09a1d921573351526df5e887b23875cf))
61
+ * **Hub:** Added types for installer event emitter ([f25e486](https://github.com/NoTaskStudios/unity-cli-tools/commit/f25e48611e0d7b8b49aafea4f0900f65e42cc079))
62
+
63
+ ## [1.0.7](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.6...1.0.7) (2025-05-03)
64
+
65
+
66
+ ### Bug Fixes
67
+
68
+ * **Editor:** hotfix import error from UnityEditor security ([f7cf9b8](https://github.com/NoTaskStudios/unity-cli-tools/commit/f7cf9b886e63df9e7ad2c10ac3351f42a73b9c81))
69
+ * extended CommandOptions with std events ([8198f9f](https://github.com/NoTaskStudios/unity-cli-tools/commit/8198f9f5fec330a389405194412310d22b3ab785))
70
+ * **Hub:** simple stream output feedback ([ba21b46](https://github.com/NoTaskStudios/unity-cli-tools/commit/ba21b462f3eee168909ae54003936e4c551bcaed)), closes [#13](https://github.com/NoTaskStudios/unity-cli-tools/issues/13)
71
+ * subprocess send streams stdout and stderr ([4348611](https://github.com/NoTaskStudios/unity-cli-tools/commit/4348611f96da5fbbed39895ac587a5e6caad1d03))
72
+
73
+ ## [1.0.6](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.5...1.0.6) (2025-04-30)
74
+
75
+
76
+ ### Bug Fixes
77
+
78
+ * **Hub:** adjust in default params values ([ca12050](https://github.com/NoTaskStudios/unity-cli-tools/commit/ca120505433e4c6c01c54e1917de564a4883416b))
79
+ * **Hub:** auto detect system arch when arg no passed ([1e6ff27](https://github.com/NoTaskStudios/unity-cli-tools/commit/1e6ff27ca37a70014823693489447d8cd2ada9b9))
80
+ * **Hub:** Remove some class members ([78c37e2](https://github.com/NoTaskStudios/unity-cli-tools/commit/78c37e2b83197e6d8445bbdeeb23ff4c457eedd0))
81
+
82
+ ## [1.0.6-rc.2](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.6-rc.1...1.0.6-rc.2) (2025-04-30)
83
+
84
+
85
+ ### Bug Fixes
86
+
87
+ * **Hub:** auto detect system arch when arg no passed ([1e6ff27](https://github.com/NoTaskStudios/unity-cli-tools/commit/1e6ff27ca37a70014823693489447d8cd2ada9b9))
88
+
89
+ ## [1.0.6-rc.1](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.5...1.0.6-rc.1) (2025-04-30)
90
+
91
+
92
+ ### Bug Fixes
93
+
94
+ * **Hub:** adjust in default params values ([ca12050](https://github.com/NoTaskStudios/unity-cli-tools/commit/ca120505433e4c6c01c54e1917de564a4883416b))
95
+ * **Hub:** Remove some class members ([78c37e2](https://github.com/NoTaskStudios/unity-cli-tools/commit/78c37e2b83197e6d8445bbdeeb23ff4c457eedd0))
96
+
97
+ ## [1.0.5](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.4...1.0.5) (2025-04-29)
98
+
99
+
100
+ ### Bug Fixes
101
+
102
+ * **Editor:** Force hubIPC and usehub to add projects ([1da532a](https://github.com/NoTaskStudios/unity-cli-tools/commit/1da532a5db4cb9d1e7404861e570633b4661be99))
103
+
104
+ ## [1.0.4](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.3...1.0.4) (2025-04-29)
105
+
106
+
107
+ ### Bug Fixes
108
+
109
+ * **Hub:** get changeset for editor version installation ([ab4d9ad](https://github.com/NoTaskStudios/unity-cli-tools/commit/ab4d9adaeb3909bf44de5bdbbdde5e9c3ced297f))
110
+
111
+ ## [1.0.3](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.2...1.0.3) (2025-04-28)
112
+
113
+
114
+ ### Bug Fixes
115
+
116
+ * change type naming ([0e32839](https://github.com/NoTaskStudios/unity-cli-tools/commit/0e32839146eaa6072dd5f5c54e01033b9a7e1ab6))
117
+ * **Editor:** fix logging sensitive information ([504d4b6](https://github.com/NoTaskStudios/unity-cli-tools/commit/504d4b6caaaa62278c68f13193d8a46c38bb3df1))
118
+
119
+ ## [1.0.2](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.1...1.0.2) (2025-04-23)
120
+
121
+
122
+ ### Bug Fixes
123
+
124
+ * **Build:** wrong modules references ([c5ec8c3](https://github.com/NoTaskStudios/unity-cli-tools/commit/c5ec8c3e295b147703bd07029d28e081daf78c86))
125
+ * **Hub:** way to get hub versions by filtering ([ae7b497](https://github.com/NoTaskStudios/unity-cli-tools/commit/ae7b49742c64c816b3b147ef7feeebf5386ca54c))
126
+
127
+ ## [1.0.1](https://github.com/NoTaskStudios/unity-cli-tools/compare/1.0.0...1.0.1) (2025-04-23)
128
+
129
+
130
+ ### Bug Fixes
131
+
132
+ * **Build:** outputting correct output folder ([8c20b2c](https://github.com/NoTaskStudios/unity-cli-tools/commit/8c20b2c6db2ff83fc37e88ce8e95fc3fce816418))
133
+
134
+ # 1.0.0 (2025-04-22)
135
+
136
+
137
+ ### Bug Fixes
138
+
139
+ * **Hub:** Renaming the 'moduleId' parameter to 'modules' ([50384f4](https://github.com/NoTaskStudios/unity-cli-tools/commit/50384f41a2c58a18e2da135ffa5ae357a6e20ca7))
140
+
141
+
142
+ ### Features
143
+
144
+ * **Command:** Add a command executor on top execa ([8c25801](https://github.com/NoTaskStudios/unity-cli-tools/commit/8c25801f9a866a92bc95ebed9aa556c8a5574ede))
145
+ * **Hub:** Add unity hub command line by code ([bffbdba](https://github.com/NoTaskStudios/unity-cli-tools/commit/bffbdbaf24bb505482ab51d47214f1e9c5e7942c))
146
+ * **Types:** Add unity types for hub and editor ([23a7b41](https://github.com/NoTaskStudios/unity-cli-tools/commit/23a7b4172f5d3b80876aaf043b961759cbe4274c))
147
+
148
+ # 1.0.0-rc.1 (2025-04-22)
149
+
150
+
151
+ ### Bug Fixes
152
+
153
+ * **Hub:** Renaming the 'moduleId' parameter to 'modules' ([50384f4](https://github.com/NoTaskStudios/unity-cli-tools/commit/50384f41a2c58a18e2da135ffa5ae357a6e20ca7))
154
+
155
+
156
+ ### Features
157
+
158
+ * **Command:** Add a command executor on top execa ([8c25801](https://github.com/NoTaskStudios/unity-cli-tools/commit/8c25801f9a866a92bc95ebed9aa556c8a5574ede))
159
+ * **Hub:** Add unity hub command line by code ([bffbdba](https://github.com/NoTaskStudios/unity-cli-tools/commit/bffbdbaf24bb505482ab51d47214f1e9c5e7942c))
160
+ * **Types:** Add unity types for hub and editor ([23a7b41](https://github.com/NoTaskStudios/unity-cli-tools/commit/23a7b4172f5d3b80876aaf043b961759cbe4274c))
161
+
162
+ # Changelog
163
+
164
+ All notable changes to this project will be documented in this file.
package/LICENSE CHANGED
@@ -1,23 +1,23 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2022-2025 NoTask Studios, LTD.
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the
7
- Software), to deal
8
- in the Software without restriction, including without limitation the rights
9
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- copies of the Software, and to permit persons to whom the Software is
11
- furnished to do so, subject to the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be included in all
14
- copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED AS
17
- IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
- SOFTWARE.
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022-2025 NoTask Studios, LTD.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the
7
+ Software), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED AS
17
+ IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ SOFTWARE.