@quenty/tie 10.11.2-canary.508.0dab55e.0 → 10.11.2
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 +1 -1
- package/package.json +20 -20
- package/src/Shared/TieDefinition.lua +2 -2
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
|
-
## [10.11.2
|
|
6
|
+
## [10.11.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.11.1...@quenty/tie@10.11.2) (2024-10-22)
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @quenty/tie
|
|
9
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/tie",
|
|
3
|
-
"version": "10.11.2
|
|
3
|
+
"version": "10.11.2",
|
|
4
4
|
"description": "Tie allows interfaces to be defined between Lua OOP and Roblox objects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,29 +28,29 @@
|
|
|
28
28
|
"Quenty"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@quenty/attributeutils": "14.9.
|
|
32
|
-
"@quenty/baseobject": "10.7.
|
|
33
|
-
"@quenty/brio": "14.9.
|
|
34
|
-
"@quenty/collectionserviceutils": "8.9.
|
|
35
|
-
"@quenty/instanceutils": "13.9.
|
|
36
|
-
"@quenty/loader": "10.7.
|
|
37
|
-
"@quenty/maid": "3.4.0",
|
|
38
|
-
"@quenty/rx": "13.9.
|
|
39
|
-
"@quenty/rxsignal": "7.9.
|
|
40
|
-
"@quenty/statestack": "14.10.2
|
|
41
|
-
"@quenty/string": "3.3.0",
|
|
42
|
-
"@quenty/symbol": "3.2.0",
|
|
43
|
-
"@quenty/table": "3.6.0",
|
|
44
|
-
"@quenty/tuple": "1.4.
|
|
45
|
-
"@quenty/valuebaseutils": "13.9.
|
|
46
|
-
"@quenty/valueobject": "13.9.2
|
|
31
|
+
"@quenty/attributeutils": "^14.9.1",
|
|
32
|
+
"@quenty/baseobject": "^10.7.0",
|
|
33
|
+
"@quenty/brio": "^14.9.1",
|
|
34
|
+
"@quenty/collectionserviceutils": "^8.9.1",
|
|
35
|
+
"@quenty/instanceutils": "^13.9.1",
|
|
36
|
+
"@quenty/loader": "^10.7.0",
|
|
37
|
+
"@quenty/maid": "^3.4.0",
|
|
38
|
+
"@quenty/rx": "^13.9.0",
|
|
39
|
+
"@quenty/rxsignal": "^7.9.0",
|
|
40
|
+
"@quenty/statestack": "^14.10.2",
|
|
41
|
+
"@quenty/string": "^3.3.0",
|
|
42
|
+
"@quenty/symbol": "^3.2.0",
|
|
43
|
+
"@quenty/table": "^3.6.0",
|
|
44
|
+
"@quenty/tuple": "^1.4.0",
|
|
45
|
+
"@quenty/valuebaseutils": "^13.9.1",
|
|
46
|
+
"@quenty/valueobject": "^13.9.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@quenty/promise": "10.7.
|
|
50
|
-
"@quenty/signal": "7.8.
|
|
49
|
+
"@quenty/promise": "^10.7.0",
|
|
50
|
+
"@quenty/signal": "^7.8.0"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "c4cdf52069df8ffe2d16682af654c3e090fe4971"
|
|
56
56
|
}
|
|
@@ -599,9 +599,9 @@ end
|
|
|
599
599
|
invoking interface methods, or querying the interface will result
|
|
600
600
|
in errors.
|
|
601
601
|
|
|
602
|
-
|
|
602
|
+
```tip
|
|
603
603
|
Probably use :Find() instead of Get, since this always returns an interface.
|
|
604
|
-
|
|
604
|
+
```
|
|
605
605
|
|
|
606
606
|
@param adornee Instance -- Adornee to get interface on
|
|
607
607
|
@param tieRealm TieRealm?
|