@quenty/jsonutils 10.10.4 → 10.10.5-canary.559.339cfa7.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,6 +3,17 @@
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.10.5-canary.559.339cfa7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/jsonutils@10.10.4...@quenty/jsonutils@10.10.5-canary.559.339cfa7.0) (2025-05-10)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Additional type checking updates ([05ba29a](https://github.com/Quenty/NevermoreEngine/commit/05ba29a03efc9f3feed74b34f1d9dfb237496214))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [10.10.4](https://github.com/Quenty/NevermoreEngine/compare/@quenty/jsonutils@10.10.3...@quenty/jsonutils@10.10.4) (2025-04-10)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/jsonutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/jsonutils",
3
- "version": "10.10.4",
3
+ "version": "10.10.5-canary.559.339cfa7.0",
4
4
  "description": "JSON utility functions for Roblox Lua",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,11 +25,11 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/loader": "^10.8.3",
29
- "@quenty/promise": "^10.10.4"
28
+ "@quenty/loader": "10.8.4-canary.559.339cfa7.0",
29
+ "@quenty/promise": "10.10.5-canary.559.339cfa7.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "b06c070ae91d5dab7bd8de6e290ad2caabb15d8f"
34
+ "gitHead": "339cfa778736f08768ed7305041f6221faa35bfc"
35
35
  }
@@ -1,3 +1,4 @@
1
+ --!strict
1
2
  --[=[
2
3
  Utility methods for JSON
3
4
  @class JSONUtils
@@ -58,7 +59,7 @@ end
58
59
  @param str string
59
60
  @return Promise<table>
60
61
  ]=]
61
- function JSONUtils.promiseJSONDecode(str: string)
62
+ function JSONUtils.promiseJSONDecode(str: string): Promise.Promise<unknown>
62
63
  if type(str) ~= "string" then
63
64
  return Promise.rejected("Not a string")
64
65
  end
@@ -79,4 +80,4 @@ function JSONUtils.promiseJSONDecode(str: string)
79
80
  end)
80
81
  end
81
82
 
82
- return JSONUtils
83
+ return JSONUtils