timonel 2.5.0 → 2.5.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 +6 -0
- package/package.json +11 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [2.5.1](https://github.com/KenkoGeek/timonel/compare/v2.5.0...v2.5.1) (2025-09-12)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **ci:** add comprehensive test suite with unit and integration tests ([#38](https://github.com/KenkoGeek/timonel/issues/38)) ([ffae52f](https://github.com/KenkoGeek/timonel/commit/ffae52fe357a8324959d74c5dd88594b21dafde1))
|
|
6
|
+
|
|
1
7
|
# [2.5.0](https://github.com/KenkoGeek/timonel/compare/v2.4.0...v2.5.0) (2025-09-12)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "timonel",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.5.
|
|
4
|
+
"version": "2.5.1",
|
|
5
5
|
"description": "Timonel: programmatic Helm chart generator using cdk8s (TypeScript)",
|
|
6
6
|
"bin": {
|
|
7
7
|
"timonel": "dist/cli.js",
|
|
@@ -31,13 +31,18 @@
|
|
|
31
31
|
"format": "prettier --write .",
|
|
32
32
|
"format:check": "prettier --check .",
|
|
33
33
|
"security:lint": "eslint .",
|
|
34
|
-
"security:audit": "pnpm audit --audit-level=
|
|
34
|
+
"security:audit": "pnpm audit --audit-level=high",
|
|
35
35
|
"security:check": "pnpm run security:lint && pnpm run security:audit",
|
|
36
36
|
"deps:check": "pnpm outdated",
|
|
37
37
|
"deps:update": "pnpm update --latest",
|
|
38
38
|
"md:lint": "markdownlint \"**/*.md\"",
|
|
39
39
|
"md:fix": "markdownlint --fix \"**/*.md\"",
|
|
40
|
-
"test": "
|
|
40
|
+
"test": "pnpm test:unit && pnpm test:integration",
|
|
41
|
+
"test:unit": "vitest run --config vitest.config.ts",
|
|
42
|
+
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
43
|
+
"test:watch": "vitest",
|
|
44
|
+
"test:coverage": "vitest run --coverage",
|
|
45
|
+
"test:basic-integration": "vitest run tests/integration/basic-chart-generation.int.spec.ts --config vitest.integration.config.ts",
|
|
41
46
|
"ci:check": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm build",
|
|
42
47
|
"release": "semantic-release",
|
|
43
48
|
"release:dry": "semantic-release --dry-run",
|
|
@@ -94,6 +99,7 @@
|
|
|
94
99
|
"@types/node": "^24.3.0",
|
|
95
100
|
"@typescript-eslint/eslint-plugin": "^8.42.0",
|
|
96
101
|
"@typescript-eslint/parser": "^8.42.0",
|
|
102
|
+
"@vitest/coverage-v8": "^2.1.9",
|
|
97
103
|
"conventional-changelog-cli": "^5.0.0",
|
|
98
104
|
"eslint": "^9.35.0",
|
|
99
105
|
"eslint-config-prettier": "^10.1.8",
|
|
@@ -108,7 +114,8 @@
|
|
|
108
114
|
"markdownlint-cli": "^0.45.0",
|
|
109
115
|
"prettier": "^3.6.2",
|
|
110
116
|
"semantic-release": "^24.2.7",
|
|
111
|
-
"typescript": "^5.9.2"
|
|
117
|
+
"typescript": "^5.9.2",
|
|
118
|
+
"vitest": "^2.1.9"
|
|
112
119
|
},
|
|
113
120
|
"files": [
|
|
114
121
|
"dist",
|