@pioneer-platform/maya-network 8.15.0 → 8.16.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.
@@ -1,5 +1,5 @@
1
1
 
2
2
  
3
- > @pioneer-platform/maya-network@8.15.0 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/coins/mayachain/mayachain-network
3
+ > @pioneer-platform/maya-network@8.16.0 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/coins/mayachain/mayachain-network
4
4
  > tsc -p .
5
5
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @pioneer-platform/maya-network
2
2
 
3
+ ## 8.16.0
4
+
5
+ ### Minor Changes
6
+
7
+ - chore: feat(e2e): add --blue and --production flags to pioneer-sdk test
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @pioneer-platform/pioneer-nodes@8.33.0
13
+
14
+ ## 8.15.1
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+ - @pioneer-platform/pioneer-nodes@8.32.0
20
+
3
21
  ## 8.15.0
4
22
 
5
23
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/maya-network",
3
- "version": "8.15.0",
3
+ "version": "8.16.0",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "dependencies": {
@@ -20,7 +20,7 @@
20
20
  "ts-node": "^8.10.2",
21
21
  "typescript": "^5.0.4",
22
22
  "@pioneer-platform/loggerdog": "8.11.0",
23
- "@pioneer-platform/pioneer-nodes": "8.31.0"
23
+ "@pioneer-platform/pioneer-nodes": "8.33.0"
24
24
  },
25
25
  "gitHead": "a76012f6693a12181c4744e53e977a9eaeef0ed3",
26
26
  "devDependencies": {
package/tsconfig.json CHANGED
@@ -2,12 +2,19 @@
2
2
  "compilerOptions": {
3
3
  "target": "es5",
4
4
  "module": "commonjs",
5
- "lib": ["es6", "es2015", "dom"],
5
+ "lib": [
6
+ "es6",
7
+ "es2015",
8
+ "dom"
9
+ ],
6
10
  "declaration": true,
7
11
  "outDir": "lib",
8
12
  "rootDir": "src",
9
13
  "strict": true,
10
- "types": ["node"],
11
- "esModuleInterop": true
14
+ "types": [
15
+ "node"
16
+ ],
17
+ "esModuleInterop": true,
18
+ "skipLibCheck": true
12
19
  }
13
20
  }