@warp-drive-mirror/utilities 5.7.0-alpha.27 → 5.7.0-alpha.28
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/dist/string.cjs +2 -2
- package/package.json +4 -4
package/dist/string.cjs
CHANGED
|
@@ -22,7 +22,7 @@ const DEFAULT_MAX_CACHE_SIZE = 10_000;
|
|
|
22
22
|
* and by `@warp-drive-mirror/utilities/string`. It is not intended
|
|
23
23
|
* for use outside of these modules at this time.
|
|
24
24
|
*
|
|
25
|
-
* @
|
|
25
|
+
* @private
|
|
26
26
|
*/
|
|
27
27
|
class LRUCache {
|
|
28
28
|
// debug stats
|
|
@@ -68,7 +68,7 @@ const STRING_DASHERIZE_CACHE = new LRUCache(key => key.replace(STRING_DECAMELIZE
|
|
|
68
68
|
* This version is only in this location to support a deprecated
|
|
69
69
|
* behavior in the core package and will be removed in a future.
|
|
70
70
|
*
|
|
71
|
-
* @
|
|
71
|
+
* @private
|
|
72
72
|
*/
|
|
73
73
|
function dasherize$1(str) {
|
|
74
74
|
return STRING_DASHERIZE_CACHE.get(str);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive-mirror/utilities",
|
|
3
|
-
"version": "5.7.0-alpha.
|
|
3
|
+
"version": "5.7.0-alpha.28",
|
|
4
4
|
"description": "Utilities package for WarpDrive | Things your app might find useful",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@warp-drive-mirror/core": "5.7.0-alpha.
|
|
39
|
+
"@warp-drive-mirror/core": "5.7.0-alpha.28"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@embroider/macros": "^1.16.12"
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"@babel/core": "^7.26.10",
|
|
46
46
|
"@babel/plugin-transform-typescript": "^7.27.0",
|
|
47
47
|
"@babel/preset-typescript": "^7.27.0",
|
|
48
|
-
"@warp-drive/internal-config": "5.7.0-alpha.
|
|
49
|
-
"@warp-drive-mirror/core": "5.7.0-alpha.
|
|
48
|
+
"@warp-drive/internal-config": "5.7.0-alpha.28",
|
|
49
|
+
"@warp-drive-mirror/core": "5.7.0-alpha.28",
|
|
50
50
|
"decorator-transforms": "^2.3.0",
|
|
51
51
|
"expect-type": "^1.2.1",
|
|
52
52
|
"typescript": "^5.8.3",
|