@rimbu/base 0.11.2 → 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.
Files changed (2) hide show
  1. package/README.md +19 -2
  2. package/package.json +4 -4
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
+ [![npm version](https://badge.fury.io/js/@rimbu%2Fbase.svg)](https://www.npmjs.com/package/@rimbu/base) [![Deno](https://shield.deno.dev/x/rimbu)](http://deno.land/x/rimbu)
6
+
7
+ ![Licence](https://img.shields.io/github/license/rimbu-org/rimbu)
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
- ### Yarn/NPM
19
+ ### Compabitity
20
+
21
+ - [`Node >= 16` ![NodeJS](https://img.shields.io/badge/node.js-6DA55F?logo=node.js&logoColor=white)](https://nodejs.org)
22
+ - [`Deno` ![Deno JS](https://img.shields.io/badge/deno%20js-000000?logo=deno&logoColor=white)](https://deno.com/runtime)
23
+ - [`Bun >= 0.6.0` ![Bun](https://img.shields.io/badge/Bun-%23000000.svg?logoColor=white)](https://bun.sh/)
24
+ - `Web` ![HTML5](https://img.shields.io/badge/html5-%23E34F26.svg?logoColor=white)
25
+
26
+ ### Yarn / NPM / Bun
27
+
28
+ For `yarn`:
16
29
 
17
30
  > `yarn add @rimbu/base`
18
31
 
19
- or
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.2",
3
+ "version": "0.11.4",
4
4
  "description": "Utilities to implement Rimbu collections",
5
5
  "keywords": [
6
6
  "array",
@@ -33,9 +33,9 @@
33
33
  "exports": {
34
34
  ".": {
35
35
  "types": "./dist/types/index.d.ts",
36
+ "bun": "./src/index.ts",
36
37
  "import": "./dist/module/index.js",
37
38
  "require": "./dist/main/index.js",
38
- "bun": "./src/index.ts",
39
39
  "default": "./dist/module/index.js"
40
40
  }
41
41
  },
@@ -61,11 +61,11 @@
61
61
  },
62
62
  "sideEffects": false,
63
63
  "dependencies": {
64
- "@rimbu/common": "^0.12.2",
64
+ "@rimbu/common": "*",
65
65
  "tslib": "^2.5.0"
66
66
  },
67
67
  "publishConfig": {
68
68
  "access": "public"
69
69
  },
70
- "gitHead": "4ffac464a67030c80e35241766098837498426e6"
70
+ "gitHead": "5400f8471bdfc7a227f7defc4a3942bdf3ff1423"
71
71
  }