@thi.ng/leb128 2.0.0 → 2.0.6

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,54 @@
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.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@2.0.5...@thi.ng/leb128@2.0.6) (2021-10-28)
7
+
8
+ **Note:** Version bump only for package @thi.ng/leb128
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@2.0.4...@thi.ng/leb128@2.0.5) (2021-10-28)
15
+
16
+ **Note:** Version bump only for package @thi.ng/leb128
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@2.0.3...@thi.ng/leb128@2.0.4) (2021-10-25)
23
+
24
+ **Note:** Version bump only for package @thi.ng/leb128
25
+
26
+
27
+
28
+
29
+
30
+ ## [2.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@2.0.2...@thi.ng/leb128@2.0.3) (2021-10-15)
31
+
32
+ **Note:** Version bump only for package @thi.ng/leb128
33
+
34
+
35
+
36
+
37
+
38
+ ## [2.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@2.0.1...@thi.ng/leb128@2.0.2) (2021-10-15)
39
+
40
+ **Note:** Version bump only for package @thi.ng/leb128
41
+
42
+
43
+
44
+
45
+
46
+ ## [2.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@2.0.0...@thi.ng/leb128@2.0.1) (2021-10-13)
47
+
48
+ **Note:** Version bump only for package @thi.ng/leb128
49
+
50
+
51
+
52
+
53
+
6
54
  # [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/leb128@1.0.69...@thi.ng/leb128@2.0.0) (2021-10-12)
7
55
 
8
56
 
package/README.md CHANGED
@@ -59,10 +59,11 @@ ES module import:
59
59
 
60
60
  [Skypack documentation](https://docs.skypack.dev/)
61
61
 
62
- For NodeJS (v14.6+):
62
+ For Node.js REPL:
63
63
 
64
64
  ```text
65
- node --experimental-specifier-resolution=node --experimental-repl-await
65
+ # with flag only for < v16
66
+ node --experimental-repl-await
66
67
 
67
68
  > const leb128 = await import("@thi.ng/leb128");
68
69
  ```
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { hasWASM } from "@thi.ng/checks/has-wasm";
2
2
  import { unsupported } from "@thi.ng/errors/unsupported";
3
3
  import { base64Decode } from "@thi.ng/transducers-binary/base64";
4
- import { BINARY } from "./binary";
4
+ import { BINARY } from "./binary.js";
5
5
  let wasm;
6
6
  let U8;
7
7
  if (hasWASM()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/leb128",
3
- "version": "2.0.0",
3
+ "version": "2.0.6",
4
4
  "description": "WASM based LEB128 encoder / decoder (signed & unsigned)",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -35,12 +35,12 @@
35
35
  "test": "testament test"
36
36
  },
37
37
  "dependencies": {
38
- "@thi.ng/checks": "^3.0.0",
39
- "@thi.ng/errors": "^2.0.0",
40
- "@thi.ng/transducers-binary": "^2.0.0"
38
+ "@thi.ng/checks": "^3.0.6",
39
+ "@thi.ng/errors": "^2.0.6",
40
+ "@thi.ng/transducers-binary": "^2.0.6"
41
41
  },
42
42
  "devDependencies": {
43
- "@thi.ng/testament": "^0.1.0"
43
+ "@thi.ng/testament": "^0.1.6"
44
44
  },
45
45
  "keywords": [
46
46
  "64bit",
@@ -57,6 +57,9 @@
57
57
  "publishConfig": {
58
58
  "access": "public"
59
59
  },
60
+ "engines": {
61
+ "node": ">=12.7"
62
+ },
60
63
  "files": [
61
64
  "*.js",
62
65
  "*.d.ts"
@@ -69,5 +72,5 @@
69
72
  "thi.ng": {
70
73
  "year": 2019
71
74
  },
72
- "gitHead": "9ac1344b38b565eb894306fbf72233b6c0b2d115"
75
+ "gitHead": "c17a556ad25f6882dfa8f806a1d9e8ed7ac7cd71"
73
76
  }