@certd/basic 1.33.8 → 1.34.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.34.1](https://github.com/certd/certd/compare/v1.34.0...v1.34.1) (2025-05-05)
7
+
8
+ ### Performance Improvements
9
+
10
+ * 支持部署证书到火山dcdn ([5f85219](https://github.com/certd/certd/commit/5f852194953dc1b4e6336770f417507b8f5a33ad))
11
+
12
+ # [1.34.0](https://github.com/certd/certd/compare/v1.33.8...v1.34.0) (2025-04-28)
13
+
14
+ **Note:** Version bump only for package @certd/basic
15
+
6
16
  ## [1.33.8](https://github.com/certd/certd/compare/v1.33.7...v1.33.8) (2025-04-26)
7
17
 
8
18
  **Note:** Version bump only for package @certd/basic
package/build.md CHANGED
@@ -1 +1 @@
1
- 01:54
1
+ 00:16
@@ -1,4 +1,4 @@
1
- import { domainUtils } from './util.domain.js';
1
+ import { domainUtils } from "./util.domain.js";
2
2
  function groupByDomain(options, inDomains) {
3
3
  const matched = [];
4
4
  const notMatched = [];
@@ -18,9 +18,9 @@ function groupByDomain(options, inDomains) {
18
18
  function buildGroupOptions(options, inDomains) {
19
19
  const grouped = groupByDomain(options, inDomains);
20
20
  const groupOptions = [];
21
- groupOptions.push({ value: 'matched', disabled: true, label: '----已匹配----' });
21
+ groupOptions.push({ value: "matched", disabled: true, label: "----已匹配----" });
22
22
  if (grouped.matched.length === 0) {
23
- options.push({ value: '', disabled: true, label: '没有可以匹配的域名' });
23
+ options.push({ value: "", disabled: true, label: "没有可以匹配的域名" });
24
24
  }
25
25
  else {
26
26
  for (const matched of grouped.matched) {
@@ -28,7 +28,7 @@ function buildGroupOptions(options, inDomains) {
28
28
  }
29
29
  }
30
30
  if (grouped.notMatched.length > 0) {
31
- groupOptions.push({ value: 'unmatched', disabled: true, label: '----未匹配----' });
31
+ groupOptions.push({ value: "unmatched", disabled: true, label: "----未匹配----" });
32
32
  for (const notMatched of grouped.notMatched) {
33
33
  groupOptions.push(notMatched);
34
34
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@certd/basic",
3
3
  "private": false,
4
- "version": "1.33.8",
4
+ "version": "1.34.1",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -12,7 +12,8 @@
12
12
  "build": "npm run before-build && tsc --skipLibCheck",
13
13
  "dev-build": "npm run build",
14
14
  "preview": "vite preview",
15
- "test": "mocha --loader=ts-node/esm"
15
+ "test": "mocha --loader=ts-node/esm",
16
+ "pub": "npm publish"
16
17
  },
17
18
  "dependencies": {
18
19
  "axios": "^1.7.2",
@@ -44,5 +45,5 @@
44
45
  "tslib": "^2.8.1",
45
46
  "typescript": "^5.4.2"
46
47
  },
47
- "gitHead": "9b420ad33ff4c36fc99d643c18be9ec7e29f220d"
48
+ "gitHead": "6c74148c277432f91014bf1eebd824e7423c6f4b"
48
49
  }