@rimbu/base 0.10.1 → 0.11.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.
Files changed (2) hide show
  1. package/README.md +0 -4
  2. package/package.json +3 -7
package/README.md CHANGED
@@ -53,10 +53,6 @@ To run your script (let's assume the entry point is in `src/main.ts`):
53
53
 
54
54
  `deno run --import-map import_map.json src/main.ts`
55
55
 
56
- Because Rimbu uses advanced types, this may slow down the type checking part when running your code. If you're able to rely on your code editor to provide type errors, you can skip the Deno type check using the `--no-check` flag:
57
-
58
- `deno run --import-map import_map.json --no-check src/main.ts`
59
-
60
56
  ## Usage
61
57
 
62
58
  ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rimbu/base",
3
- "version": "0.10.1",
3
+ "version": "0.11.0",
4
4
  "description": "Utilities to implement Rimbu collections",
5
5
  "keywords": [
6
6
  "array",
@@ -52,15 +52,11 @@
52
52
  },
53
53
  "sideEffects": false,
54
54
  "dependencies": {
55
- "@rimbu/common": "^0.11.0",
55
+ "@rimbu/common": "^0.12.0",
56
56
  "tslib": "^2.4.0"
57
57
  },
58
58
  "publishConfig": {
59
59
  "access": "public"
60
60
  },
61
- "denoify": {
62
- "index": "src/index.ts",
63
- "replacer": "../../config/denoify-rimbu-replacer.js"
64
- },
65
- "gitHead": "28454fe17a4e51a42f6107f7b1733270d0d88de5"
61
+ "gitHead": "442ffd299583458d458e9bbe3dd02c67828707f3"
66
62
  }