@quenty/binder 14.46.0 → 14.47.1
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 +10 -0
- package/package.json +15 -15
- package/src/Shared/Binder.lua +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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.47.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.47.0...@quenty/binder@14.47.1) (2026-09-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/binder
|
|
9
|
+
|
|
10
|
+
# [14.47.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.46.0...@quenty/binder@14.47.0) (2026-09-23)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- Binder cleans up during construct/deconstruct moment ([404160e](https://github.com/Quenty/NevermoreEngine/commit/404160efddacbdf95eba0ede5e15066c5d71ed64))
|
|
15
|
+
|
|
6
16
|
# [14.46.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binder@14.45.0...@quenty/binder@14.46.0) (2026-09-02)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/binder",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.47.1",
|
|
4
4
|
"description": "Utility object to Bind a class to Roblox object, and associated helper methods",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,24 +28,24 @@
|
|
|
28
28
|
"Quenty"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@quenty/baseobject": "10.16.
|
|
32
|
-
"@quenty/brio": "14.37.
|
|
33
|
-
"@quenty/canceltoken": "11.25.
|
|
34
|
-
"@quenty/instanceutils": "13.37.
|
|
35
|
-
"@quenty/jestutils": "1.1.
|
|
36
|
-
"@quenty/linkutils": "13.38.
|
|
37
|
-
"@quenty/loader": "10.11.
|
|
38
|
-
"@quenty/maid": "3.12.
|
|
39
|
-
"@quenty/nevermore-test-runner": "1.6.
|
|
40
|
-
"@quenty/promise": "10.24.
|
|
41
|
-
"@quenty/rx": "13.34.
|
|
42
|
-
"@quenty/servicebag": "11.21.
|
|
43
|
-
"@quenty/signal": "7.13.
|
|
31
|
+
"@quenty/baseobject": "10.16.1",
|
|
32
|
+
"@quenty/brio": "14.37.1",
|
|
33
|
+
"@quenty/canceltoken": "11.25.1",
|
|
34
|
+
"@quenty/instanceutils": "13.37.1",
|
|
35
|
+
"@quenty/jestutils": "1.1.1",
|
|
36
|
+
"@quenty/linkutils": "13.38.1",
|
|
37
|
+
"@quenty/loader": "10.11.2",
|
|
38
|
+
"@quenty/maid": "3.12.1",
|
|
39
|
+
"@quenty/nevermore-test-runner": "1.6.1",
|
|
40
|
+
"@quenty/promise": "10.24.1",
|
|
41
|
+
"@quenty/rx": "13.34.1",
|
|
42
|
+
"@quenty/servicebag": "11.21.1",
|
|
43
|
+
"@quenty/signal": "7.13.3",
|
|
44
44
|
"@quenty/table": "3.9.2",
|
|
45
45
|
"@quentystudios/jest-lua": "3.10.0-quenty.2"
|
|
46
46
|
},
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "7ab0297833aa73c193d8c20dc23332280439af7c"
|
|
51
51
|
}
|
package/src/Shared/Binder.lua
CHANGED
|
@@ -698,6 +698,12 @@ function Binder._add<T>(self: Binder<T>, inst: Instance)
|
|
|
698
698
|
tostring(type(constructor) == "table" and constructor.ClassName or constructor)
|
|
699
699
|
)
|
|
700
700
|
)
|
|
701
|
+
if MaidTaskUtils.isValidTask(class) then
|
|
702
|
+
task.spawn(function()
|
|
703
|
+
MaidTaskUtils.doTask(class)
|
|
704
|
+
end)
|
|
705
|
+
end
|
|
706
|
+
|
|
701
707
|
return
|
|
702
708
|
end
|
|
703
709
|
|