@quenty/valuebaseutils 13.20.2-canary.a3ac54d.0 → 13.20.3-canary.607f741.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 +12 -1
- package/package.json +4 -4
- package/src/Shared/ValueBaseValue.lua +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,18 @@
|
|
|
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
|
-
## [13.20.
|
|
6
|
+
## [13.20.3-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valuebaseutils@13.20.2...@quenty/valuebaseutils@13.20.3-canary.607f741.0) (2025-12-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Typecheck some more things ([41eaaa6](https://github.com/Quenty/NevermoreEngine/commit/41eaaa6d053c469f7548810da72d05dfbf997b26))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [13.20.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valuebaseutils@13.20.1...@quenty/valuebaseutils@13.20.2) (2025-11-22)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/valuebaseutils
|
|
9
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/valuebaseutils",
|
|
3
|
-
"version": "13.20.
|
|
3
|
+
"version": "13.20.3-canary.607f741.0",
|
|
4
4
|
"description": "Provides utilities for working with valuesbase objects, like IntValue or ObjectValue in Roblox.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/brio": "14.20.1
|
|
29
|
-
"@quenty/instanceutils": "13.20.2
|
|
28
|
+
"@quenty/brio": "14.20.1",
|
|
29
|
+
"@quenty/instanceutils": "13.20.2",
|
|
30
30
|
"@quenty/loader": "10.9.0",
|
|
31
31
|
"@quenty/promise": "10.12.0",
|
|
32
32
|
"@quenty/rx": "13.20.0",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
|
|
39
39
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
--!strict
|
|
1
2
|
--[=[
|
|
2
3
|
For when attributes don't work
|
|
3
4
|
|
|
@@ -51,7 +52,7 @@ function ValueBaseValue.new(
|
|
|
51
52
|
assert(type(className) == "string", "Bad argument 'className'")
|
|
52
53
|
assert(type(name) == "string", "Bad argument 'name'")
|
|
53
54
|
|
|
54
|
-
local self = {}
|
|
55
|
+
local self: ValueBaseValue = {} :: any
|
|
55
56
|
|
|
56
57
|
self._parent = parent
|
|
57
58
|
self._name = name
|
|
@@ -63,7 +64,7 @@ function ValueBaseValue.new(
|
|
|
63
64
|
ValueBaseUtils.getOrCreateValue(parent, self._className, self._name, self._defaultValue)
|
|
64
65
|
end
|
|
65
66
|
|
|
66
|
-
return setmetatable(self, ValueBaseValue) :: any
|
|
67
|
+
return setmetatable(self :: any, ValueBaseValue) :: any
|
|
67
68
|
end
|
|
68
69
|
|
|
69
70
|
--[=[
|