@quenty/tie 5.2.0 → 5.2.1-canary.13f8c62.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 +11 -0
- package/package.json +18 -18
- package/src/Shared/Definition/TieDefinition.lua +3 -1
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
|
+
## [5.2.1-canary.13f8c62.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@5.2.0...@quenty/tie@5.2.1-canary.13f8c62.0) (2023-12-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Improve error messages and assertion in TieDefinition ([7e48f01](https://github.com/Quenty/NevermoreEngine/commit/7e48f0195970ab72c259bbf664a393ff59960370))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [5.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@5.1.1...@quenty/tie@5.2.0) (2023-12-14)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/tie",
|
|
3
|
-
"version": "5.2.0",
|
|
3
|
+
"version": "5.2.1-canary.13f8c62.0",
|
|
4
4
|
"description": "Tie allows interfaces to be defined between Lua OOP and Roblox objects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,27 +28,27 @@
|
|
|
28
28
|
"Quenty"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@quenty/attributeutils": "
|
|
32
|
-
"@quenty/baseobject": "
|
|
33
|
-
"@quenty/brio": "
|
|
34
|
-
"@quenty/collectionserviceutils": "
|
|
35
|
-
"@quenty/instanceutils": "
|
|
36
|
-
"@quenty/loader": "
|
|
37
|
-
"@quenty/maid": "
|
|
38
|
-
"@quenty/rx": "
|
|
39
|
-
"@quenty/statestack": "
|
|
40
|
-
"@quenty/string": "
|
|
41
|
-
"@quenty/symbol": "
|
|
42
|
-
"@quenty/table": "
|
|
43
|
-
"@quenty/valuebaseutils": "
|
|
44
|
-
"@quenty/valueobject": "
|
|
31
|
+
"@quenty/attributeutils": "9.2.1-canary.13f8c62.0",
|
|
32
|
+
"@quenty/baseobject": "7.1.0",
|
|
33
|
+
"@quenty/brio": "9.2.1-canary.13f8c62.0",
|
|
34
|
+
"@quenty/collectionserviceutils": "3.2.1-canary.13f8c62.0",
|
|
35
|
+
"@quenty/instanceutils": "8.2.1-canary.13f8c62.0",
|
|
36
|
+
"@quenty/loader": "7.1.0",
|
|
37
|
+
"@quenty/maid": "2.6.0",
|
|
38
|
+
"@quenty/rx": "8.2.1-canary.13f8c62.0",
|
|
39
|
+
"@quenty/statestack": "9.2.1-canary.13f8c62.0",
|
|
40
|
+
"@quenty/string": "3.1.0",
|
|
41
|
+
"@quenty/symbol": "2.2.0",
|
|
42
|
+
"@quenty/table": "3.4.0",
|
|
43
|
+
"@quenty/valuebaseutils": "8.2.1-canary.13f8c62.0",
|
|
44
|
+
"@quenty/valueobject": "8.2.1-canary.13f8c62.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@quenty/promise": "
|
|
48
|
-
"@quenty/signal": "
|
|
47
|
+
"@quenty/promise": "7.1.0",
|
|
48
|
+
"@quenty/signal": "3.1.0"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "13f8c62d4d62675db0f7ebd42c32daf8e61bb904"
|
|
54
54
|
}
|
|
@@ -455,6 +455,8 @@ end
|
|
|
455
455
|
@return boolean
|
|
456
456
|
]=]
|
|
457
457
|
function TieDefinition:IsImplementation(folder)
|
|
458
|
+
assert(typeof(folder) == "Instance", "Bad folder")
|
|
459
|
+
|
|
458
460
|
local attributes = folder:GetAttributes()
|
|
459
461
|
local children = {}
|
|
460
462
|
for _, item in pairs(folder:GetChildren()) do
|
|
@@ -492,7 +494,7 @@ function TieDefinition:IsImplementation(folder)
|
|
|
492
494
|
return false
|
|
493
495
|
end
|
|
494
496
|
else
|
|
495
|
-
error("Unknown member type")
|
|
497
|
+
error("[TieDefinition.IsImplementation] - Unknown member type")
|
|
496
498
|
end
|
|
497
499
|
end
|
|
498
500
|
|