@ncfour-us/logging 0.0.10 → 0.0.12
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/README.md +4 -0
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -6,3 +6,7 @@ The package exports an `ILogger` interface along with a `createLogger()` functio
|
|
|
6
6
|
|
|
7
7
|
The return value from `createLogger()` is a `ILogger` which can then be used
|
|
8
8
|
to log activities in the application.
|
|
9
|
+
|
|
10
|
+
The package can be used in either browser-based or Node-based runtime environments.
|
|
11
|
+
|
|
12
|
+
More documentation to come.
|
package/package.json
CHANGED
|
@@ -40,6 +40,12 @@
|
|
|
40
40
|
"chalk": "^4.1.2",
|
|
41
41
|
"winston": "^3.19.0"
|
|
42
42
|
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"browser",
|
|
45
|
+
"logging",
|
|
46
|
+
"node",
|
|
47
|
+
"winston"
|
|
48
|
+
],
|
|
43
49
|
"engines": {
|
|
44
50
|
"node": ">= 24.0.0"
|
|
45
51
|
},
|
|
@@ -52,7 +58,7 @@
|
|
|
52
58
|
},
|
|
53
59
|
"main": "lib/index.js",
|
|
54
60
|
"license": "MIT",
|
|
55
|
-
"version": "0.0.
|
|
61
|
+
"version": "0.0.12",
|
|
56
62
|
"jest": {
|
|
57
63
|
"coverageProvider": "v8",
|
|
58
64
|
"extensionsToTreatAsEsm": [
|