log-queue 0.0.3 → 0.0.4

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.
@@ -77,5 +77,4 @@ jobs:
77
77
  run: npm ls --depth=0 --dev && npm ls --depth=0 --prod
78
78
 
79
79
  - run: npm run build --if-present
80
- - run: npm run test_files
81
- - run: npm run test_all
80
+ - run: npm run test_logs
package/README.md CHANGED
@@ -1,2 +1,23 @@
1
- # log
1
+
2
+ [![npm Package](https://img.shields.io/npm/v/log.svg)](https://www.npmjs.org/package/log)
3
+ [![License](https://img.shields.io/npm/l/log.svg)](https://github.com/jman717/log/blob/master/LICENSE)
4
+ [![CodeQL](https://github.com/jman717/log/actions/workflows/github-actions-demo.yml/badge.svg)](https://github.com/jman717/log/actions/workflows/github-actions-demo.yml)
5
+ [![Node.js CI](https://github.com/jman717/log/actions/workflows/node.js.yml/badge.svg)](https://github.com/jman717/log/actions/workflows/node.js.yml)
6
+
7
+ [![NPM](https://nodei.co/npm/log.png?downloads=true&downloadRank=true&stars=true)](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
+
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.3",
5
+ "version": "0.0.4",
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/file-obj-queue",
29
+ "homepage": "https://github.com/jman717/log",
33
30
  "repository": {
34
31
  "type": "git",
35
- "url": "git+https://github.com/jman717/file-obj-queue.git"
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",