@abtnode/util 1.8.31 → 1.8.33

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/lib/async-pm2.js +0 -5
  2. package/package.json +9 -9
package/lib/async-pm2.js CHANGED
@@ -1,6 +1,5 @@
1
1
  // You must install pm2 as project dependency
2
2
  const pm2 = require('pm2'); // eslint-disable-line import/no-extraneous-dependencies
3
- const semver = require('semver');
4
3
  const { promisify } = require('util');
5
4
 
6
5
  const api = [
@@ -22,10 +21,6 @@ const api = [
22
21
  ];
23
22
 
24
23
  const nodeArgs = [];
25
- // https://stackoverflow.com/questions/69692842/error-message-error0308010cdigital-envelope-routinesunsupported
26
- if (semver.gte(process.version, '17.0.0')) {
27
- nodeArgs.push('--openssl-legacy-provider');
28
- }
29
24
 
30
25
  const originStart = pm2.start.bind(pm2);
31
26
  pm2.start = (opts, cb) => {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.8.31",
6
+ "version": "1.8.33",
7
7
  "description": "ArcBlock's JavaScript utility",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -18,13 +18,13 @@
18
18
  "author": "polunzh <polunzh@gmail.com> (http://github.com/polunzh)",
19
19
  "license": "MIT",
20
20
  "dependencies": {
21
- "@abtnode/constant": "1.8.31",
22
- "@abtnode/logger": "1.8.31",
23
- "@arcblock/jwt": "^1.17.23",
24
- "@blocklet/constant": "1.8.31",
25
- "@ocap/mcrypto": "1.17.23",
26
- "@ocap/util": "1.17.23",
27
- "@ocap/wallet": "1.17.23",
21
+ "@abtnode/constant": "1.8.33",
22
+ "@abtnode/logger": "1.8.33",
23
+ "@arcblock/jwt": "^1.18.1",
24
+ "@blocklet/constant": "1.8.33",
25
+ "@ocap/mcrypto": "1.18.1",
26
+ "@ocap/util": "1.18.1",
27
+ "@ocap/wallet": "1.18.1",
28
28
  "axios": "^0.27.2",
29
29
  "axios-mock-adapter": "^1.21.2",
30
30
  "axon": "^2.0.3",
@@ -63,5 +63,5 @@
63
63
  "fs-extra": "^10.1.0",
64
64
  "jest": "^27.5.1"
65
65
  },
66
- "gitHead": "f3cc8becdca1b8c5e645eb8cf751fa780cf09cfe"
66
+ "gitHead": "bb8223a5dd84536f2843391c59c0a8ac4398c6f2"
67
67
  }