@pioneer-platform/ripple-network 8.4.0 → 8.4.1
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 +8 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -47,7 +47,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
47
47
|
};
|
|
48
48
|
var TAG = " | ripple-network | ";
|
|
49
49
|
require("dotenv").config({ path: '../../../../.env' });
|
|
50
|
-
var
|
|
50
|
+
var axiosLib = require('axios');
|
|
51
|
+
var Axios = axiosLib.default || axiosLib;
|
|
51
52
|
var https = require('https');
|
|
52
53
|
var log = require('@pioneer-platform/loggerdog')();
|
|
53
54
|
// NowNodes configuration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pioneer-platform/ripple-network",
|
|
3
|
-
"version": "8.4.
|
|
3
|
+
"version": "8.4.1",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"types": "./lib/index.d.ts",
|
|
6
6
|
"description": "Pioneer Platform Ripple Network module with NowNodes integration",
|
|
@@ -11,20 +11,20 @@
|
|
|
11
11
|
"nownodes",
|
|
12
12
|
"pioneer"
|
|
13
13
|
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"create": "pnpm run build && pnpm run test",
|
|
16
|
+
"build": "tsc -p .",
|
|
17
|
+
"test": "pnpm run build && node __tests__/test-module.js",
|
|
18
|
+
"prepublish": "rm -R lib && pnpm run build",
|
|
19
|
+
"refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install"
|
|
20
|
+
},
|
|
14
21
|
"dependencies": {
|
|
15
|
-
"@pioneer-platform/loggerdog": "^8.4.
|
|
22
|
+
"@pioneer-platform/loggerdog": "^8.4.1",
|
|
16
23
|
"axios": "^1.6.0",
|
|
17
24
|
"dotenv": "^16.0.0",
|
|
18
25
|
"prettyjson": "^1.2.1",
|
|
19
26
|
"ts-node": "^10.9.0",
|
|
20
27
|
"typescript": "^5.0.4"
|
|
21
28
|
},
|
|
22
|
-
"gitHead": "aeae28273014ab69b42f22abec159c6693a56c40"
|
|
23
|
-
|
|
24
|
-
"create": "pnpm run build && pnpm run test",
|
|
25
|
-
"build": "tsc -p .",
|
|
26
|
-
"test": "pnpm run build && node __tests__/test-module.js",
|
|
27
|
-
"prepublish": "rm -R lib && pnpm run build",
|
|
28
|
-
"refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install"
|
|
29
|
-
}
|
|
30
|
-
}
|
|
29
|
+
"gitHead": "aeae28273014ab69b42f22abec159c6693a56c40"
|
|
30
|
+
}
|