@storm-software/k8s-tools 0.10.0 → 0.10.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 CHANGED
@@ -1,3 +1,16 @@
1
+ ## 0.10.1 (2024-12-18)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **storm-ops:** Resolved issue with ESM resolve error during postinstall script
6
+ execution
7
+ ([82389510](https://github.com/storm-software/storm-ops/commit/82389510))
8
+
9
+ ### Dependency Upgrades
10
+
11
+ - **storm-ops:** Upgrade Nx package to v20.2.2
12
+ ([d793912d](https://github.com/storm-software/storm-ops/commit/d793912d))
13
+
1
14
  ## 0.10.0 (2024-10-31)
2
15
 
3
16
  ### Features
package/index.js CHANGED
@@ -113,7 +113,9 @@ var import_node_child_process = require("node:child_process");
113
113
 
114
114
  // packages/k8s-tools/src/types.ts
115
115
  var AbstractHelmClient = class {
116
- initialized = false;
116
+ constructor() {
117
+ this.initialized = false;
118
+ }
117
119
  async initialize() {
118
120
  throw new Error("Method not implemented.");
119
121
  }
package/meta.json CHANGED
@@ -423,7 +423,7 @@
423
423
  "bytesInOutput": 3290
424
424
  },
425
425
  "packages/k8s-tools/src/types.ts": {
426
- "bytesInOutput": 134
426
+ "bytesInOutput": 163
427
427
  },
428
428
  "packages/k8s-tools/src/utils/ensure-init.ts": {
429
429
  "bytesInOutput": 579
@@ -453,7 +453,7 @@
453
453
  "bytesInOutput": 0
454
454
  }
455
455
  },
456
- "bytes": 109356
456
+ "bytes": 109385
457
457
  },
458
458
  "dist/packages/k8s-tools/src/executors/helm-package/executor.js": {
459
459
  "imports": [
@@ -483,13 +483,13 @@
483
483
  "bytesInOutput": 3288
484
484
  },
485
485
  "packages/k8s-tools/src/types.ts": {
486
- "bytesInOutput": 134
486
+ "bytesInOutput": 163
487
487
  },
488
488
  "packages/k8s-tools/src/utils/ensure-init.ts": {
489
489
  "bytesInOutput": 579
490
490
  }
491
491
  },
492
- "bytes": 7918
492
+ "bytes": 7947
493
493
  },
494
494
  "dist/packages/k8s-tools/src/executors/container-publish/executor.js": {
495
495
  "imports": [
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@storm-software/k8s-tools",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "type": "commonjs",
5
- "description": " A Nx plugin package that contains various executors, generators, and utilities that assist in managing k8s IoC.",
5
+ "description": "Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.",
6
6
  "repository": {
7
7
  "type": "github",
8
8
  "url": "https://github.com/storm-software/storm-ops",
@@ -30,6 +30,7 @@
30
30
  "./executors/*/schema.json": "./src/executors/*/schema.json",
31
31
  "./plugins/docker": "./src/plugins/docker/index.js"
32
32
  },
33
+ "typings": "./declarations.d.ts",
33
34
  "keywords": [
34
35
  "storm",
35
36
  "storm-ops",
@@ -43,8 +44,9 @@
43
44
  "peerDependencies": {
44
45
  "@nx-tools/container-metadata": "^6.0.2",
45
46
  "@nx-tools/nx-container": "^6.0.2",
46
- "@nx/devkit": "^20.0.6",
47
- "nx": "^20.0.6"
47
+ "@nx/devkit": "^20.2.2",
48
+ "@nx/workspace": "^20.2.2",
49
+ "nx": "^20.2.2"
48
50
  },
49
51
  "peerDependenciesMeta": {
50
52
  "@nx-tools/container-metadata": {
@@ -56,20 +58,23 @@
56
58
  "@nx/devkit": {
57
59
  "optional": false
58
60
  },
61
+ "@nx/workspace": {
62
+ "optional": false
63
+ },
59
64
  "nx": {
60
65
  "optional": false
61
66
  }
62
67
  },
63
68
  "dependencies": {
64
- "@nx/devkit": "^20.0.6",
65
- "@nx/workspace": "^20.0.6",
66
69
  "js-yaml": "^4.1.0"
67
70
  },
68
71
  "devDependencies": {
69
72
  "@nx-tools/container-metadata": "^6.0.2",
70
73
  "@nx-tools/nx-container": "^6.0.2",
74
+ "@nx/devkit": "^20.2.2",
75
+ "@nx/workspace": "^20.2.2",
71
76
  "@types/js-yaml": "4.0.9",
72
- "nx": "^20.0.6"
77
+ "nx": "^20.2.2"
73
78
  },
74
79
  "publishConfig": {
75
80
  "access": "public"
@@ -48,7 +48,9 @@ var import_node_child_process = require("node:child_process");
48
48
 
49
49
  // packages/k8s-tools/src/types.ts
50
50
  var AbstractHelmClient = class {
51
- initialized = false;
51
+ constructor() {
52
+ this.initialized = false;
53
+ }
52
54
  async initialize() {
53
55
  throw new Error("Method not implemented.");
54
56
  }