@quenty/r15utils 13.17.4-canary.559.339cfa7.0 → 13.18.0-canary.0a5db80.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,20 +3,12 @@
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
- ## [13.17.4-canary.559.339cfa7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/r15utils@13.17.3...@quenty/r15utils@13.17.4-canary.559.339cfa7.0) (2025-05-10)
6
+ # [13.18.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/r15utils@13.17.2...@quenty/r15utils@13.18.0-canary.0a5db80.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Bug Fixes
10
10
 
11
- * Additional type checking updates ([05ba29a](https://github.com/Quenty/NevermoreEngine/commit/05ba29a03efc9f3feed74b34f1d9dfb237496214))
12
-
13
-
14
-
15
-
16
-
17
- ## [13.17.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/r15utils@13.17.2...@quenty/r15utils@13.17.3) (2025-04-10)
18
-
19
- **Note:** Version bump only for package @quenty/r15utils
11
+ * Additional type checking updates ([7e008c5](https://github.com/Quenty/NevermoreEngine/commit/7e008c58547bd00b5904e56541454a38c8d72ccc))
20
12
 
21
13
 
22
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/r15utils",
3
- "version": "13.17.4-canary.559.339cfa7.0",
3
+ "version": "13.18.0-canary.0a5db80.0",
4
4
  "description": "Utility methods for R15 Characters",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,12 +25,12 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/brio": "14.17.4-canary.559.339cfa7.0",
29
- "@quenty/instanceutils": "13.17.4-canary.559.339cfa7.0",
30
- "@quenty/loader": "10.8.4-canary.559.339cfa7.0"
28
+ "@quenty/brio": "14.18.0-canary.0a5db80.0",
29
+ "@quenty/instanceutils": "13.18.0-canary.0a5db80.0",
30
+ "@quenty/loader": "10.9.0-canary.0a5db80.0"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "gitHead": "339cfa778736f08768ed7305041f6221faa35bfc"
35
+ "gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
36
36
  }
@@ -6,10 +6,10 @@
6
6
 
7
7
  local require = require(script.Parent.loader).load(script)
8
8
 
9
+ local RxInstanceUtils = require("RxInstanceUtils")
10
+ local RxBrioUtils = require("RxBrioUtils")
9
11
  local Brio = require("Brio")
10
12
  local Observable = require("Observable")
11
- local RxBrioUtils = require("RxBrioUtils")
12
- local RxInstanceUtils = require("RxInstanceUtils")
13
13
 
14
14
  export type R15Side = "Left" | "Right"
15
15