@thi.ng/rstream-log 5.1.16 → 5.1.18
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 +1 -1
- package/format.d.ts +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
package/format.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare const isoDate: (dt: number) => string;
|
|
|
16
16
|
* @param bodyFmt
|
|
17
17
|
* @param wrap
|
|
18
18
|
*/
|
|
19
|
-
export declare const formatString: (dateFmt?: DateFormat, bodyFmt?: BodyFormat, wrap?: (
|
|
19
|
+
export declare const formatString: (dateFmt?: DateFormat, bodyFmt?: BodyFormat, wrap?: (msg: string, entry: LogEntry) => string) => Transducer<LogEntry, string>;
|
|
20
20
|
/**
|
|
21
21
|
* Takes an array of regex patterns and optional `mask` string. Returns
|
|
22
22
|
* transducer which replaces all found pattern occurrences with `mask`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rstream-log",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.18",
|
|
4
4
|
"description": "Structured, multilevel & hierarchical loggers based on @thi.ng/rstream",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,18 +36,18 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.11.
|
|
40
|
-
"@thi.ng/checks": "^3.6.
|
|
41
|
-
"@thi.ng/logger": "^3.0.
|
|
42
|
-
"@thi.ng/rstream": "^8.
|
|
43
|
-
"@thi.ng/strings": "^3.7.
|
|
44
|
-
"@thi.ng/transducers": "^9.0.
|
|
39
|
+
"@thi.ng/api": "^8.11.2",
|
|
40
|
+
"@thi.ng/checks": "^3.6.4",
|
|
41
|
+
"@thi.ng/logger": "^3.0.12",
|
|
42
|
+
"@thi.ng/rstream": "^8.5.0",
|
|
43
|
+
"@thi.ng/strings": "^3.7.33",
|
|
44
|
+
"@thi.ng/transducers": "^9.0.5"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@microsoft/api-extractor": "^7.43.
|
|
48
|
-
"esbuild": "^0.
|
|
49
|
-
"typedoc": "^0.25.
|
|
50
|
-
"typescript": "^5.4.
|
|
47
|
+
"@microsoft/api-extractor": "^7.43.2",
|
|
48
|
+
"esbuild": "^0.21.1",
|
|
49
|
+
"typedoc": "^0.25.13",
|
|
50
|
+
"typescript": "^5.4.5"
|
|
51
51
|
},
|
|
52
52
|
"keywords": [
|
|
53
53
|
"datastructure",
|
|
@@ -98,5 +98,5 @@
|
|
|
98
98
|
],
|
|
99
99
|
"year": 2017
|
|
100
100
|
},
|
|
101
|
-
"gitHead": "
|
|
101
|
+
"gitHead": "df34b4a9e650cc7323575356de207d78933bdcf3\n"
|
|
102
102
|
}
|