@quenty/binder 14.6.1-canary.497.496fc5b.0 → 14.6.1-canary.499.60b3012.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,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.6.1-canary.497.496fc5b.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.6.0...@quenty/binder@14.6.1-canary.497.496fc5b.0) (2024-09-20)
6
+ ## [14.6.1-canary.499.60b3012.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.6.0...@quenty/binder@14.6.1-canary.499.60b3012.0) (2024-09-24)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/binder
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/binder",
3
- "version": "14.6.1-canary.497.496fc5b.0",
3
+ "version": "14.6.1-canary.499.60b3012.0",
4
4
  "description": "Utility object to Bind a class to Roblox object, and associated helper methods",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,19 +25,19 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/baseobject": "10.4.1-canary.497.496fc5b.0",
29
- "@quenty/brio": "14.5.1-canary.497.496fc5b.0",
30
- "@quenty/instanceutils": "13.5.1-canary.497.496fc5b.0",
31
- "@quenty/linkutils": "13.5.1-canary.497.496fc5b.0",
32
- "@quenty/loader": "10.4.1-canary.497.496fc5b.0",
28
+ "@quenty/baseobject": "10.4.0",
29
+ "@quenty/brio": "14.5.1-canary.499.60b3012.0",
30
+ "@quenty/instanceutils": "13.5.1-canary.499.60b3012.0",
31
+ "@quenty/linkutils": "13.5.1-canary.499.60b3012.0",
32
+ "@quenty/loader": "10.4.0",
33
33
  "@quenty/maid": "3.3.0",
34
- "@quenty/promise": "10.4.1-canary.497.496fc5b.0",
35
- "@quenty/rx": "13.5.1-canary.497.496fc5b.0",
36
- "@quenty/signal": "7.4.1-canary.497.496fc5b.0",
37
- "@quenty/valueobject": "13.5.1-canary.497.496fc5b.0"
34
+ "@quenty/promise": "10.4.0",
35
+ "@quenty/rx": "13.5.1-canary.499.60b3012.0",
36
+ "@quenty/signal": "7.4.0",
37
+ "@quenty/valueobject": "13.5.1-canary.499.60b3012.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "496fc5bb230a226ec6c86a8dfd025b8e326d92d8"
42
+ "gitHead": "60b3012c35a2bf7c3c6a01ec440f9d639b9ad0cc"
43
43
  }
@@ -144,7 +144,7 @@ function Binder:Init(...)
144
144
  end
145
145
 
146
146
  self._maid._warning = task.delay(5, function()
147
- warn(string.format("Binder %q is not loaded. Call :Start() on it!", self._tagName))
147
+ warn(("Binder %q is not loaded. Call :Start() on it!"):format(self._tagName))
148
148
  end)
149
149
  end
150
150
 
@@ -501,7 +501,8 @@ function Binder:Unbind(inst)
501
501
  assert(typeof(inst) == "Instance", "Bad inst'")
502
502
 
503
503
  if RunService:IsClient() then
504
- warn(string.format("[Binder.Bind] - Unbinding '%s' done on the client! Might be disrupted upon server replication! %s", self._tagName, debug.traceback()))
504
+ warn(("[Binder.Bind] - Unbinding '%s' done on the client! Might be disrupted upon server replication! %s")
505
+ :format(self._tagName, debug.traceback()))
505
506
  end
506
507
 
507
508
  CollectionService:RemoveTag(inst, self._tagName)
@@ -519,7 +520,8 @@ end
519
520
  ]=]
520
521
  function Binder:BindClient(inst)
521
522
  if not RunService:IsClient() then
522
- warn(string.format("[Binder.BindClient] - Bindings '%s' done on the server! Will be replicated!", self._tagName))
523
+ warn(("[Binder.BindClient] - Bindings '%s' done on the server! Will be replicated!")
524
+ :format(self._tagName))
523
525
  end
524
526
 
525
527
  CollectionService:AddTag(inst, self._tagName)
@@ -62,7 +62,7 @@ function BinderGroupProvider:__index(index)
62
62
  return BinderGroupProvider[index]
63
63
  end
64
64
 
65
- error(string.format("%q Not a valid index", tostring(index)))
65
+ error(("%q Not a valid index"):format(tostring(index)))
66
66
  end
67
67
 
68
68
  --[=[
@@ -158,7 +158,7 @@ function BinderUtils.getLinkedChildren(binder, linkName, parent)
158
158
  seen[obj] = true
159
159
  table.insert(objects, obj)
160
160
  else
161
- warn(string.format("[BinderUtils.getLinkedChildren] - Double linked children at %q", item:GetFullName()))
161
+ warn(("[BinderUtils.getLinkedChildren] - Double linked children at %q"):format(item:GetFullName()))
162
162
  end
163
163
  end
164
164
  end
@@ -44,7 +44,8 @@ return function(binder, inst, cancelToken)
44
44
 
45
45
  task.delay(5, function()
46
46
  if promise:IsPending() then
47
- warn(string.format("[promiseBoundClass] - Infinite yield possible on %q for binder %q\n", inst:GetFullName(), binder:GetTag()))
47
+ warn(("[promiseBoundClass] - Infinite yield possible on %q for binder %q\n")
48
+ :format(inst:GetFullName(), binder:GetTag()))
48
49
  end
49
50
  end)
50
51