loglevel-mixin 6.0.5 → 6.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/LICENSE +1 -1
- package/README.md +1 -1
- package/package.json +5 -5
- package/src/loglevel-mixin.mjs +1 -1
package/LICENSE
CHANGED
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "loglevel-mixin",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"lint:docs": "documentation lint ./src/**/*.mjs"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"ava": "^
|
|
33
|
-
"c8": "^7.
|
|
32
|
+
"ava": "^4.0.1",
|
|
33
|
+
"c8": "^7.11.0",
|
|
34
34
|
"documentation": "^13.2.5",
|
|
35
|
-
"semantic-release": "^
|
|
35
|
+
"semantic-release": "^19.0.2"
|
|
36
36
|
},
|
|
37
37
|
"engines": {
|
|
38
|
-
"node": ">=14.
|
|
38
|
+
"node": ">=14.18.3"
|
|
39
39
|
},
|
|
40
40
|
"repository": {
|
|
41
41
|
"type": "git",
|
package/src/loglevel-mixin.mjs
CHANGED
|
@@ -166,7 +166,7 @@ export function LogLevelMixin(
|
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
/**
|
|
169
|
-
* Helper function to aggregate values into a log event
|
|
169
|
+
* Helper function to aggregate values into a log event.
|
|
170
170
|
* @param {string} severity log severity
|
|
171
171
|
* @param {string|Object} arg original log message - level may be overwritten
|
|
172
172
|
* @param {Object} [args] additional values to be merged into the final log event - values have precedence
|