@shepherdjerred/helm-types 1.4.0-dev.5538 → 1.4.0

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.
Files changed (3) hide show
  1. package/dist/cli.js +214 -191
  2. package/package.json +5 -4
  3. package/src/config.ts +0 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shepherdjerred/helm-types",
3
- "version": "1.4.0-dev.5538",
3
+ "version": "1.4.0",
4
4
  "description": "Generate TypeScript types from Helm chart values.yaml and values.schema.json",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,14 +22,15 @@
22
22
  ],
23
23
  "scripts": {
24
24
  "build": "bun build src/index.ts src/cli.ts --outdir dist --target node",
25
- "generate": "bun run src/cli.ts",
26
25
  "test": "bun test",
27
26
  "test:helm-types": "bun test src/helm-types.test.ts",
28
27
  "test:cli": "bun test src/cli.test.ts",
29
28
  "lint": "bunx eslint .",
30
29
  "lint:fix": "bunx eslint . --fix",
31
30
  "typecheck": "bunx tsc --noEmit",
32
- "prepublishOnly": "bun run build"
31
+ "prepublishOnly": "bun run build",
32
+ "generate:live": "bun run src/cli.ts",
33
+ "publish:npm": "bun ../../../../scripts/publish-npm.ts ."
33
34
  },
34
35
  "keywords": [
35
36
  "helm",
@@ -61,7 +62,7 @@
61
62
  "zod": "^4.4.3"
62
63
  },
63
64
  "devDependencies": {
64
- "@shepherdjerred/eslint-config": "^0.3.0",
65
+ "@shepherdjerred/eslint-config": "0.3.0",
65
66
  "@types/bun": "^1.3.13",
66
67
  "eslint": "^10.3.0",
67
68
  "jiti": "^2.7.0"
package/src/config.ts CHANGED
@@ -117,9 +117,6 @@ export const EXTENSIBLE_TYPE_PATTERNS: Record<string, string[]> = {
117
117
  ],
118
118
  // OCI charts that document config keys only as commented-out examples in
119
119
  // values.yaml, so inference from active defaults misses valid keys.
120
- "dagger-helm": [
121
- "engine", // engine.port / engine.configJson / engine.config are commented-out chart examples
122
- ],
123
120
  "agent-stack-k8s": [
124
121
  "config", // config.queue / max-in-flight / empty-job-grace-period / default-checkout-params are valid but not defaulted
125
122
  ],