@thi.ng/equiv 2.0.0 → 2.0.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/CHANGELOG.md CHANGED
@@ -3,6 +3,38 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@2.0.3...@thi.ng/equiv@2.0.4) (2021-10-25)
7
+
8
+ **Note:** Version bump only for package @thi.ng/equiv
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@2.0.2...@thi.ng/equiv@2.0.3) (2021-10-15)
15
+
16
+ **Note:** Version bump only for package @thi.ng/equiv
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@2.0.1...@thi.ng/equiv@2.0.2) (2021-10-15)
23
+
24
+ **Note:** Version bump only for package @thi.ng/equiv
25
+
26
+
27
+
28
+
29
+
30
+ ## [2.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@2.0.0...@thi.ng/equiv@2.0.1) (2021-10-13)
31
+
32
+ **Note:** Version bump only for package @thi.ng/equiv
33
+
34
+
35
+
36
+
37
+
6
38
  # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@1.0.45...@thi.ng/equiv@2.0.0) (2021-10-12)
7
39
 
8
40
 
package/README.md CHANGED
@@ -54,10 +54,11 @@ ES module import:
54
54
 
55
55
  [Skypack documentation](https://docs.skypack.dev/)
56
56
 
57
- For NodeJS (v14.6+):
57
+ For Node.js REPL:
58
58
 
59
59
  ```text
60
- node --experimental-specifier-resolution=node --experimental-repl-await
60
+ # with flag only for < v16
61
+ node --experimental-repl-await
61
62
 
62
63
  > const equiv = await import("@thi.ng/equiv");
63
64
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/equiv",
3
- "version": "2.0.0",
3
+ "version": "2.0.4",
4
4
  "description": "Extensible deep value equivalence checking for any data types",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,7 +34,7 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "devDependencies": {
37
- "@thi.ng/testament": "^0.1.0"
37
+ "@thi.ng/testament": "^0.1.4"
38
38
  },
39
39
  "keywords": [
40
40
  "array",
@@ -51,6 +51,9 @@
51
51
  "process": false,
52
52
  "setTimeout": false
53
53
  },
54
+ "engines": {
55
+ "node": ">=12.7"
56
+ },
54
57
  "files": [
55
58
  "*.js",
56
59
  "*.d.ts"
@@ -60,5 +63,5 @@
60
63
  "import": "./index.js"
61
64
  }
62
65
  },
63
- "gitHead": "9ac1344b38b565eb894306fbf72233b6c0b2d115"
66
+ "gitHead": "9ff00a103f76cc4917ef3f244132e218f2300a05"
64
67
  }