@quenty/counter 7.18.0-canary.ae8d76d.0 → 7.18.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 +1 -1
- package/package.json +7 -7
- package/src/Shared/Counter.lua +2 -2
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
|
-
# [7.18.0
|
|
6
|
+
# [7.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/counter@7.17.3...@quenty/counter@7.18.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/counter",
|
|
3
|
-
"version": "7.18.0
|
|
3
|
+
"version": "7.18.0",
|
|
4
4
|
"description": "Helps count a total value",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/baseobject": "10.
|
|
29
|
-
"@quenty/loader": "10.
|
|
30
|
-
"@quenty/maid": "3.
|
|
31
|
-
"@quenty/rx": "13.18.0
|
|
32
|
-
"@quenty/valueobject": "13.18.0
|
|
28
|
+
"@quenty/baseobject": "^10.9.0",
|
|
29
|
+
"@quenty/loader": "^10.9.0",
|
|
30
|
+
"@quenty/maid": "^3.5.0",
|
|
31
|
+
"@quenty/rx": "^13.18.0",
|
|
32
|
+
"@quenty/valueobject": "^13.18.0"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
|
|
38
38
|
}
|
package/src/Shared/Counter.lua
CHANGED
|
@@ -8,8 +8,8 @@ local require = require(script.Parent.loader).load(script)
|
|
|
8
8
|
local BaseObject = require("BaseObject")
|
|
9
9
|
local Maid = require("Maid")
|
|
10
10
|
local Observable = require("Observable")
|
|
11
|
-
local ValueObject = require("ValueObject")
|
|
12
11
|
local Signal = require("Signal")
|
|
12
|
+
local ValueObject = require("ValueObject")
|
|
13
13
|
|
|
14
14
|
local Counter = setmetatable({}, BaseObject)
|
|
15
15
|
Counter.ClassName = "Counter"
|
|
@@ -125,4 +125,4 @@ function Counter._addObservable(self: Counter, observeAmount: Observable.Observa
|
|
|
125
125
|
end
|
|
126
126
|
end
|
|
127
127
|
|
|
128
|
-
return Counter
|
|
128
|
+
return Counter
|