@pioneer-platform/osmosis-network 8.4.0 → 8.5.0
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 +19 -0
- package/lib/index.js +2 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @pioneer-platform/osmosis-network
|
|
2
2
|
|
|
3
|
+
## 8.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Automated minor version bump for all packages
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @pioneer-platform/loggerdog@8.5.0
|
|
13
|
+
|
|
14
|
+
## 8.4.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Automated patch version bump for all packages
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @pioneer-platform/loggerdog@8.4.1
|
|
21
|
+
|
|
3
22
|
## 8.4.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
package/lib/index.js
CHANGED
|
@@ -81,7 +81,8 @@ var TAG = " | " + pjson.name.replace("@pioneer-platform/", "") + " | ";
|
|
|
81
81
|
// @ts-ignore
|
|
82
82
|
var lodash_1 = require("lodash");
|
|
83
83
|
require("dotenv").config({ path: '../../../.env' });
|
|
84
|
-
var
|
|
84
|
+
var axiosLib = require('axios');
|
|
85
|
+
var Axios = axiosLib.default || axiosLib;
|
|
85
86
|
var https = require('https');
|
|
86
87
|
var axios = Axios.create({
|
|
87
88
|
httpsAgent: new https.Agent({
|
package/package.json
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pioneer-platform/osmosis-network",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.5.0",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"types": "./lib/index.d.ts",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"create": "pnpm run build && pnpm run test",
|
|
8
|
+
"build": "tsc -p .",
|
|
9
|
+
"test": "pnpm run build && node __tests__/test-module.js",
|
|
10
|
+
"prepublish": "rm -rf lib && pnpm run build",
|
|
11
|
+
"refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install"
|
|
12
|
+
},
|
|
6
13
|
"dependencies": {
|
|
7
|
-
"@pioneer-platform/loggerdog": "^8.
|
|
14
|
+
"@pioneer-platform/loggerdog": "^8.5.0",
|
|
8
15
|
"bech32": "^1.1.4",
|
|
9
16
|
"dotenv": "^8.2.0",
|
|
10
17
|
"prettyjson": "^1.2.1",
|
|
@@ -12,12 +19,5 @@
|
|
|
12
19
|
"ts-node": "^8.10.2",
|
|
13
20
|
"typescript": "^5.0.4"
|
|
14
21
|
},
|
|
15
|
-
"gitHead": "a76012f6693a12181c4744e53e977a9eaeef0ed3"
|
|
16
|
-
"scripts": {
|
|
17
|
-
"create": "pnpm run build && pnpm run test",
|
|
18
|
-
"build": "tsc -p .",
|
|
19
|
-
"test": "pnpm run build && node __tests__/test-module.js",
|
|
20
|
-
"prepublish": "rm -rf lib && pnpm run build",
|
|
21
|
-
"refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install"
|
|
22
|
-
}
|
|
22
|
+
"gitHead": "a76012f6693a12181c4744e53e977a9eaeef0ed3"
|
|
23
23
|
}
|