@certd/pipeline 1.39.12 → 1.39.14
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 +14 -0
- package/dist/service/cname.d.ts +1 -0
- package/package.json +8 -4
- package/tsconfig.json +5 -16
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
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.39.14](https://github.com/certd/certd/compare/v1.39.13...v1.39.14) (2026-05-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @certd/pipeline
|
|
9
|
+
|
|
10
|
+
## [1.39.13](https://github.com/certd/certd/compare/v1.39.12...v1.39.13) (2026-05-10)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* cnameProvider域名支持设置子域名托管 ([7266af1](https://github.com/certd/certd/commit/7266af17491a98338022cfb18cfedfb93ca6ef8f))
|
|
15
|
+
|
|
16
|
+
### Performance Improvements
|
|
17
|
+
|
|
18
|
+
* 重构自动加载模块并优化EAB授权处理 ([4755216](https://github.com/certd/certd/commit/4755216505ad18555a50da9d8008c2207c48df86))
|
|
19
|
+
|
|
6
20
|
## [1.39.12](https://github.com/certd/certd/compare/v1.39.11...v1.39.12) (2026-04-29)
|
|
7
21
|
|
|
8
22
|
### Performance Improvements
|
package/dist/service/cname.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@certd/pipeline",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.39.
|
|
4
|
+
"version": "1.39.14",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -14,12 +14,13 @@
|
|
|
14
14
|
"build3": "rollup -c",
|
|
15
15
|
"preview": "vite preview",
|
|
16
16
|
"test": "mocha --loader=ts-node/esm",
|
|
17
|
+
"test:unit": "cross-env NODE_ENV=unittest mocha --no-config --node-option no-warnings --node-option loader=ts-node/esm \"src/**/*.test.ts\"",
|
|
17
18
|
"pub": "npm publish",
|
|
18
19
|
"compile": "tsc --skipLibCheck --watch"
|
|
19
20
|
},
|
|
20
21
|
"dependencies": {
|
|
21
|
-
"@certd/basic": "^1.39.
|
|
22
|
-
"@certd/plus-core": "^1.39.
|
|
22
|
+
"@certd/basic": "^1.39.14",
|
|
23
|
+
"@certd/plus-core": "^1.39.14",
|
|
23
24
|
"dayjs": "^1.11.7",
|
|
24
25
|
"lodash-es": "^4.17.21",
|
|
25
26
|
"reflect-metadata": "^0.1.13"
|
|
@@ -36,14 +37,17 @@
|
|
|
36
37
|
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
37
38
|
"@typescript-eslint/parser": "^8.26.1",
|
|
38
39
|
"chai": "4.3.10",
|
|
40
|
+
"cross-env": "^7.0.3",
|
|
39
41
|
"eslint": "^8.41.0",
|
|
40
42
|
"eslint-config-prettier": "^8.8.0",
|
|
41
43
|
"eslint-plugin-prettier": "^4.2.1",
|
|
44
|
+
"esmock": "^2.7.5",
|
|
42
45
|
"mocha": "^10.2.0",
|
|
43
46
|
"prettier": "^2.8.8",
|
|
44
47
|
"rimraf": "^5.0.5",
|
|
48
|
+
"ts-node": "^10.9.2",
|
|
45
49
|
"tslib": "^2.8.1",
|
|
46
50
|
"typescript": "^5.4.2"
|
|
47
51
|
},
|
|
48
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "bae5a04dcc0a679c290a9805c3ac4a6020eb6ec0"
|
|
49
53
|
}
|
package/tsconfig.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"esModuleInterop": true,
|
|
8
8
|
"experimentalDecorators": true,
|
|
9
9
|
"emitDecoratorMetadata": true,
|
|
10
|
-
"inlineSourceMap":false,
|
|
10
|
+
"inlineSourceMap": false,
|
|
11
11
|
"sourceMap": false,
|
|
12
12
|
"noImplicitThis": true,
|
|
13
13
|
"noUnusedLocals": true,
|
|
@@ -22,22 +22,11 @@
|
|
|
22
22
|
"composite": false,
|
|
23
23
|
"useDefineForClassFields": true,
|
|
24
24
|
"strict": true,
|
|
25
|
-
// "sourceMap": true,
|
|
25
|
+
// "sourceMap": true,
|
|
26
26
|
"resolveJsonModule": true,
|
|
27
27
|
"isolatedModules": false,
|
|
28
|
-
"lib": ["ESNext", "DOM"]
|
|
28
|
+
"lib": ["ESNext", "DOM"]
|
|
29
29
|
},
|
|
30
|
-
"include": [
|
|
31
|
-
|
|
32
|
-
"src/**/*.d.ts",
|
|
33
|
-
"src/**/*.json"
|
|
34
|
-
],
|
|
35
|
-
"exclude": [
|
|
36
|
-
"*.js",
|
|
37
|
-
"*.ts",
|
|
38
|
-
"*.spec.ts",
|
|
39
|
-
"dist",
|
|
40
|
-
"node_modules",
|
|
41
|
-
"test"
|
|
42
|
-
],
|
|
30
|
+
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.json"],
|
|
31
|
+
"exclude": ["*.js", "*.ts", "*.spec.ts", "dist", "node_modules", "src/**/*.test.ts", "test"]
|
|
43
32
|
}
|