@quenty/tie 5.4.0 → 6.0.0-canary.c90a5c7.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,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
- # [5.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@5.3.0...@quenty/tie@5.4.0) (2024-01-08)
6
+ # [6.0.0-canary.c90a5c7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@5.3.0...@quenty/tie@6.0.0-canary.c90a5c7.0) (2024-01-08)
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": "5.4.0",
3
+ "version": "6.0.0-canary.c90a5c7.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": "^9.4.0",
32
- "@quenty/baseobject": "^7.2.0",
33
- "@quenty/brio": "^9.4.0",
34
- "@quenty/collectionserviceutils": "^3.4.0",
35
- "@quenty/instanceutils": "^8.4.0",
36
- "@quenty/loader": "^7.3.0",
37
- "@quenty/maid": "^2.6.0",
38
- "@quenty/rx": "^8.4.0",
39
- "@quenty/statestack": "^9.4.0",
40
- "@quenty/string": "^3.1.0",
41
- "@quenty/symbol": "^2.2.0",
42
- "@quenty/table": "^3.4.0",
43
- "@quenty/valuebaseutils": "^8.4.0",
44
- "@quenty/valueobject": "^8.4.0"
31
+ "@quenty/attributeutils": "10.0.0-canary.c90a5c7.0",
32
+ "@quenty/baseobject": "8.0.0-canary.c90a5c7.0",
33
+ "@quenty/brio": "10.0.0-canary.c90a5c7.0",
34
+ "@quenty/collectionserviceutils": "4.0.0-canary.c90a5c7.0",
35
+ "@quenty/instanceutils": "9.0.0-canary.c90a5c7.0",
36
+ "@quenty/loader": "8.0.0-canary.c90a5c7.0",
37
+ "@quenty/maid": "2.6.0",
38
+ "@quenty/rx": "9.0.0-canary.c90a5c7.0",
39
+ "@quenty/statestack": "10.0.0-canary.c90a5c7.0",
40
+ "@quenty/string": "3.1.0",
41
+ "@quenty/symbol": "2.2.0",
42
+ "@quenty/table": "3.4.0",
43
+ "@quenty/valuebaseutils": "9.0.0-canary.c90a5c7.0",
44
+ "@quenty/valueobject": "9.0.0-canary.c90a5c7.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@quenty/promise": "^7.2.0",
48
- "@quenty/signal": "^3.2.0"
47
+ "@quenty/promise": "8.0.0-canary.c90a5c7.0",
48
+ "@quenty/signal": "4.0.0-canary.c90a5c7.0"
49
49
  },
50
50
  "publishConfig": {
51
51
  "access": "public"
52
52
  },
53
- "gitHead": "075fb03a03f12ade8758f667767ba738204e0c4b"
53
+ "gitHead": "c90a5c74ac7045804ba6018fc3424e406d13f21a"
54
54
  }
@@ -40,7 +40,7 @@ function TieMethodImplementation:SetImplementation(implementation)
40
40
  end
41
41
 
42
42
  self._bindableFunction.OnInvoke = function()
43
- warn(string.format("%q is not implemented", tostring(self._memberDefinition:GetMemberName())))
43
+ warn(("%q is not implemented"):format(tostring(self._memberDefinition:GetMemberName())))
44
44
  end
45
45
  end
46
46
  end