@quenty/binder 14.25.7-canary.ba2274e.0 → 14.25.7

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,7 +3,7 @@
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
- ## [14.25.7-canary.ba2274e.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.25.6...@quenty/binder@14.25.7-canary.ba2274e.0) (2026-01-02)
6
+ ## [14.25.7](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.25.6...@quenty/binder@14.25.7) (2026-01-03)
7
7
 
8
8
 
9
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/binder",
3
- "version": "14.25.7-canary.ba2274e.0",
3
+ "version": "14.25.7",
4
4
  "description": "Utility object to Bind a class to Roblox object, and associated helper methods",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,22 +25,22 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "10.9.0",
29
- "@quenty/brio": "14.20.4",
30
- "@quenty/canceltoken": "11.13.3",
31
- "@quenty/instanceutils": "13.20.5",
32
- "@quenty/linkutils": "13.20.5",
33
- "@quenty/loader": "10.9.0",
34
- "@quenty/maid": "3.5.0",
35
- "@quenty/promise": "10.12.3",
36
- "@quenty/rx": "13.20.3",
37
- "@quenty/servicebag": "11.13.3",
38
- "@quenty/signal": "7.11.2",
39
- "@quenty/table": "3.8.0",
40
- "@quenty/valueobject": "13.21.6"
28
+ "@quenty/baseobject": "^10.9.1",
29
+ "@quenty/brio": "^14.20.5",
30
+ "@quenty/canceltoken": "^11.13.4",
31
+ "@quenty/instanceutils": "^13.20.6",
32
+ "@quenty/linkutils": "^13.20.6",
33
+ "@quenty/loader": "^10.9.1",
34
+ "@quenty/maid": "^3.5.1",
35
+ "@quenty/promise": "^10.12.4",
36
+ "@quenty/rx": "^13.20.4",
37
+ "@quenty/servicebag": "^11.13.4",
38
+ "@quenty/signal": "^7.11.3",
39
+ "@quenty/table": "^3.8.0",
40
+ "@quenty/valueobject": "^13.21.7"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "ba2274ec070356518a157d80f912b05de9f74451"
45
+ "gitHead": "44e41814ddc3c14c3879320a10ed2d8e88103a4c"
46
46
  }
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Provides a basis for binderGroups that can be retrieved anywhere
3
4
  @class BinderGroupProvider
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Provides a basis for binders that can be retrieved anywhere
3
4
  @class BinderProvider
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class BinderProvider.spec.lua
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local Binder = require("Binder")
9
11
  local BinderProvider = require("BinderProvider")
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Tracks a parent bound to a specific binder
3
4
  @class BoundAncestorTracker
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Tracks a parent bound to a specific binder
3
4
  @class BoundParentTracker