@certd/plugin-cert 1.37.17 → 1.38.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
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.38.1](https://github.com/certd/certd/compare/v1.38.0...v1.38.1) (2026-01-15)
7
+
8
+ **Note:** Version bump only for package @certd/plugin-cert
9
+
10
+ # [1.38.0](https://github.com/certd/certd/compare/v1.37.17...v1.38.0) (2026-01-13)
11
+
12
+ ### Features
13
+
14
+ * 【破坏性更新】插件改为metadata加载模式,plugin-cert、plugin-lib包部分代码转移到certd-server中,影响自定义插件,需要修改相关import引用 ([a3fb249](https://github.com/certd/certd/commit/a3fb24993d7ac8fbb0bb354fa02ef067f609021e))
15
+
6
16
  ## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29)
7
17
 
8
18
  ### Performance Improvements
package/dist/index.d.ts CHANGED
@@ -1,3 +1 @@
1
- export * from "./access/index.js";
2
- export * from "./plugin/index.js";
3
- export * from "./dns-provider/index.js";
1
+ export * from "@certd/plugin-lib";
package/dist/index.js CHANGED
@@ -1,4 +1 @@
1
- export * from "./access/index.js";
2
- export * from "./plugin/index.js";
3
- export * from "./dns-provider/index.js";
4
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMseUJBQXlCLENBQUMifQ==
1
+ export * from "@certd/plugin-lib";
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@certd/plugin-cert",
3
3
  "private": false,
4
- "version": "1.37.17",
4
+ "version": "1.38.1",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "scripts": {
9
9
  "dev": "vite",
10
10
  "before-build": "rimraf dist && rimraf tsconfig.tsbuildinfo && rimraf .rollup.cache",
11
- "build": "npm run before-build &&tsc --skipLibCheck",
11
+ "build": "tsc --skipLibCheck",
12
12
  "dev-build": "npm run build",
13
13
  "build3": "rollup -c",
14
14
  "build2": "vue-tsc --noEmit && vite build",
@@ -17,17 +17,12 @@
17
17
  "compile": "tsc --skipLibCheck --watch"
18
18
  },
19
19
  "dependencies": {
20
- "@certd/acme-client": "^1.37.17",
21
- "@certd/basic": "^1.37.17",
22
- "@certd/pipeline": "^1.37.17",
23
- "@certd/plugin-lib": "^1.37.17",
24
- "@google-cloud/publicca": "^1.3.0",
25
- "dayjs": "^1.11.7",
26
- "jszip": "^3.10.1",
27
- "lodash-es": "^4.17.21",
20
+ "@certd/acme-client": "^1.38.1",
21
+ "@certd/basic": "^1.38.1",
22
+ "@certd/pipeline": "^1.38.1",
23
+ "@certd/plugin-lib": "^1.38.1",
28
24
  "psl": "^1.9.0",
29
- "punycode.js": "^2.3.1",
30
- "rimraf": "^5.0.5"
25
+ "punycode.js": "^2.3.1"
31
26
  },
32
27
  "devDependencies": {
33
28
  "@types/chai": "^4.3.3",
@@ -43,5 +38,5 @@
43
38
  "tslib": "^2.8.1",
44
39
  "typescript": "^5.4.2"
45
40
  },
46
- "gitHead": "786780ce9b0ee9b9ebb104f54abb161ae9a924e9"
41
+ "gitHead": "2c80c35b21b3f435e835167fca13db510bbc38a2"
47
42
  }
package/tsconfig.json CHANGED
@@ -7,7 +7,8 @@
7
7
  "esModuleInterop": true,
8
8
  "experimentalDecorators": true,
9
9
  "emitDecoratorMetadata": true,
10
- "inlineSourceMap":true,
10
+ "inlineSourceMap":false,
11
+ "sourceMap": false,
11
12
  "noImplicitThis": true,
12
13
  "noUnusedLocals": true,
13
14
  "stripInternal": true,