@quenty/counter 7.18.0-canary.ae8d76d.0 → 7.18.1-canary.39d0eda.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,15 @@
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-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/counter@7.17.3...@quenty/counter@7.18.0-canary.ae8d76d.0) (2025-05-10)
6
+ ## [7.18.1-canary.39d0eda.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/counter@7.18.0...@quenty/counter@7.18.1-canary.39d0eda.0) (2025-08-29)
7
+
8
+ **Note:** Version bump only for package @quenty/counter
9
+
10
+
11
+
12
+
13
+
14
+ # [7.18.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/counter@7.17.3...@quenty/counter@7.18.0) (2025-05-10)
7
15
 
8
16
 
9
17
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/counter",
3
- "version": "7.18.0-canary.ae8d76d.0",
3
+ "version": "7.18.1-canary.39d0eda.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.8.3",
29
- "@quenty/loader": "10.8.3",
30
- "@quenty/maid": "3.4.3",
31
- "@quenty/rx": "13.18.0-canary.ae8d76d.0",
32
- "@quenty/valueobject": "13.18.0-canary.ae8d76d.0"
28
+ "@quenty/baseobject": "10.9.0",
29
+ "@quenty/loader": "10.9.0",
30
+ "@quenty/maid": "3.5.0",
31
+ "@quenty/rx": "13.18.1-canary.39d0eda.0",
32
+ "@quenty/valueobject": "13.18.1-canary.39d0eda.0"
33
33
  },
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
37
+ "gitHead": "39d0edaa45d0c4812b43f2a64ad543fac3f79423"
38
38
  }
@@ -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