@pioneer-platform/pioneer 8.5.0 → 8.5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +26 -26
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @pioneer-platform/pioneer
2
2
 
3
+ ## 8.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Automated patch version bump for all packages
8
+ - Updated dependencies
9
+ - @pioneer-platform/blocknative-client@8.4.1
10
+ - @pioneer-platform/blockbook@8.4.1
11
+ - @pioneer-platform/zapper-client@8.4.1
12
+ - @pioneer-platform/unchained@8.4.1
13
+ - @pioneer-platform/loggerdog@8.4.1
14
+ - @pioneer-platform/redis-queue@8.4.1
15
+ - @pioneer-platform/pioneer-coins@9.4.1
16
+ - @pioneer-platform/pioneer-caip@9.3.1
17
+
3
18
  ## 8.5.0
4
19
 
5
20
  ### Minor Changes
package/package.json CHANGED
@@ -1,18 +1,34 @@
1
1
  {
2
2
  "name": "@pioneer-platform/pioneer",
3
- "version": "8.5.0",
3
+ "version": "8.5.1",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
+ "scripts": {
7
+ "npm": "pnpm i",
8
+ "npm-update": "pnpm update",
9
+ "test": "pnpm run build && node __tests__/test-module.js",
10
+ "test-cli-export": "pnpm run build && node __tests__/reference-test-cli-export.js",
11
+ "lint": "prettier --write '**/**/*.ts'",
12
+ "start": "nodemon --watch 'src/**/*.ts' --exec ts-node __tests__node",
13
+ "build": "tsc -p .",
14
+ "prepublish": "pnpm run build",
15
+ "refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install",
16
+ "test-jest": "jest --coverage",
17
+ "test:watch": "jest --coverage --watchAll",
18
+ "build:watch": "onchange 'src/**/*.ts' -- pnpm run build",
19
+ "view:coverage": "serve coverage/lcov-report",
20
+ "clean": "rm -rf coverage src/**/*.js src/**/*.map lib node_modules"
21
+ },
6
22
  "dependencies": {
7
- "@pioneer-platform/blockbook": "^8.4.0",
8
- "@pioneer-platform/blocknative-client": "^8.4.0",
23
+ "@pioneer-platform/blockbook": "^8.4.1",
24
+ "@pioneer-platform/blocknative-client": "^8.4.1",
9
25
  "@pioneer-platform/cointools": "^8.3.1",
10
- "@pioneer-platform/loggerdog": "^8.4.0",
11
- "@pioneer-platform/pioneer-caip": "^9.3.0",
12
- "@pioneer-platform/pioneer-coins": "^9.4.0",
13
- "@pioneer-platform/redis-queue": "^8.4.0",
14
- "@pioneer-platform/unchained": "^8.4.0",
15
- "@pioneer-platform/zapper-client": "^8.4.0",
26
+ "@pioneer-platform/loggerdog": "^8.4.1",
27
+ "@pioneer-platform/pioneer-caip": "^9.3.1",
28
+ "@pioneer-platform/pioneer-coins": "^9.4.1",
29
+ "@pioneer-platform/redis-queue": "^8.4.1",
30
+ "@pioneer-platform/unchained": "^8.4.1",
31
+ "@pioneer-platform/zapper-client": "^8.4.1",
16
32
  "dotenv": "^8.2.0",
17
33
  "short-uuid": "^4.2.2"
18
34
  },
@@ -27,21 +43,5 @@
27
43
  "ts-jest": "^29.0.5",
28
44
  "typescript": "^5.0.4"
29
45
  },
30
- "gitHead": "a76012f6693a12181c4744e53e977a9eaeef0ed3",
31
- "scripts": {
32
- "npm": "pnpm i",
33
- "npm-update": "pnpm update",
34
- "test": "pnpm run build && node __tests__/test-module.js",
35
- "test-cli-export": "pnpm run build && node __tests__/reference-test-cli-export.js",
36
- "lint": "prettier --write '**/**/*.ts'",
37
- "start": "nodemon --watch 'src/**/*.ts' --exec ts-node __tests__node",
38
- "build": "tsc -p .",
39
- "prepublish": "pnpm run build",
40
- "refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install",
41
- "test-jest": "jest --coverage",
42
- "test:watch": "jest --coverage --watchAll",
43
- "build:watch": "onchange 'src/**/*.ts' -- pnpm run build",
44
- "view:coverage": "serve coverage/lcov-report",
45
- "clean": "rm -rf coverage src/**/*.js src/**/*.map lib node_modules"
46
- }
46
+ "gitHead": "a76012f6693a12181c4744e53e977a9eaeef0ed3"
47
47
  }