@quenty/tie 10.26.1 → 10.26.2-canary.8bcecfa.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.26.2-canary.8bcecfa.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.26.1...@quenty/tie@10.26.2-canary.8bcecfa.0) (2025-12-13)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Small patches to nevermore libraries ([8bcecfa](https://github.com/Quenty/NevermoreEngine/commit/8bcecfadfd3ac856f1682757434c20b0247d66ea))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [10.26.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.26.0...@quenty/tie@10.26.1) (2025-11-22)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/tie",
3
- "version": "10.26.1",
3
+ "version": "10.26.2-canary.8bcecfa.0",
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.20.1",
32
- "@quenty/baseobject": "^10.9.0",
33
- "@quenty/brio": "^14.20.1",
34
- "@quenty/collectionserviceutils": "^8.21.1",
35
- "@quenty/instanceutils": "^13.20.2",
36
- "@quenty/loader": "^10.9.0",
37
- "@quenty/maid": "^3.5.0",
38
- "@quenty/rx": "^13.20.0",
39
- "@quenty/rxsignal": "^7.20.0",
40
- "@quenty/statestack": "^14.22.2",
41
- "@quenty/string": "^3.3.3",
42
- "@quenty/symbol": "^3.5.0",
43
- "@quenty/table": "^3.8.0",
44
- "@quenty/tuple": "^1.6.0",
45
- "@quenty/valuebaseutils": "^13.20.2",
46
- "@quenty/valueobject": "^13.21.2"
31
+ "@quenty/attributeutils": "14.20.1",
32
+ "@quenty/baseobject": "10.9.0",
33
+ "@quenty/brio": "14.20.1",
34
+ "@quenty/collectionserviceutils": "8.21.1",
35
+ "@quenty/instanceutils": "13.20.2",
36
+ "@quenty/loader": "10.9.0",
37
+ "@quenty/maid": "3.5.0",
38
+ "@quenty/rx": "13.20.0",
39
+ "@quenty/rxsignal": "7.20.0",
40
+ "@quenty/statestack": "14.22.2",
41
+ "@quenty/string": "3.3.3",
42
+ "@quenty/symbol": "3.5.0",
43
+ "@quenty/table": "3.8.0",
44
+ "@quenty/tuple": "1.6.0",
45
+ "@quenty/valuebaseutils": "13.20.2",
46
+ "@quenty/valueobject": "13.21.2"
47
47
  },
48
48
  "devDependencies": {
49
- "@quenty/promise": "^10.12.0",
50
- "@quenty/signal": "^7.11.1"
49
+ "@quenty/promise": "10.12.0",
50
+ "@quenty/signal": "7.11.1"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
- "gitHead": "b3a8753cbae8b4312b1ed66fce1577a94015c156"
55
+ "gitHead": "8bcecfadfd3ac856f1682757434c20b0247d66ea"
56
56
  }
@@ -36,7 +36,13 @@ end
36
36
  function TieSignalInterface:Fire(...)
37
37
  local bindableEvent = self:_getBindableEvent()
38
38
  if not bindableEvent then
39
- warn(string.format("[TieSignalInterface] - No bindableEvent for %q", self._memberDefinition:GetMemberName()))
39
+ warn(
40
+ string.format(
41
+ "[TieSignalInterface] - No bindableEvent for %q. Skipping fire.",
42
+ self._memberDefinition:GetMemberName()
43
+ )
44
+ )
45
+ return
40
46
  end
41
47
 
42
48
  bindableEvent:Fire(TieUtils.encode(...))