@quenty/tie 10.2.0 → 10.2.1-canary.461.ef0ff45.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,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
+ ## [10.2.1-canary.461.ef0ff45.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.2.0...@quenty/tie@10.2.1-canary.461.ef0ff45.0) (2024-04-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Add pending check in tie definition ([2f4d932](https://github.com/Quenty/NevermoreEngine/commit/2f4d93218d709f778ac84bc0bcb57f7240deacad))
12
+
13
+
14
+
15
+
16
+
6
17
  # [10.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.1.0...@quenty/tie@10.2.0) (2024-03-27)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/tie",
3
- "version": "10.2.0",
3
+ "version": "10.2.1-canary.461.ef0ff45.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": "^14.1.0",
32
- "@quenty/baseobject": "^10.1.0",
33
- "@quenty/brio": "^14.1.0",
34
- "@quenty/collectionserviceutils": "^8.1.0",
35
- "@quenty/instanceutils": "^13.1.0",
36
- "@quenty/loader": "^10.1.0",
37
- "@quenty/maid": "^3.1.0",
38
- "@quenty/rx": "^13.1.0",
39
- "@quenty/statestack": "^14.1.0",
40
- "@quenty/string": "^3.1.0",
41
- "@quenty/symbol": "^3.0.0",
42
- "@quenty/table": "^3.4.0",
43
- "@quenty/valuebaseutils": "^13.1.0",
44
- "@quenty/valueobject": "^13.1.0"
31
+ "@quenty/attributeutils": "14.1.1-canary.461.ef0ff45.0",
32
+ "@quenty/baseobject": "10.1.1-canary.461.ef0ff45.0",
33
+ "@quenty/brio": "14.1.1-canary.461.ef0ff45.0",
34
+ "@quenty/collectionserviceutils": "8.1.1-canary.461.ef0ff45.0",
35
+ "@quenty/instanceutils": "13.1.1-canary.461.ef0ff45.0",
36
+ "@quenty/loader": "10.1.1-canary.461.ef0ff45.0",
37
+ "@quenty/maid": "3.1.0",
38
+ "@quenty/rx": "13.1.1-canary.461.ef0ff45.0",
39
+ "@quenty/statestack": "14.1.1-canary.461.ef0ff45.0",
40
+ "@quenty/string": "3.1.0",
41
+ "@quenty/symbol": "3.0.0",
42
+ "@quenty/table": "3.4.0",
43
+ "@quenty/valuebaseutils": "13.1.1-canary.461.ef0ff45.0",
44
+ "@quenty/valueobject": "13.1.1-canary.461.ef0ff45.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@quenty/promise": "^10.1.0",
48
- "@quenty/signal": "^7.1.0"
47
+ "@quenty/promise": "10.1.1-canary.461.ef0ff45.0",
48
+ "@quenty/signal": "7.1.1-canary.461.ef0ff45.0"
49
49
  },
50
50
  "publishConfig": {
51
51
  "access": "public"
52
52
  },
53
- "gitHead": "ab3631a54c4e8d448b4229c7e422a9c7f43c0dd7"
53
+ "gitHead": "ef0ff45686a7f2f93156fc1bd2b459e55076b07e"
54
54
  }
@@ -21,9 +21,9 @@ local TieImplementation = require("TieImplementation")
21
21
  local TieInterface = require("TieInterface")
22
22
  local TieMethodDefinition = require("TieMethodDefinition")
23
23
  local TiePropertyDefinition = require("TiePropertyDefinition")
24
+ local TieRealms = require("TieRealms")
24
25
  local TieSignalDefinition = require("TieSignalDefinition")
25
26
  local ValueObject = require("ValueObject")
26
- local TieRealms = require("TieRealms")
27
27
 
28
28
  local UNSET_VALUE = Symbol.named("unsetValue")
29
29
 
@@ -340,12 +340,15 @@ function TieDefinition:_observeImplementation(folder)
340
340
 
341
341
  local update
342
342
  do
343
- local isImplemented = ValueObject.new(UNSET_VALUE)
344
- maid:GiveTask(isImplemented)
343
+ local isImplemented = maid:Add(ValueObject.new(UNSET_VALUE))
345
344
 
346
345
  maid:GiveTask(isImplemented.Changed:Connect(function()
347
346
  maid._brio = nil
348
347
 
348
+ if not sub:IsPending() then
349
+ return
350
+ end
351
+
349
352
  if isImplemented.Value then
350
353
  local brio = Brio.new(TieInterface.new(self, folder, nil))
351
354
  sub:Fire(brio)