@pioneer-platform/osmosis-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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @pioneer-platform/osmosis-network
2
2
 
3
+ ## 8.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Automated patch version bump for all packages
8
+ - Updated dependencies
9
+ - @pioneer-platform/loggerdog@8.4.1
10
+
3
11
  ## 8.4.0
4
12
 
5
13
  ### 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 Axios = require('axios');
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.4.0",
3
+ "version": "8.4.1",
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.4.0",
14
+ "@pioneer-platform/loggerdog": "^8.4.1",
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
  }