log-queue 0.0.3 → 0.0.5
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/.github/workflows/node.js.yml +1 -2
- package/README.md +22 -1
- package/package.json +4 -7
package/README.md
CHANGED
|
@@ -1,2 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
[](https://www.npmjs.org/package/log)
|
|
3
|
+
[](https://github.com/jman717/log/blob/master/LICENSE)
|
|
4
|
+
[](https://github.com/jman717/log/actions/workflows/actions.yml)
|
|
5
|
+
[](https://github.com/jman717/log/actions/workflows/node.js.yml)
|
|
6
|
+
|
|
7
|
+
[](https://nodei.co/npm/log/)
|
|
8
|
+
|
|
2
9
|
Logging mainly to console and log4js-tagline, but can certainly be used for generic logging.
|
|
10
|
+
|
|
11
|
+
https://github.com/jman717/log/actions/workflows/actions.yml
|
|
12
|
+
Mocha Test
|
|
13
|
+
---------
|
|
14
|
+
```
|
|
15
|
+
npm test
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
General Setup Test
|
|
19
|
+
---------
|
|
20
|
+
```
|
|
21
|
+
npm run test_logs
|
|
22
|
+
|
|
23
|
+
```
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"author": {
|
|
3
3
|
"name": "Jim Manton"
|
|
4
4
|
},
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.5",
|
|
6
6
|
"bundleDependencies": [],
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@types/node": "^18.11.19",
|
|
@@ -24,18 +24,15 @@
|
|
|
24
24
|
"console",
|
|
25
25
|
"appenders",
|
|
26
26
|
"javascript",
|
|
27
|
-
"synchronous",
|
|
28
|
-
"objects",
|
|
29
|
-
"promises",
|
|
30
27
|
"mocha"
|
|
31
28
|
],
|
|
32
|
-
"homepage": "https://github.com/jman717/
|
|
29
|
+
"homepage": "https://github.com/jman717/log",
|
|
33
30
|
"repository": {
|
|
34
31
|
"type": "git",
|
|
35
|
-
"url": "git+https://github.com/jman717/
|
|
32
|
+
"url": "git+https://github.com/jman717/log.git"
|
|
36
33
|
},
|
|
37
34
|
"deprecated": false,
|
|
38
|
-
"description": "Logging",
|
|
35
|
+
"description": "Logging to console with eventual log4js-tagline support.",
|
|
39
36
|
"email": "jrman@risebroadband.net",
|
|
40
37
|
"license": "MIT",
|
|
41
38
|
"main": "app.js",
|