@quenty/adorneevalue 10.5.3-canary.499.60b3012.0 → 10.6.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
- ## [10.5.3-canary.499.60b3012.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneevalue@10.5.2...@quenty/adorneevalue@10.5.3-canary.499.60b3012.0) (2024-09-24)
6
+ # [10.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/adorneevalue@10.5.2...@quenty/adorneevalue@10.6.0) (2024-09-25)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/adorneevalue
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/adorneevalue",
3
- "version": "10.5.3-canary.499.60b3012.0",
3
+ "version": "10.6.0",
4
4
  "description": "Adorneevalue - Helper class to transform a an adornee into relative positions/information.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,15 +25,15 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/adorneeutils": "3.2.0",
29
- "@quenty/baseobject": "10.4.0",
30
- "@quenty/blend": "12.5.3-canary.499.60b3012.0",
31
- "@quenty/loader": "10.4.0",
32
- "@quenty/maid": "3.3.0",
33
- "@quenty/valueobject": "13.5.1-canary.499.60b3012.0"
28
+ "@quenty/adorneeutils": "^3.2.0",
29
+ "@quenty/baseobject": "^10.5.0",
30
+ "@quenty/blend": "^12.6.0",
31
+ "@quenty/loader": "^10.5.0",
32
+ "@quenty/maid": "^3.3.0",
33
+ "@quenty/valueobject": "^13.6.0"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "60b3012c35a2bf7c3c6a01ec440f9d639b9ad0cc"
38
+ "gitHead": "41715b15e2b48b2d22ff4f5277a8d4b7a0d32ef3"
39
39
  }
@@ -73,7 +73,7 @@ function AdorneeValue:__index(index)
73
73
  -- Edge-case
74
74
  return rawget(self, index)
75
75
  else
76
- error(("%q is not a member of AdorneeValue"):format(tostring(index)))
76
+ error(string.format("%q is not a member of AdorneeValue", tostring(index)))
77
77
  end
78
78
  end
79
79
 
@@ -90,9 +90,9 @@ function AdorneeValue:__newindex(index, value)
90
90
  -- Edge-case
91
91
  return
92
92
  elseif AdorneeValue[index] or index == "Changed" then
93
- error(("%q is not writable"):format(tostring(index)))
93
+ error(string.format("%q is not writable", tostring(index)))
94
94
  else
95
- error(("%q is not a member of AdorneeValue"):format(tostring(index)))
95
+ error(string.format("%q is not a member of AdorneeValue", tostring(index)))
96
96
  end
97
97
  end
98
98