@abtnode/certificate-manager 1.16.54-beta-20251024-030947-6f2889bf → 1.16.54-beta-20251028-073105-3ed10cef

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.
@@ -241,7 +241,9 @@ Manager.getInstance = async ({ maintainerEmail, baseDataDir }) => {
241
241
  staging: typeof process.env.STAGING === 'undefined' ? process.env.NODE_ENV !== 'production' : !!process.env.STAGING,
242
242
  });
243
243
 
244
- await instance.acme.init();
244
+ if (process.env.ABT_IGNORE_ACME_INIT !== 'true') {
245
+ await instance.acme.init();
246
+ }
245
247
 
246
248
  return instance;
247
249
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/certificate-manager",
3
- "version": "1.16.54-beta-20251024-030947-6f2889bf",
3
+ "version": "1.16.54-beta-20251028-073105-3ed10cef",
4
4
  "description": "Manage ABT Node SSL certificates",
5
5
  "author": "polunzh <polunzh@gmail.com>",
6
6
  "homepage": "https://github.com/ArcBlock/blocklet-server#readme",
@@ -25,18 +25,18 @@
25
25
  "scripts": {
26
26
  "lint": "eslint libs routes sdk states validators index.js",
27
27
  "lint:fix": "npm run lint -- --fix",
28
- "test": "bun test",
29
- "coverage": "bun test --coverage"
28
+ "test": "bun test --bail --timeout 30000",
29
+ "coverage": "bun test --bail --timeout 30000 --coverage"
30
30
  },
31
31
  "bugs": {
32
32
  "url": "https://github.com/ArcBlock/blocklet-server/issues"
33
33
  },
34
34
  "dependencies": {
35
- "@abtnode/cron": "1.16.54-beta-20251024-030947-6f2889bf",
36
- "@abtnode/logger": "1.16.54-beta-20251024-030947-6f2889bf",
37
- "@abtnode/models": "1.16.54-beta-20251024-030947-6f2889bf",
38
- "@abtnode/queue": "1.16.54-beta-20251024-030947-6f2889bf",
39
- "@abtnode/util": "1.16.54-beta-20251024-030947-6f2889bf",
35
+ "@abtnode/cron": "1.16.54-beta-20251028-073105-3ed10cef",
36
+ "@abtnode/logger": "1.16.54-beta-20251028-073105-3ed10cef",
37
+ "@abtnode/models": "1.16.54-beta-20251028-073105-3ed10cef",
38
+ "@abtnode/queue": "1.16.54-beta-20251028-073105-3ed10cef",
39
+ "@abtnode/util": "1.16.54-beta-20251028-073105-3ed10cef",
40
40
  "@blocklet/error": "^0.2.5",
41
41
  "@fidm/x509": "^1.2.1",
42
42
  "@greenlock/manager": "^3.1.0",
@@ -49,5 +49,5 @@
49
49
  "joi": "17.12.2",
50
50
  "punycode": "^2.3.1"
51
51
  },
52
- "gitHead": "73e5a3a80b82a2a7c62d42fdc08207b28e67633e"
52
+ "gitHead": "3002dd309759dd23c921b098b9edbef08838b734"
53
53
  }