@thi.ng/hdom-mock 2.0.0 → 2.0.1

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,14 @@
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.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@2.0.0...@thi.ng/hdom-mock@2.0.1) (2021-10-13)
7
+
8
+ **Note:** Version bump only for package @thi.ng/hdom-mock
9
+
10
+
11
+
12
+
13
+
6
14
  # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-mock@1.1.64...@thi.ng/hdom-mock@2.0.0) (2021-10-12)
7
15
 
8
16
 
package/README.md CHANGED
@@ -46,10 +46,11 @@ ES module import:
46
46
 
47
47
  [Skypack documentation](https://docs.skypack.dev/)
48
48
 
49
- For NodeJS (v14.6+):
49
+ For Node.js REPL:
50
50
 
51
51
  ```text
52
- node --experimental-specifier-resolution=node --experimental-repl-await
52
+ # with flag only for < v16
53
+ node --experimental-repl-await
53
54
 
54
55
  > const hdomMock = await import("@thi.ng/hdom-mock");
55
56
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hdom-mock",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Mock base implementation for @thi.ng/hdom API",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,12 +34,12 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.0.0",
38
- "@thi.ng/checks": "^3.0.0",
39
- "@thi.ng/hdom": "^9.0.0"
37
+ "@thi.ng/api": "^8.0.1",
38
+ "@thi.ng/checks": "^3.0.1",
39
+ "@thi.ng/hdom": "^9.0.1"
40
40
  },
41
41
  "devDependencies": {
42
- "@thi.ng/testament": "^0.1.0"
42
+ "@thi.ng/testament": "^0.1.1"
43
43
  },
44
44
  "keywords": [
45
45
  "datastructure",
@@ -48,6 +48,9 @@
48
48
  "publishConfig": {
49
49
  "access": "public"
50
50
  },
51
+ "engines": {
52
+ "node": ">=12.7"
53
+ },
51
54
  "files": [
52
55
  "*.js",
53
56
  "*.d.ts"
@@ -62,5 +65,5 @@
62
65
  "status": "alpha",
63
66
  "year": 2018
64
67
  },
65
- "gitHead": "9ac1344b38b565eb894306fbf72233b6c0b2d115"
68
+ "gitHead": "2e6b3d7c0f4c5686c1e9bdb4902ed7d3f90bcc19"
66
69
  }