@thi.ng/bitstream 2.2.7 → 2.2.9

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
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2022-10-28T19:08:39Z
3
+ - **Last updated**: 2022-11-30T22:27:37Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
@@ -45,9 +45,9 @@ and/or version bumps of transitive dependencies.
45
45
 
46
46
  #### ♻️ Refactoring
47
47
 
48
- - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
49
48
  - update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
50
49
  - add .js suffix for all relative imports
50
+ - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
51
51
 
52
52
  # [2.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/bitstream@2.0.0) (2021-10-12)
53
53
 
@@ -68,9 +68,9 @@ and/or version bumps of transitive dependencies.
68
68
 
69
69
  #### ♻️ Refactoring
70
70
 
71
- - update imports ([f64e597](https://github.com/thi-ng/umbrella/commit/f64e597))
72
71
  - update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
73
72
  - update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
73
+ - update imports ([f64e597](https://github.com/thi-ng/umbrella/commit/f64e597))
74
74
 
75
75
  ## [1.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/bitstream@1.1.0) (2019-07-07)
76
76
 
package/README.md CHANGED
@@ -59,7 +59,7 @@ node --experimental-repl-await
59
59
  > const bitstream = await import("@thi.ng/bitstream");
60
60
  ```
61
61
 
62
- Package sizes (gzipped, pre-treeshake): ESM: 1.31 KB
62
+ Package sizes (brotli'd, pre-treeshake): ESM: 1.21 KB
63
63
 
64
64
  ## Dependencies
65
65
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/bitstream",
3
- "version": "2.2.7",
3
+ "version": "2.2.9",
4
4
  "description": "ES6 iterator based read/write bit streams with support for variable word widths",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,14 +34,14 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/errors": "^2.2.3"
37
+ "@thi.ng/errors": "^2.2.5"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@microsoft/api-extractor": "^7.33.5",
41
- "@thi.ng/testament": "^0.3.4",
41
+ "@thi.ng/testament": "^0.3.6",
42
42
  "rimraf": "^3.0.2",
43
43
  "tools": "^0.0.1",
44
- "typedoc": "^0.23.18",
44
+ "typedoc": "^0.23.20",
45
45
  "typescript": "^4.8.4"
46
46
  },
47
47
  "keywords": [
@@ -58,8 +58,8 @@
58
58
  "node": ">=12.7"
59
59
  },
60
60
  "files": [
61
- "*.js",
62
- "*.d.ts"
61
+ "./*.js",
62
+ "./*.d.ts"
63
63
  ],
64
64
  "exports": {
65
65
  ".": {
@@ -81,5 +81,5 @@
81
81
  "rle-pack"
82
82
  ]
83
83
  },
84
- "gitHead": "41e59c7ad9bf24bb0230a5f60d05715e0fc1c1e6\n"
84
+ "gitHead": "1fe40da507070653f420156d91e6b27cf682004f\n"
85
85
  }