@thi.ng/rstream-log 4.0.1 → 4.0.3

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,22 @@
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
+ ## [4.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@4.0.2...@thi.ng/rstream-log@4.0.3) (2021-10-15)
7
+
8
+ **Note:** Version bump only for package @thi.ng/rstream-log
9
+
10
+
11
+
12
+
13
+
14
+ ## [4.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@4.0.1...@thi.ng/rstream-log@4.0.2) (2021-10-15)
15
+
16
+ **Note:** Version bump only for package @thi.ng/rstream-log
17
+
18
+
19
+
20
+
21
+
6
22
  ## [4.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/rstream-log@4.0.0...@thi.ng/rstream-log@4.0.1) (2021-10-13)
7
23
 
8
24
  **Note:** Version bump only for package @thi.ng/rstream-log
package/README.md CHANGED
@@ -70,7 +70,7 @@ node --experimental-repl-await
70
70
  > const rstreamLog = await import("@thi.ng/rstream-log");
71
71
  ```
72
72
 
73
- Package sizes (gzipped, pre-treeshake): ESM: 806 bytes
73
+ Package sizes (gzipped, pre-treeshake): ESM: 805 bytes
74
74
 
75
75
  ## Dependencies
76
76
 
package/logger.js CHANGED
@@ -4,7 +4,6 @@ import { CloseMode } from "@thi.ng/rstream/api";
4
4
  import { __nextID } from "@thi.ng/rstream/idgen";
5
5
  import { StreamMerge } from "@thi.ng/rstream/merge";
6
6
  export class Logger extends StreamMerge {
7
- level;
8
7
  constructor(...args) {
9
8
  let id;
10
9
  let level = LogLevel.FINE;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rstream-log",
3
- "version": "4.0.1",
3
+ "version": "4.0.3",
4
4
  "description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,16 +34,16 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.0.1",
38
- "@thi.ng/checks": "^3.0.1",
39
- "@thi.ng/errors": "^2.0.1",
40
- "@thi.ng/logger": "^1.0.1",
41
- "@thi.ng/rstream": "^7.0.1",
42
- "@thi.ng/strings": "^3.0.1",
43
- "@thi.ng/transducers": "^8.0.1"
37
+ "@thi.ng/api": "^8.0.3",
38
+ "@thi.ng/checks": "^3.0.3",
39
+ "@thi.ng/errors": "^2.0.3",
40
+ "@thi.ng/logger": "^1.0.3",
41
+ "@thi.ng/rstream": "^7.0.3",
42
+ "@thi.ng/strings": "^3.0.3",
43
+ "@thi.ng/transducers": "^8.0.3"
44
44
  },
45
45
  "devDependencies": {
46
- "@thi.ng/testament": "^0.1.1"
46
+ "@thi.ng/testament": "^0.1.3"
47
47
  },
48
48
  "keywords": [
49
49
  "datastructure",
@@ -93,5 +93,5 @@
93
93
  ],
94
94
  "year": 2017
95
95
  },
96
- "gitHead": "2e6b3d7c0f4c5686c1e9bdb4902ed7d3f90bcc19"
96
+ "gitHead": "1fb38cac74d6c009d96855c28784a267a81badf1"
97
97
  }