@thi.ng/hex 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/hex@2.0.3...@thi.ng/hex@2.0.4) (2021-10-25)
7
+
8
+ **Note:** Version bump only for package @thi.ng/hex
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@2.0.2...@thi.ng/hex@2.0.3) (2021-10-15)
15
+
16
+ **Note:** Version bump only for package @thi.ng/hex
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@2.0.1...@thi.ng/hex@2.0.2) (2021-10-15)
23
+
24
+ **Note:** Version bump only for package @thi.ng/hex
25
+
26
+
27
+
28
+
29
+
30
+ ## [2.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@2.0.0...@thi.ng/hex@2.0.1) (2021-10-13)
31
+
32
+ **Note:** Version bump only for package @thi.ng/hex
33
+
34
+
35
+
36
+
37
+
6
38
  # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hex@1.0.4...@thi.ng/hex@2.0.0) (2021-10-12)
7
39
 
8
40
 
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 hex = await import("@thi.ng/hex");
55
56
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hex",
3
- "version": "2.0.0",
3
+ "version": "2.0.4",
4
4
  "description": "Hex string formatters for 4/8/16/24/32/48/64bit words",
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
  "binary",
@@ -46,6 +46,9 @@
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  },
49
+ "engines": {
50
+ "node": ">=12.7"
51
+ },
49
52
  "files": [
50
53
  "*.js",
51
54
  "*.d.ts"
@@ -61,5 +64,5 @@
61
64
  ],
62
65
  "year": 2020
63
66
  },
64
- "gitHead": "9ac1344b38b565eb894306fbf72233b6c0b2d115"
67
+ "gitHead": "9ff00a103f76cc4917ef3f244132e218f2300a05"
65
68
  }