@thi.ng/rstream-log 4.1.4 → 4.1.7
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 +1 -1
- package/README.md +2 -2
- package/package.json +19 -19
package/CHANGELOG.md
CHANGED
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:
|
|
73
|
+
Package sizes (gzipped, pre-treeshake): ESM: 847 bytes
|
|
74
74
|
|
|
75
75
|
## Dependencies
|
|
76
76
|
|
|
@@ -139,4 +139,4 @@ If this project contributes to an academic publication, please cite it as:
|
|
|
139
139
|
|
|
140
140
|
## License
|
|
141
141
|
|
|
142
|
-
© 2017 -
|
|
142
|
+
© 2017 - 2022 Karsten Schmidt // Apache Software License 2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rstream-log",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.7",
|
|
4
4
|
"description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,21 +34,21 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.3.
|
|
38
|
-
"@thi.ng/checks": "^3.1.
|
|
39
|
-
"@thi.ng/errors": "^2.1.
|
|
40
|
-
"@thi.ng/logger": "^1.1.
|
|
41
|
-
"@thi.ng/rstream": "^7.2.
|
|
42
|
-
"@thi.ng/strings": "^3.3.
|
|
43
|
-
"@thi.ng/transducers": "^8.1
|
|
37
|
+
"@thi.ng/api": "^8.3.5",
|
|
38
|
+
"@thi.ng/checks": "^3.1.5",
|
|
39
|
+
"@thi.ng/errors": "^2.1.5",
|
|
40
|
+
"@thi.ng/logger": "^1.1.5",
|
|
41
|
+
"@thi.ng/rstream": "^7.2.4",
|
|
42
|
+
"@thi.ng/strings": "^3.3.3",
|
|
43
|
+
"@thi.ng/transducers": "^8.3.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@microsoft/api-extractor": "^7.19.
|
|
47
|
-
"@thi.ng/testament": "^0.2.
|
|
46
|
+
"@microsoft/api-extractor": "^7.19.4",
|
|
47
|
+
"@thi.ng/testament": "^0.2.5",
|
|
48
48
|
"rimraf": "^3.0.2",
|
|
49
49
|
"tools": "^0.0.1",
|
|
50
|
-
"typedoc": "^0.22.
|
|
51
|
-
"typescript": "^4.
|
|
50
|
+
"typedoc": "^0.22.13",
|
|
51
|
+
"typescript": "^4.6.2"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
54
54
|
"datastructure",
|
|
@@ -73,22 +73,22 @@
|
|
|
73
73
|
],
|
|
74
74
|
"exports": {
|
|
75
75
|
".": {
|
|
76
|
-
"
|
|
76
|
+
"default": "./index.js"
|
|
77
77
|
},
|
|
78
78
|
"./api": {
|
|
79
|
-
"
|
|
79
|
+
"default": "./api.js"
|
|
80
80
|
},
|
|
81
81
|
"./console": {
|
|
82
|
-
"
|
|
82
|
+
"default": "./console.js"
|
|
83
83
|
},
|
|
84
84
|
"./filter": {
|
|
85
|
-
"
|
|
85
|
+
"default": "./filter.js"
|
|
86
86
|
},
|
|
87
87
|
"./format": {
|
|
88
|
-
"
|
|
88
|
+
"default": "./format.js"
|
|
89
89
|
},
|
|
90
90
|
"./logger": {
|
|
91
|
-
"
|
|
91
|
+
"default": "./logger.js"
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
94
|
"thi.ng": {
|
|
@@ -98,5 +98,5 @@
|
|
|
98
98
|
],
|
|
99
99
|
"year": 2017
|
|
100
100
|
},
|
|
101
|
-
"gitHead": "
|
|
101
|
+
"gitHead": "5ee1feb590dd935593b1dd4e7f38a3ed3ba64765\n"
|
|
102
102
|
}
|