@shepherdjerred/helm-types 1.5.0-dev.6841 → 1.5.0-dev.6887

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shepherdjerred/helm-types",
3
- "version": "1.5.0-dev.6841",
3
+ "version": "1.5.0-dev.6887",
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",
@@ -52,19 +52,11 @@ export async function parseChartInfoFromVersions(
52
52
  continue;
53
53
  }
54
54
 
55
- // Try to determine chart name from the version key or URL
56
- let chartName = versionKey;
57
-
58
- // Handle special cases like "argo-cd" vs "argocd"
59
- if (versionKey === "argo-cd") {
60
- chartName = "argo-cd";
61
- }
62
-
63
55
  charts.push({
64
56
  name: versionKey,
65
57
  repoUrl: repoUrl.replace(/\/$/, ""), // Remove trailing slash
66
58
  version,
67
- chartName,
59
+ chartName: versionKey,
68
60
  });
69
61
  }
70
62