queueobj 14.0.0 → 14.0.2
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/app.js +1 -5
- package/package.json +4 -4
- package/test/package.js +5 -4
package/app.js
CHANGED
|
@@ -145,11 +145,7 @@ exports = module.exports = class QueueObj {
|
|
|
145
145
|
exclude_logMsg: props.exclude_logMsg,
|
|
146
146
|
resolve: t.resolve,
|
|
147
147
|
reject: t.reject
|
|
148
|
-
}).init({
|
|
149
|
-
appender: "console_basic",
|
|
150
|
-
process_objects: [log_object],
|
|
151
|
-
data_to_process_array: log_data
|
|
152
|
-
})
|
|
148
|
+
}).init({appender: "console"})
|
|
153
149
|
t.base_queue = new base_queue({
|
|
154
150
|
parent: t,
|
|
155
151
|
relative_path: "./appenders/",
|
package/package.json
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
"author": {
|
|
3
3
|
"name": "Jim Manton"
|
|
4
4
|
},
|
|
5
|
-
"version": "14.0.
|
|
5
|
+
"version": "14.0.2",
|
|
6
6
|
"bundleDependencies": [],
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"base-queue": "^1.0.
|
|
8
|
+
"base-queue": "^1.0.1",
|
|
9
9
|
"chai": "^4.3.7",
|
|
10
10
|
"colors": "^1.4.0",
|
|
11
11
|
"diffler": "^2.0.4",
|
|
12
12
|
"fs": "^0.0.1-security",
|
|
13
|
-
"log-queue": "^
|
|
13
|
+
"log-queue": "^2.0.1",
|
|
14
14
|
"mocha": "^10.2.0",
|
|
15
|
-
"
|
|
15
|
+
"typescript": "^4.9.5",
|
|
16
16
|
"valid-path": "^2.1.0"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
package/test/package.js
CHANGED
|
@@ -6,17 +6,17 @@ const packageMock = {
|
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Jim Manton"
|
|
8
8
|
},
|
|
9
|
-
"version": "14.0.
|
|
9
|
+
"version": "14.0.2",
|
|
10
10
|
"bundleDependencies": [],
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"base-queue": "^1.0.
|
|
12
|
+
"base-queue": "^1.0.1",
|
|
13
13
|
"chai": "^4.3.7",
|
|
14
14
|
"colors": "^1.4.0",
|
|
15
15
|
"diffler": "^2.0.4",
|
|
16
16
|
"fs": "^0.0.1-security",
|
|
17
|
-
"log-queue": "^
|
|
17
|
+
"log-queue": "^2.0.1",
|
|
18
18
|
"mocha": "^10.2.0",
|
|
19
|
-
"
|
|
19
|
+
"typescript": "^4.9.5",
|
|
20
20
|
"valid-path": "^2.1.0"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
@@ -69,6 +69,7 @@ const packageMock = {
|
|
|
69
69
|
"start": "node app.js"
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
+
|
|
72
73
|
describe('package.json', function () {
|
|
73
74
|
it('should pass', function () {
|
|
74
75
|
const difference = jsonHasDifferences(packagejson, packageMock)
|