promise-appenders 1.3.6 → 1.3.8
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 +2 -2
- package/package.json +3 -3
- package/test/package.js +3 -3
package/README.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
Extend the functionality of promises with configurable appenders.
|
|
3
1
|
[](https://www.npmjs.org/package/promise-appenders)
|
|
4
2
|
[](https://github.com/jman717/promise-appenders/blob/master/LICENSE)
|
|
5
3
|
[](https://github.com/jman717/promise-appenders/blob/main/.github/workflows/github-actions.yml)
|
|
@@ -7,6 +5,8 @@ Extend the functionality of promises with configurable appenders.
|
|
|
7
5
|
|
|
8
6
|
[](https://nodei.co/npm/promise-appenders/)
|
|
9
7
|
|
|
8
|
+
Extend the functionality of promises with configurable appenders.
|
|
9
|
+
|
|
10
10
|
Included appenders:
|
|
11
11
|
|
|
12
12
|
* promise - a basic promise
|
package/package.json
CHANGED
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
"author": {
|
|
3
3
|
"name": "Jim Manton"
|
|
4
4
|
},
|
|
5
|
-
"version": "1.3.
|
|
5
|
+
"version": "1.3.8",
|
|
6
6
|
"bundleDependencies": [],
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"colors": "^1.4.0",
|
|
9
9
|
"compare-json-difference": "^0.1.3",
|
|
10
|
-
"log4js-tagline": "^
|
|
10
|
+
"log4js-tagline": "^5.3.29",
|
|
11
11
|
"mocha": "^11.7.5",
|
|
12
12
|
"sinon": "^9.2.4",
|
|
13
13
|
"time-span": "^4.0.0"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"start": "node app.js",
|
|
17
|
-
"test": "mocha"
|
|
17
|
+
"test": "mocha"
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
20
|
"promise",
|
package/test/package.js
CHANGED
|
@@ -6,19 +6,19 @@ const packageMock = {
|
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Jim Manton"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.3.
|
|
9
|
+
"version": "1.3.8",
|
|
10
10
|
"bundleDependencies": [],
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"colors": "^1.4.0",
|
|
13
13
|
"compare-json-difference": "^0.1.3",
|
|
14
|
-
"log4js-tagline": "^
|
|
14
|
+
"log4js-tagline": "^5.3.29",
|
|
15
15
|
"mocha": "^11.7.5",
|
|
16
16
|
"sinon": "^9.2.4",
|
|
17
17
|
"time-span": "^4.0.0"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"start": "node app.js",
|
|
21
|
-
"test": "mocha"
|
|
21
|
+
"test": "mocha"
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
24
24
|
"promise",
|