@quenty/toolutils 1.3.3 → 1.3.4-canary.11a5dcf.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
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.3.4-canary.11a5dcf.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/toolutils@1.3.3...@quenty/toolutils@1.3.4-canary.11a5dcf.0) (2025-05-10)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Additional type checking updates ([05ba29a](https://github.com/Quenty/NevermoreEngine/commit/05ba29a03efc9f3feed74b34f1d9dfb237496214))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.3.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/toolutils@1.3.2...@quenty/toolutils@1.3.3) (2025-04-10)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/toolutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/toolutils",
3
- "version": "1.3.3",
3
+ "version": "1.3.4-canary.11a5dcf.0",
4
4
  "description": "Utility methods for tools",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,13 +25,13 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/brio": "^14.17.3",
29
- "@quenty/instanceutils": "^13.17.3",
30
- "@quenty/loader": "^10.8.3",
31
- "@quenty/rx": "^13.17.3"
28
+ "@quenty/brio": "14.17.4-canary.11a5dcf.0",
29
+ "@quenty/instanceutils": "13.17.4-canary.11a5dcf.0",
30
+ "@quenty/loader": "10.8.4-canary.11a5dcf.0",
31
+ "@quenty/rx": "13.17.4-canary.11a5dcf.0"
32
32
  },
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "b06c070ae91d5dab7bd8de6e290ad2caabb15d8f"
36
+ "gitHead": "11a5dcf7d4c7a0bfbf3337e97d30e8346ea09d3f"
37
37
  }
@@ -5,10 +5,10 @@
5
5
 
6
6
  local require = require(script.Parent.loader).load(script)
7
7
 
8
- local RxInstanceUtils = require("RxInstanceUtils")
8
+ local Brio = require("Brio")
9
+ local Observable = require("Observable")
9
10
  local RxBrioUtils = require("RxBrioUtils")
10
- local _Observable = require("Observable")
11
- local _Brio = require("Brio")
11
+ local RxInstanceUtils = require("RxInstanceUtils")
12
12
 
13
13
  local RxToolUtils = {}
14
14
 
@@ -18,7 +18,7 @@ local RxToolUtils = {}
18
18
  @param tool Instance
19
19
  @return Observable<Brio<Humanoid>>
20
20
  ]=]
21
- function RxToolUtils.observeEquippedHumanoidBrio(tool: Tool): _Observable.Observable<_Brio.Brio<Humanoid>>
21
+ function RxToolUtils.observeEquippedHumanoidBrio(tool: Tool): Observable.Observable<Brio.Brio<Humanoid>>
22
22
  assert(typeof(tool) == "Instance", "Bad tool")
23
23
 
24
24
  return RxInstanceUtils.observePropertyBrio(tool, "Parent", function(parent)
@@ -30,4 +30,4 @@ function RxToolUtils.observeEquippedHumanoidBrio(tool: Tool): _Observable.Observ
30
30
  }) :: any
31
31
  end
32
32
 
33
- return RxToolUtils
33
+ return RxToolUtils