@quenty/tie 4.10.0 → 4.10.1-canary.ecd6ba2.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 +8 -0
- package/LICENSE.md +1 -1
- package/README.md +1 -1
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
## [4.10.1-canary.ecd6ba2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@4.10.0...@quenty/tie@4.10.1-canary.ecd6ba2.0) (2023-03-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/tie
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [4.10.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@4.9.0...@quenty/tie@4.10.0) (2023-03-05)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/tie
|
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
Tie allows interfaces to be defined between Lua OOP and Roblox objects. This is designed in part to replace BinderGroups, which were a way to previously allow systems to interface with each other in a generic way. Instead, an object may implement a TieInterface, which is basically bindable functions/events.
|
|
15
15
|
|
|
16
|
-
<div align="center"><a href="https://quenty.github.io/NevermoreEngine/api/
|
|
16
|
+
<div align="center"><a href="https://quenty.github.io/NevermoreEngine/api/TieInterface">View docs →</a></div>
|
|
17
17
|
|
|
18
18
|
## Installation
|
|
19
19
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/tie",
|
|
3
|
-
"version": "4.10.0",
|
|
3
|
+
"version": "4.10.1-canary.ecd6ba2.0",
|
|
4
4
|
"description": "Tie allows interfaces to be defined between Lua OOP and Roblox objects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,25 +28,25 @@
|
|
|
28
28
|
"Quenty"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@quenty/attributeutils": "
|
|
32
|
-
"@quenty/baseobject": "
|
|
33
|
-
"@quenty/brio": "
|
|
34
|
-
"@quenty/instanceutils": "
|
|
35
|
-
"@quenty/loader": "
|
|
36
|
-
"@quenty/maid": "
|
|
37
|
-
"@quenty/rx": "
|
|
38
|
-
"@quenty/string": "
|
|
39
|
-
"@quenty/symbol": "
|
|
40
|
-
"@quenty/table": "
|
|
41
|
-
"@quenty/valuebaseutils": "
|
|
42
|
-
"@quenty/valueobject": "
|
|
31
|
+
"@quenty/attributeutils": "8.8.0",
|
|
32
|
+
"@quenty/baseobject": "6.2.0",
|
|
33
|
+
"@quenty/brio": "8.7.0",
|
|
34
|
+
"@quenty/instanceutils": "7.8.0",
|
|
35
|
+
"@quenty/loader": "6.2.0",
|
|
36
|
+
"@quenty/maid": "2.5.0",
|
|
37
|
+
"@quenty/rx": "7.7.0",
|
|
38
|
+
"@quenty/string": "3.1.0",
|
|
39
|
+
"@quenty/symbol": "2.2.0",
|
|
40
|
+
"@quenty/table": "3.2.0",
|
|
41
|
+
"@quenty/valuebaseutils": "7.8.0",
|
|
42
|
+
"@quenty/valueobject": "7.7.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@quenty/promise": "
|
|
46
|
-
"@quenty/signal": "
|
|
45
|
+
"@quenty/promise": "6.3.0",
|
|
46
|
+
"@quenty/signal": "2.3.0"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "ecd6ba2fb8ca04a715b9823119ec5685e4c6d179"
|
|
52
52
|
}
|