@storm-software/k8s-tools 0.1.0 → 0.2.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## 0.2.0 (2024-08-27)
2
+
3
+ ### Features
4
+
5
+ - **k8s-tools:** Added aliases for `helm-chart` and `helm-dependency` generators
6
+ ([16a4b7c7](https://github.com/storm-software/storm-ops/commit/16a4b7c7))
7
+
8
+ ## 0.1.1 (2024-08-27)
9
+
10
+ ### Bug Fixes
11
+
12
+ - **k8s-tools:** Resolved issue invoking generator functions
13
+ ([405367cb](https://github.com/storm-software/storm-ops/commit/405367cb))
14
+
1
15
  ## 0.1.0 (2024-08-23)
2
16
 
3
17
  ### Features
package/generators.json CHANGED
@@ -3,11 +3,13 @@
3
3
  "helm-chart": {
4
4
  "factory": "./src/generators/helm-chart/generator",
5
5
  "schema": "./src/generators/helm-chart/schema.json",
6
+ "aliases": ["add-chart", "chart"],
6
7
  "description": "Generate a new Helm chart"
7
8
  },
8
9
  "helm-dependency": {
9
10
  "factory": "./src/generators/helm-dependency/generator",
10
11
  "schema": "./src/generators/helm-dependency/schema.json",
12
+ "aliases": ["add-dependency", "dependency"],
11
13
  "description": "Generate a new dependency for an existing Helm chart"
12
14
  }
13
15
  }