@rimbu/base 0.6.6 → 0.7.2

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 +1 -14
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains mostly utilities to implement the other Rimbu collections.
8
8
 
9
9
  Most important are the exported `Arr` methods that are used at the basis of all the block-based data structures. These methods should be as correct and efficient as possible.
10
10
 
11
- For complete documentation please visit the _[Rimbu Docs](http://rimbu.org)_.
11
+ For complete documentation please visit the _[Rimbu Docs](https://rimbu.org)_.
12
12
 
13
13
  ## Installation
14
14
 
@@ -46,19 +46,6 @@ Running your script then becomes:
46
46
 
47
47
  > `deno run --no-check --config tsconfig.json <your-script>.ts`
48
48
 
49
- ## Recommended `tsconfig.json` settings
50
-
51
- Rimbu uses advanced and recursive typing, potentially making the TypeScript compiler quite slow in some cases, or causing infinite recursion. It is recommended to set the following values in the `tsconfig.json` file of your project:
52
-
53
- ```json
54
- {
55
- "compilerOptions": {
56
- "skipLibCheck": true,
57
- "noStrictGenericChecks": true
58
- }
59
- }
60
- ```
61
-
62
49
  ## Usage
63
50
 
64
51
  ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rimbu/base",
3
- "version": "0.6.6",
3
+ "version": "0.7.2",
4
4
  "description": "Utilities to implement Rimbu collections",
5
5
  "keywords": [
6
6
  "array",
@@ -8,7 +8,7 @@
8
8
  "internal",
9
9
  "typescript"
10
10
  ],
11
- "homepage": "http://rimbu.org",
11
+ "homepage": "https://rimbu.org",
12
12
  "author": {
13
13
  "name": "Arvid Nicolaas",
14
14
  "email": "arvid@rimbu.org",
@@ -43,7 +43,7 @@
43
43
  "bundle:types": "tsc --p tsconfig.types.json",
44
44
  "clean": "rimraf dist",
45
45
  "format": "yarn format:base --write",
46
- "format:base": "prettier \"{!CHANGELOG.md}|**/*.{ts,tsx,js,json,md}\"",
46
+ "format:base": "prettier \"{!CHANGELOG.md}|**/**/*.{ts,tsx,js,json,md}\"",
47
47
  "format:check": "yarn format:base --check",
48
48
  "lint": "eslint src",
49
49
  "test": "jest",
@@ -51,7 +51,7 @@
51
51
  },
52
52
  "sideEffects": false,
53
53
  "dependencies": {
54
- "@rimbu/common": "^0.7.4",
54
+ "@rimbu/common": "^0.8.2",
55
55
  "tslib": "^2.3.1"
56
56
  },
57
57
  "publishConfig": {
@@ -60,5 +60,5 @@
60
60
  "denoify": {
61
61
  "replacer": "../../config/denoify-rimbu-replacer.js"
62
62
  },
63
- "gitHead": "e509f9938fad6253702f6b78eb9f8e3b3a8f92ac"
63
+ "gitHead": "1594b907f4dbbd994a52f0e2e94ffd9217420ff5"
64
64
  }