@quenty/valueobject 13.9.2-canary.508.0dab55e.0 → 13.9.2

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
- ## [13.9.2-canary.508.0dab55e.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valueobject@13.9.1...@quenty/valueobject@13.9.2-canary.508.0dab55e.0) (2024-10-12)
6
+ ## [13.9.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/valueobject@13.9.1...@quenty/valueobject@13.9.2) (2024-10-22)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/valueobject
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/valueobject",
3
- "version": "13.9.2-canary.508.0dab55e.0",
3
+ "version": "13.9.2",
4
4
  "description": "To work like value objects in Roblox and track a single item with .Changed events",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,16 +26,16 @@
26
26
  "Quenty"
27
27
  ],
28
28
  "dependencies": {
29
- "@quenty/brio": "14.9.2-canary.508.0dab55e.0",
30
- "@quenty/ducktype": "5.7.1-canary.508.0dab55e.0",
31
- "@quenty/loader": "10.7.1-canary.508.0dab55e.0",
32
- "@quenty/maid": "3.4.0",
33
- "@quenty/rx": "13.9.1-canary.508.0dab55e.0",
34
- "@quenty/signal": "7.8.1-canary.508.0dab55e.0",
35
- "@quenty/valuebaseutils": "13.9.2-canary.508.0dab55e.0"
29
+ "@quenty/brio": "^14.9.1",
30
+ "@quenty/ducktype": "^5.7.0",
31
+ "@quenty/loader": "^10.7.0",
32
+ "@quenty/maid": "^3.4.0",
33
+ "@quenty/rx": "^13.9.0",
34
+ "@quenty/signal": "^7.8.0",
35
+ "@quenty/valuebaseutils": "^13.9.1"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "0dab55e57fa79d6895de2f56f3ef1aac2a6df7de"
40
+ "gitHead": "c4cdf52069df8ffe2d16682af654c3e090fe4971"
41
41
  }
@@ -32,7 +32,7 @@ function ValueObject.new(baseValue, checkType)
32
32
  _checkType = checkType;
33
33
  }, ValueObject)
34
34
 
35
- if type(checkType) == "stirng" then
35
+ if type(checkType) == "string" then
36
36
  if typeof(baseValue) ~= checkType then
37
37
  error(string.format("Expected value of type %q, got %q instead", checkType, typeof(baseValue)))
38
38
  end