log-queue 3.0.3 → 3.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.
- package/.github/workflows/node.js.yml +1 -13
- package/package.json +1 -1
- package/test/package.js +44 -44
|
@@ -22,20 +22,8 @@ jobs:
|
|
|
22
22
|
strategy:
|
|
23
23
|
matrix:
|
|
24
24
|
os: [ubuntu-latest, windows-latest]
|
|
25
|
-
node-version: [
|
|
25
|
+
node-version: [16.x, 18.x]
|
|
26
26
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
27
|
-
include:
|
|
28
|
-
- node-version: 8.x
|
|
29
|
-
npm-i: "eslint@6.x eslint-config-airbnb-base@14.x eslint-config-prettier@6.x eslint-plugin-prettier@3.x fs-extra@8.x nyc@14.x tap@14.x"
|
|
30
|
-
|
|
31
|
-
- node-version: 10.x
|
|
32
|
-
npm-i: "eslint@7.x fs-extra@9.x nyc@14.x tap@14.x"
|
|
33
|
-
|
|
34
|
-
- node-version: 12.x
|
|
35
|
-
npm-i: "nyc@14.x tap@14.x"
|
|
36
|
-
|
|
37
|
-
- node-version: 14.x
|
|
38
|
-
npm-i: "nyc@14.x tap@14.x"
|
|
39
27
|
|
|
40
28
|
steps:
|
|
41
29
|
- uses: actions/checkout@v3
|
package/package.json
CHANGED
package/test/package.js
CHANGED
|
@@ -3,50 +3,50 @@ const assert = require('assert'),
|
|
|
3
3
|
packagejson = require('../package.json')
|
|
4
4
|
|
|
5
5
|
const packageMock = {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
}
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Jim Manton"
|
|
8
|
+
},
|
|
9
|
+
"version": "3.0.4",
|
|
10
|
+
"bundleDependencies": [],
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@types/node": "^20.11.0",
|
|
13
|
+
"chai": "^5.0.0",
|
|
14
|
+
"colors": "^1.4.0",
|
|
15
|
+
"diffler": "^2.0.4",
|
|
16
|
+
"fs": "^0.0.1-security",
|
|
17
|
+
"mocha": "^10.2.0",
|
|
18
|
+
"valid-path": "^2.1.0"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"start": "node app.ts",
|
|
22
|
+
"test": "mocha",
|
|
23
|
+
"ditched": "ditched -a",
|
|
24
|
+
"test_logs": "node ./tests/logs",
|
|
25
|
+
"test_http": "node ./tests/http"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"log",
|
|
29
|
+
"console",
|
|
30
|
+
"log4js-tagline",
|
|
31
|
+
"http",
|
|
32
|
+
"base-queue",
|
|
33
|
+
"appenders",
|
|
34
|
+
"javascript",
|
|
35
|
+
"mocha"
|
|
36
|
+
],
|
|
37
|
+
"homepage": "https://github.com/jman717/log",
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "git+https://github.com/jman717/log.git"
|
|
41
|
+
},
|
|
42
|
+
"deprecated": false,
|
|
43
|
+
"description": "Logging to console with eventual log4js-tagline support.",
|
|
44
|
+
"email": "jrman@risebroadband.net",
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"main": "app.js",
|
|
47
|
+
"name": "log-queue",
|
|
48
|
+
"start": "node app.js"
|
|
49
|
+
}
|
|
50
50
|
|
|
51
51
|
describe('package.json', function () {
|
|
52
52
|
it('should pass', function () {
|