@quenty/tie 10.7.0 → 10.7.1-canary.497.2df557a.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,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
+ ## [10.7.1-canary.497.2df557a.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.7.0...@quenty/tie@10.7.1-canary.497.2df557a.0) (2024-09-20)
7
+
8
+ **Note:** Version bump only for package @quenty/tie
9
+
10
+
11
+
12
+
13
+
6
14
  # [10.7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tie@10.6.0...@quenty/tie@10.7.0) (2024-09-12)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/tie",
3
- "version": "10.7.0",
3
+ "version": "10.7.1-canary.497.2df557a.0",
4
4
  "description": "Tie allows interfaces to be defined between Lua OOP and Roblox objects.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,28 +28,28 @@
28
28
  "Quenty"
29
29
  ],
30
30
  "dependencies": {
31
- "@quenty/attributeutils": "^14.5.0",
32
- "@quenty/baseobject": "^10.4.0",
33
- "@quenty/brio": "^14.5.0",
34
- "@quenty/collectionserviceutils": "^8.5.0",
35
- "@quenty/instanceutils": "^13.5.0",
36
- "@quenty/loader": "^10.4.0",
37
- "@quenty/maid": "^3.3.0",
38
- "@quenty/rx": "^13.5.0",
39
- "@quenty/statestack": "^14.6.0",
40
- "@quenty/string": "^3.2.0",
41
- "@quenty/symbol": "^3.1.0",
42
- "@quenty/table": "^3.5.0",
43
- "@quenty/tuple": "^1.1.0",
44
- "@quenty/valuebaseutils": "^13.5.0",
45
- "@quenty/valueobject": "^13.5.0"
31
+ "@quenty/attributeutils": "14.5.1-canary.497.2df557a.0",
32
+ "@quenty/baseobject": "10.4.1-canary.497.2df557a.0",
33
+ "@quenty/brio": "14.5.1-canary.497.2df557a.0",
34
+ "@quenty/collectionserviceutils": "8.5.1-canary.497.2df557a.0",
35
+ "@quenty/instanceutils": "13.5.1-canary.497.2df557a.0",
36
+ "@quenty/loader": "10.4.1-canary.497.2df557a.0",
37
+ "@quenty/maid": "3.3.0",
38
+ "@quenty/rx": "13.5.1-canary.497.2df557a.0",
39
+ "@quenty/statestack": "14.6.1-canary.497.2df557a.0",
40
+ "@quenty/string": "3.2.1-canary.497.2df557a.0",
41
+ "@quenty/symbol": "3.1.0",
42
+ "@quenty/table": "3.5.0",
43
+ "@quenty/tuple": "1.1.1-canary.497.2df557a.0",
44
+ "@quenty/valuebaseutils": "13.5.1-canary.497.2df557a.0",
45
+ "@quenty/valueobject": "13.5.1-canary.497.2df557a.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@quenty/promise": "^10.4.0",
49
- "@quenty/signal": "^7.4.0"
48
+ "@quenty/promise": "10.4.1-canary.497.2df557a.0",
49
+ "@quenty/signal": "7.4.1-canary.497.2df557a.0"
50
50
  },
51
51
  "publishConfig": {
52
52
  "access": "public"
53
53
  },
54
- "gitHead": "fb172906f3ee725269ec1e5f4daf9dca227e729d"
54
+ "gitHead": "2df557a9a5463c2c7beb257ff9f7786ac8ad746a"
55
55
  }
@@ -123,7 +123,7 @@ for _, action in pairs(ActionInterface:GetImplementations(adornee)) do
123
123
  action.Activated:Fire()
124
124
 
125
125
  action.DisplayName.Changed:Connect(function()
126
- print(("Display name changed to %q"):format(tostring(action.DisplayName.Value)))
126
+ print(string.format("Display name changed to %q", tostring(action.DisplayName.Value)))
127
127
  end)
128
128
  end
129
129
 
@@ -140,12 +140,12 @@ end
140
140
  -- count += 1
141
141
 
142
142
  -- maid:GiveTask(interface.DisplayName:Observe():Subscribe(function(name)
143
- -- print(("See %d actions (added %q)"):format(count, tostring(name)))
143
+ -- print(string.format("See %d actions (added %q)", count, tostring(name)))
144
144
  -- end))
145
145
 
146
146
  -- brio:ToMaid():GiveTask(function()
147
147
  -- count -= 1
148
- -- print(("See %d actions (removed %q)"):format(count, tostring(interface.DisplayName.Value)))
148
+ -- print(string.format("See %d actions (removed %q)", count, tostring(interface.DisplayName.Value)))
149
149
  -- end)
150
150
  -- end)
151
151