github-issue-tower-defence-management 1.43.1 → 1.43.2
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 +8 -0
- package/package.json +4 -4
- package/tsconfig.build.json +1 -0
- package/tsconfig.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [1.43.2](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.43.1...v1.43.2) (2026-05-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **core:** upgrade jest-html-reporter to v4.4.0 for TypeScript 6 compatibility ([3966f59](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/commit/3966f59409d5d39dda143affa9c5cf2f800a367e))
|
|
7
|
+
* **core:** upgrade TypeScript to v6.0 to support ts-patch v4 ([20c08c9](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/commit/20c08c9f53692b63eccc7f9a7b0060fa715e38d3)), closes [#535](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/535)
|
|
8
|
+
|
|
1
9
|
## [1.43.1](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.43.0...v1.43.1) (2026-05-12)
|
|
2
10
|
|
|
3
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-issue-tower-defence-management",
|
|
3
|
-
"version": "1.43.
|
|
3
|
+
"version": "1.43.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -62,14 +62,14 @@
|
|
|
62
62
|
"eslint-plugin-no-type-assertion": "^1.3.0",
|
|
63
63
|
"eslint-plugin-unused-imports": "^3.1.0",
|
|
64
64
|
"jest": "^29.7.0",
|
|
65
|
-
"jest-html-reporter": "^
|
|
65
|
+
"jest-html-reporter": "^4.4.0",
|
|
66
66
|
"jest-junit": "^17.0.0",
|
|
67
67
|
"jest-mock-extended": "^4.0.0-beta1",
|
|
68
68
|
"prettier": "^3.2.5",
|
|
69
69
|
"semantic-release": "^25.0.0",
|
|
70
70
|
"ts-jest": "^29.1.2",
|
|
71
|
-
"ts-patch": "^
|
|
72
|
-
"typescript": "^
|
|
71
|
+
"ts-patch": "^4.0.0",
|
|
72
|
+
"typescript": "^6.0.0"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
75
|
"cheerio": "^1.0.0",
|
package/tsconfig.build.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"target": "es2020",
|
|
4
|
-
"module": "
|
|
4
|
+
"module": "CommonJS",
|
|
5
5
|
"moduleResolution": "Node",
|
|
6
6
|
"esModuleInterop": true,
|
|
7
7
|
"outDir": "./dist",
|
|
@@ -15,7 +15,9 @@
|
|
|
15
15
|
"transform": "typia/lib/transform"
|
|
16
16
|
}
|
|
17
17
|
],
|
|
18
|
-
"strictNullChecks": true
|
|
18
|
+
"strictNullChecks": true,
|
|
19
|
+
"ignoreDeprecations": "6.0",
|
|
20
|
+
"types": ["jest", "node"]
|
|
19
21
|
},
|
|
20
22
|
"include": ["src"],
|
|
21
23
|
"exclude": ["node_modules", "**/__tests__/*"]
|