@rebasepro/utils 0.21.0 → 0.21.1-canary.g8c5a265
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/README.md +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,14 +9,14 @@ pnpm add @rebasepro/utils
|
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
ESM-only: `"type": "module"` with no CommonJS build, so it is loaded with
|
|
12
|
-
`import`.
|
|
13
|
-
`require(esm)
|
|
12
|
+
`import`. It needs Node `>=22.22.0` (its `engines` floor), where `require()`
|
|
13
|
+
of it resolves too: Node has supported `require(esm)` since 22.12.
|
|
14
14
|
|
|
15
15
|
## What This Package Does
|
|
16
16
|
|
|
17
17
|
A zero-dependency\* collection of pure utility functions for string manipulation, deep object operations, pluralization, hashing, and more. Used internally by most Rebase packages.
|
|
18
18
|
|
|
19
|
-
\*Runtime
|
|
19
|
+
\*Runtime dependencies: `object-hash` (for `getHashValue`) and `@rebasepro/types`.
|
|
20
20
|
|
|
21
21
|
## Key Exports
|
|
22
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebasepro/utils",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.1-canary.g8c5a265",
|
|
4
4
|
"description": "Utility functions for Rebase",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rebase",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"object-hash": "^3.0.0",
|
|
46
|
-
"@rebasepro/types": "0.21.
|
|
46
|
+
"@rebasepro/types": "0.21.1-canary.g8c5a265"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@jest/globals": "^30.4.1",
|