@rimbu/base 0.11.3 → 0.11.4
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 +19 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
<img src="https://github.com/rimbu-org/rimbu/raw/main/assets/rimbu_logo.svg" />
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
|
+
[](https://www.npmjs.com/package/@rimbu/base) [](http://deno.land/x/rimbu)
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
5
9
|
# @rimbu/base
|
|
6
10
|
|
|
7
11
|
This package contains mostly utilities to implement the other Rimbu collections. The types are not exported by any of the other packages, but are internally used by most of them.
|
|
@@ -12,14 +16,27 @@ For complete documentation please visit the _[Rimbu Docs](https://rimbu.org)_ or
|
|
|
12
16
|
|
|
13
17
|
## Installation
|
|
14
18
|
|
|
15
|
-
###
|
|
19
|
+
### Compabitity
|
|
20
|
+
|
|
21
|
+
- [`Node >= 16` ](https://nodejs.org)
|
|
22
|
+
- [`Deno` ](https://deno.com/runtime)
|
|
23
|
+
- [`Bun >= 0.6.0` ](https://bun.sh/)
|
|
24
|
+
- `Web` 
|
|
25
|
+
|
|
26
|
+
### Yarn / NPM / Bun
|
|
27
|
+
|
|
28
|
+
For `yarn`:
|
|
16
29
|
|
|
17
30
|
> `yarn add @rimbu/base`
|
|
18
31
|
|
|
19
|
-
|
|
32
|
+
For `npm`:
|
|
20
33
|
|
|
21
34
|
> `npm i @rimbu/base`
|
|
22
35
|
|
|
36
|
+
For `bun`:
|
|
37
|
+
|
|
38
|
+
> `bun add @rimbu/base`
|
|
39
|
+
|
|
23
40
|
### Deno
|
|
24
41
|
|
|
25
42
|
For Deno, the following approach is recommended:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rimbu/base",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.4",
|
|
4
4
|
"description": "Utilities to implement Rimbu collections",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"array",
|
|
@@ -61,11 +61,11 @@
|
|
|
61
61
|
},
|
|
62
62
|
"sideEffects": false,
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@rimbu/common": "
|
|
64
|
+
"@rimbu/common": "*",
|
|
65
65
|
"tslib": "^2.5.0"
|
|
66
66
|
},
|
|
67
67
|
"publishConfig": {
|
|
68
68
|
"access": "public"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "5400f8471bdfc7a227f7defc4a3942bdf3ff1423"
|
|
71
71
|
}
|