@mojaloop/ml-number 11.2.2 → 11.2.3
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/CHANGELOG.md +2 -0
- package/README.md +19 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [11.2.3](https://github.com/mojaloop/ml-number/compare/v11.2.2...v11.2.3) (2023-08-29)
|
|
6
|
+
|
|
5
7
|
### [11.2.2](https://github.com/mojaloop/ml-number/compare/v11.2.1...v11.2.2) (2023-08-24)
|
|
6
8
|
|
|
7
9
|
### [11.2.1](https://github.com/mojaloop/ml-number/compare/v11.2.0...v11.2.1) (2021-09-22)
|
package/README.md
CHANGED
|
@@ -73,6 +73,25 @@ To run the test coverage tests locally
|
|
|
73
73
|
npm run test:coverage
|
|
74
74
|
```
|
|
75
75
|
|
|
76
|
+
|
|
77
|
+
## Auditing Dependencies
|
|
78
|
+
|
|
79
|
+
We use `audit-ci` along with `npm audit` to check dependencies for node vulnerabilities, and keep track of resolved dependencies with an `audit-ci.jsonc` file.
|
|
80
|
+
|
|
81
|
+
To start a new resolution process, run:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
npm run audit:fix
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
You can then check to see if the CI will pass based on the current dependencies with:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
npm run audit:check
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
The [audit-ci.jsonc](./audit-ci.jsonc) contains any audit-exceptions that cannot be fixed to ensure that CircleCI will build correctly.
|
|
94
|
+
|
|
76
95
|
## Automated Releases
|
|
77
96
|
|
|
78
97
|
As part of our CI/CD process, we use a combination of CircleCI, standard-version
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/ml-number",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.3",
|
|
4
4
|
"description": "Mojaloop Number Library implementation that handles decimal processing of amounts/numbers",
|
|
5
5
|
"author": "ModusBox",
|
|
6
6
|
"contributors": [
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"registry": "https://registry.npmjs.org/"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"bignumber.js": "9.1.
|
|
49
|
+
"bignumber.js": "9.1.2"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"audit-ci": "^6.6.1",
|
|
53
|
-
"eslint": "8.
|
|
53
|
+
"eslint": "8.48.0",
|
|
54
54
|
"faucet": "0.0.4",
|
|
55
|
-
"npm-check-updates": "16.13.
|
|
55
|
+
"npm-check-updates": "16.13.2",
|
|
56
56
|
"nyc": "15.1.0",
|
|
57
57
|
"pre-commit": "1.2.2",
|
|
58
58
|
"standard": "17.1.0",
|