@quenty/memoize 1.7.0-canary.ae8d76d.0 → 1.7.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,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
- # [1.7.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/memoize@1.6.3...@quenty/memoize@1.7.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [1.7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/memoize@1.6.3...@quenty/memoize@1.7.0) (2025-05-10)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/memoize
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/memoize",
3
- "version": "1.7.0-canary.ae8d76d.0",
3
+ "version": "1.7.0",
4
4
  "description": "Memoization library",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,12 +25,12 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/loader": "10.8.3",
29
- "@quenty/lrucache": "1.7.0-canary.ae8d76d.0",
30
- "@quenty/tuple": "1.6.0-canary.ae8d76d.0"
28
+ "@quenty/loader": "^10.9.0",
29
+ "@quenty/lrucache": "^1.7.0",
30
+ "@quenty/tuple": "^1.6.0"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
35
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
36
36
  }
@@ -66,10 +66,9 @@ end
66
66
  function MemorizeUtils.createCacheConfig(cacheConfig: CacheConfig?): CacheConfig
67
67
  assert(MemorizeUtils.isCacheConfig(cacheConfig) or cacheConfig == nil, "Bad cacheConfig")
68
68
 
69
-
70
69
  return {
71
- maxSize = if cacheConfig and cacheConfig.maxSize then cacheConfig.maxSize else 128;
70
+ maxSize = if cacheConfig and cacheConfig.maxSize then cacheConfig.maxSize else 128,
72
71
  }
73
72
  end
74
73
 
75
- return MemorizeUtils
74
+ return MemorizeUtils