@quenty/binder 14.25.5 → 14.25.6-canary.b2b6e1d.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
+ ## [14.25.6-canary.b2b6e1d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.25.5...@quenty/binder@14.25.6-canary.b2b6e1d.0) (2025-12-30)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix dependencies missing in packages ([f294cf2](https://github.com/Quenty/NevermoreEngine/commit/f294cf2eec1dd0e95b09d4126287b812b77e1e72))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [14.25.5](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.25.4...@quenty/binder@14.25.5) (2025-12-29)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/binder
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/binder",
3
- "version": "14.25.5",
3
+ "version": "14.25.6-canary.b2b6e1d.0",
4
4
  "description": "Utility object to Bind a class to Roblox object, and associated helper methods",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,21 +25,21 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "^10.9.0",
29
- "@quenty/brio": "^14.20.3",
30
- "@quenty/canceltoken": "^11.13.2",
31
- "@quenty/instanceutils": "^13.20.4",
32
- "@quenty/linkutils": "^13.20.4",
33
- "@quenty/loader": "^10.9.0",
34
- "@quenty/maid": "^3.5.0",
35
- "@quenty/promise": "^10.12.2",
36
- "@quenty/rx": "^13.20.2",
37
- "@quenty/signal": "^7.11.2",
38
- "@quenty/table": "^3.8.0",
39
- "@quenty/valueobject": "^13.21.5"
28
+ "@quenty/baseobject": "10.9.0",
29
+ "@quenty/brio": "14.20.4-canary.b2b6e1d.0",
30
+ "@quenty/canceltoken": "11.13.3-canary.b2b6e1d.0",
31
+ "@quenty/instanceutils": "13.20.5-canary.b2b6e1d.0",
32
+ "@quenty/linkutils": "13.20.5-canary.b2b6e1d.0",
33
+ "@quenty/loader": "10.9.0",
34
+ "@quenty/maid": "3.5.0",
35
+ "@quenty/promise": "10.12.3-canary.b2b6e1d.0",
36
+ "@quenty/rx": "13.20.3-canary.b2b6e1d.0",
37
+ "@quenty/signal": "7.11.3-canary.b2b6e1d.0",
38
+ "@quenty/table": "3.8.0",
39
+ "@quenty/valueobject": "13.21.6-canary.b2b6e1d.0"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "fa1d8d06aa077ddfb6049c8dcb0f20268ac5045d"
44
+ "gitHead": "b2b6e1d9fe6e894de48351ee64859d59d82468fe"
45
45
  }
@@ -87,7 +87,7 @@ export type Binder<T> = typeof(setmetatable(
87
87
  Constructs a new binder object.
88
88
 
89
89
  ```lua
90
- local binder = Binder.new("Bird", function(inst)
90
+ local binder = Binder.new("MyClass", function(inst)
91
91
  print("Wow, a new bird!", inst)
92
92
 
93
93
  return {
@@ -365,7 +365,7 @@ end
365
365
  Returns a new signal that will fire whenever a class is bound to the binder
366
366
 
367
367
  ```lua
368
- local birdBinder = Binder.new("Bird", require("Bird")) -- Load bird into binder
368
+ local birdBinder = Binder.new("MyClass", require("MyClass")) -- Load bird into binder
369
369
 
370
370
  birdBinder:GetClassAddedSignal():Connect(function(bird)
371
371
  bird:Squack() -- Make the bird squack when it's first spawned
@@ -421,7 +421,7 @@ end
421
421
  Returns all of the classes in a new table.
422
422
 
423
423
  ```lua
424
- local birdBinder = Binder.new("Bird", require("Bird")) -- Load bird into binder
424
+ local birdBinder = Binder.new("MyClass", require("MyClass")) -- Load bird into binder
425
425
 
426
426
  -- Update every bird every frame
427
427
  RunService.Stepped:Connect(function()
@@ -447,7 +447,7 @@ end
447
447
  Faster method to get all items in a binder
448
448
 
449
449
  ```lua
450
- local birdBinder = Binder.new("Bird", require("Bird")) -- Load bird into binder
450
+ local birdBinder = Binder.new("MyClass", require("MyClass")) -- Load bird into binder
451
451
 
452
452
  -- Update every bird every frame
453
453
  RunService.Stepped:Connect(function()