@storm-software/k8s-tools 0.26.4 → 0.27.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
@@ -2,6 +2,43 @@
2
2
 
3
3
  # Changelog for Storm Ops - K8s Tools
4
4
 
5
+ ## [0.27.0](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.27.0) (2025-05-05)
6
+
7
+ ### Features
8
+
9
+ - **eslint:** Added the `ignoreWorkspaceDeps` option
10
+ ([b9713759d](https://github.com/storm-software/storm-ops/commit/b9713759d))
11
+
12
+ ### Miscellaneous
13
+
14
+ - **monorepo:** Regenerate README markdown files
15
+ ([d3523fe43](https://github.com/storm-software/storm-ops/commit/d3523fe43))
16
+
17
+ ### Updated Dependencies
18
+
19
+ - Updated workspace-tools to 1.269.0
20
+ - Updated workspace-tools to 1.269.0
21
+ - Updated config-tools to 1.165.0
22
+ - Updated config-tools to 1.165.0
23
+ - Updated config to 1.115.0
24
+ - Updated config to 1.115.0
25
+
26
+ ## [0.26.5](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.26.5) (2025-05-05)
27
+
28
+ ### Miscellaneous
29
+
30
+ - **monorepo:** Regenerate README markdown files
31
+ ([140f0f788](https://github.com/storm-software/storm-ops/commit/140f0f788))
32
+
33
+ ### Updated Dependencies
34
+
35
+ - Updated workspace-tools to 1.268.5
36
+ - Updated workspace-tools to 1.268.5
37
+ - Updated config-tools to 1.164.5
38
+ - Updated config-tools to 1.164.5
39
+ - Updated config to 1.114.5
40
+ - Updated config to 1.114.5
41
+
5
42
  ## [0.26.4](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.26.4) (2025-05-05)
6
43
 
7
44
  ### Miscellaneous
package/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-0.26.3-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.26.5-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -1,8 +1,5 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
- var _chunkM5IOCZK5js = require('./chunk-M5IOCZK5.js');
4
-
5
-
6
3
 
7
4
  var _chunkDD5DCADPjs = require('./chunk-DD5DCADP.js');
8
5
 
@@ -19,6 +16,9 @@ var _chunkDD5DCADPjs = require('./chunk-DD5DCADP.js');
19
16
 
20
17
  var _chunkUWVOFPSWjs = require('./chunk-UWVOFPSW.js');
21
18
 
19
+
20
+ var _chunk4AADQIGWjs = require('./chunk-4AADQIGW.js');
21
+
22
22
  // ../workspace-tools/src/base/base-executor.ts
23
23
  var _defu = require('defu');
24
24
  var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_options, context) => {
@@ -146,7 +146,7 @@ async function serveExecutor(options, context, config) {
146
146
  if (!_optionalChain([context, 'optionalAccess', _22 => _22.projectName]) || !_optionalChain([context, 'optionalAccess', _23 => _23.projectsConfigurations, 'optionalAccess', _24 => _24.projects, 'optionalAccess', _25 => _25[context.projectName], 'optionalAccess', _26 => _26.root])) {
147
147
  throw new Error("Nx executor context was invalid");
148
148
  }
149
- const helm = _chunkM5IOCZK5js.createHelmClient.call(void 0, );
149
+ const helm = _chunk4AADQIGWjs.createHelmClient.call(void 0, );
150
150
  if (_optionalChain([options, 'access', _27 => _27.dependencies, 'optionalAccess', _28 => _28.repositories])) {
151
151
  for (const repository of options.dependencies.repositories) {
152
152
  if (repository.name && repository.url) {
@@ -1,6 +1,3 @@
1
- import {
2
- createHelmClient
3
- } from "./chunk-HTDCDGM3.mjs";
4
1
  import {
5
2
  applyWorkspaceProjectTokens,
6
3
  applyWorkspaceTokens
@@ -18,6 +15,9 @@ import {
18
15
  writeTrace,
19
16
  writeWarning
20
17
  } from "./chunk-MWMS7P7U.mjs";
18
+ import {
19
+ createHelmClient
20
+ } from "./chunk-RUROM5AC.mjs";
21
21
 
22
22
  // ../workspace-tools/src/base/base-executor.ts
23
23
  import { defu } from "defu";
package/dist/executors.js CHANGED
@@ -2,17 +2,17 @@
2
2
 
3
3
 
4
4
  var _chunkSGNASGK5js = require('./chunk-SGNASGK5.js');
5
- require('./chunk-RUPAIXLM.js');
6
5
 
7
6
 
8
- var _chunk3YRUSJ6Qjs = require('./chunk-3YRUSJ6Q.js');
9
- require('./chunk-M5IOCZK5.js');
10
- require('./chunk-XKOZIQT3.js');
11
- require('./chunk-JSFRUBG5.js');
7
+ var _chunkA7ARE63Fjs = require('./chunk-A7ARE63F.js');
8
+ require('./chunk-RUPAIXLM.js');
12
9
  require('./chunk-DD5DCADP.js');
13
10
  require('./chunk-UWVOFPSW.js');
11
+ require('./chunk-4AADQIGW.js');
12
+ require('./chunk-JSFRUBG5.js');
13
+ require('./chunk-XKOZIQT3.js');
14
14
  require('./chunk-RECJ3G6F.js');
15
15
 
16
16
 
17
17
 
18
- exports.getRegistryVersion = _chunkSGNASGK5js.getRegistryVersion; exports.serveExecutor = _chunk3YRUSJ6Qjs.serveExecutor;
18
+ exports.getRegistryVersion = _chunkSGNASGK5js.getRegistryVersion; exports.serveExecutor = _chunkA7ARE63Fjs.serveExecutor;
@@ -2,15 +2,15 @@ import "./chunk-YSCEY447.mjs";
2
2
  import {
3
3
  getRegistryVersion
4
4
  } from "./chunk-BBY7MXHG.mjs";
5
- import "./chunk-ARIMP3W4.mjs";
6
5
  import {
7
6
  serveExecutor
8
- } from "./chunk-K5ZDOI3K.mjs";
9
- import "./chunk-HTDCDGM3.mjs";
10
- import "./chunk-HGXQ6SSU.mjs";
11
- import "./chunk-YXXZO2AJ.mjs";
7
+ } from "./chunk-NWIIGYA4.mjs";
8
+ import "./chunk-ARIMP3W4.mjs";
12
9
  import "./chunk-MDGD27YL.mjs";
13
10
  import "./chunk-MWMS7P7U.mjs";
11
+ import "./chunk-RUROM5AC.mjs";
12
+ import "./chunk-YXXZO2AJ.mjs";
13
+ import "./chunk-HGXQ6SSU.mjs";
14
14
  import "./chunk-27DDDFDE.mjs";
15
15
  export {
16
16
  getRegistryVersion,
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-DHBG5ASJ.js');
2
2
 
3
3
 
4
- var _chunkGQUK4O4Ejs = require('./chunk-GQUK4O4E.js');
4
+ var _chunkNMNRCEUZjs = require('./chunk-NMNRCEUZ.js');
5
5
 
6
6
 
7
- var _chunkNMNRCEUZjs = require('./chunk-NMNRCEUZ.js');
7
+ var _chunkGQUK4O4Ejs = require('./chunk-GQUK4O4E.js');
8
8
  require('./chunk-2SIDLIM5.js');
9
9
  require('./chunk-DD5DCADP.js');
10
10
  require('./chunk-UWVOFPSW.js');
@@ -1,10 +1,10 @@
1
1
  import "./chunk-3J7KBHMJ.mjs";
2
- import {
3
- helmDependencyGeneratorFn
4
- } from "./chunk-MKWEGZBN.mjs";
5
2
  import {
6
3
  helmChartGeneratorFn
7
4
  } from "./chunk-KVKKT3AU.mjs";
5
+ import {
6
+ helmDependencyGeneratorFn
7
+ } from "./chunk-MKWEGZBN.mjs";
8
8
  import "./chunk-VREITNWP.mjs";
9
9
  import "./chunk-MDGD27YL.mjs";
10
10
  import "./chunk-MWMS7P7U.mjs";
package/dist/index.js CHANGED
@@ -4,39 +4,39 @@
4
4
 
5
5
 
6
6
  var _chunkY2HMMGO2js = require('./chunk-Y2HMMGO2.js');
7
- require('./chunk-U76ID4TS.js');
7
+ require('./chunk-XO66D74Z.js');
8
8
 
9
9
 
10
+ var _chunkSGNASGK5js = require('./chunk-SGNASGK5.js');
10
11
 
11
- var _chunk7QVOU2PTjs = require('./chunk-7QVOU2PT.js');
12
- require('./chunk-XO66D74Z.js');
13
- require('./chunk-DHBG5ASJ.js');
14
12
 
13
+ var _chunkA7ARE63Fjs = require('./chunk-A7ARE63F.js');
14
+ require('./chunk-RUPAIXLM.js');
15
+ require('./chunk-DHBG5ASJ.js');
15
16
 
16
- var _chunkGQUK4O4Ejs = require('./chunk-GQUK4O4E.js');
17
17
 
18
+ var _chunkNMNRCEUZjs = require('./chunk-NMNRCEUZ.js');
18
19
 
19
- var _chunkSGNASGK5js = require('./chunk-SGNASGK5.js');
20
- require('./chunk-RUPAIXLM.js');
21
20
 
21
+ var _chunkGQUK4O4Ejs = require('./chunk-GQUK4O4E.js');
22
+ require('./chunk-2SIDLIM5.js');
23
+ require('./chunk-DD5DCADP.js');
24
+ require('./chunk-UWVOFPSW.js');
25
+ require('./chunk-U76ID4TS.js');
22
26
 
23
- var _chunk3YRUSJ6Qjs = require('./chunk-3YRUSJ6Q.js');
24
27
 
25
28
 
29
+ var _chunk7QVOU2PTjs = require('./chunk-7QVOU2PT.js');
26
30
 
27
- var _chunkM5IOCZK5js = require('./chunk-M5IOCZK5.js');
28
31
 
29
32
 
30
- var _chunkXKOZIQT3js = require('./chunk-XKOZIQT3.js');
33
+ var _chunk4AADQIGWjs = require('./chunk-4AADQIGW.js');
31
34
 
32
35
 
33
36
  var _chunkJSFRUBG5js = require('./chunk-JSFRUBG5.js');
34
37
 
35
38
 
36
- var _chunkNMNRCEUZjs = require('./chunk-NMNRCEUZ.js');
37
- require('./chunk-2SIDLIM5.js');
38
- require('./chunk-DD5DCADP.js');
39
- require('./chunk-UWVOFPSW.js');
39
+ var _chunkXKOZIQT3js = require('./chunk-XKOZIQT3.js');
40
40
  require('./chunk-RECJ3G6F.js');
41
41
 
42
42
 
@@ -53,4 +53,4 @@ require('./chunk-RECJ3G6F.js');
53
53
 
54
54
 
55
55
 
56
- exports.AbstractHelmClient = _chunkJSFRUBG5js.AbstractHelmClient; exports.HelmClient = _chunkM5IOCZK5js.HelmClient; exports.addToPrettierIgnore = _chunk7QVOU2PTjs.addToPrettierIgnore; exports.createDependencies = _chunkY2HMMGO2js.createDependencies; exports.createHelmClient = _chunkM5IOCZK5js.createHelmClient; exports.createNodes = _chunkY2HMMGO2js.createNodes; exports.description = _chunkY2HMMGO2js.description; exports.ensureInitialized = _chunkXKOZIQT3js.ensureInitialized; exports.getRegistryVersion = _chunkSGNASGK5js.getRegistryVersion; exports.helmChartGeneratorFn = _chunkNMNRCEUZjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkGQUK4O4Ejs.helmDependencyGeneratorFn; exports.name = _chunkY2HMMGO2js.name; exports.resolveUserExistingPrettierConfig = _chunk7QVOU2PTjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunk3YRUSJ6Qjs.serveExecutor;
56
+ exports.AbstractHelmClient = _chunkJSFRUBG5js.AbstractHelmClient; exports.HelmClient = _chunk4AADQIGWjs.HelmClient; exports.addToPrettierIgnore = _chunk7QVOU2PTjs.addToPrettierIgnore; exports.createDependencies = _chunkY2HMMGO2js.createDependencies; exports.createHelmClient = _chunk4AADQIGWjs.createHelmClient; exports.createNodes = _chunkY2HMMGO2js.createNodes; exports.description = _chunkY2HMMGO2js.description; exports.ensureInitialized = _chunkXKOZIQT3js.ensureInitialized; exports.getRegistryVersion = _chunkSGNASGK5js.getRegistryVersion; exports.helmChartGeneratorFn = _chunkNMNRCEUZjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkGQUK4O4Ejs.helmDependencyGeneratorFn; exports.name = _chunkY2HMMGO2js.name; exports.resolveUserExistingPrettierConfig = _chunk7QVOU2PTjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunkA7ARE63Fjs.serveExecutor;
package/dist/index.mjs CHANGED
@@ -4,39 +4,39 @@ import {
4
4
  description,
5
5
  name
6
6
  } from "./chunk-MQZUEUAT.mjs";
7
- import "./chunk-WWU25UQ4.mjs";
8
- import {
9
- addToPrettierIgnore,
10
- resolveUserExistingPrettierConfig
11
- } from "./chunk-QHFQ2OBL.mjs";
12
7
  import "./chunk-YSCEY447.mjs";
13
- import "./chunk-3J7KBHMJ.mjs";
14
- import {
15
- helmDependencyGeneratorFn
16
- } from "./chunk-MKWEGZBN.mjs";
17
8
  import {
18
9
  getRegistryVersion
19
10
  } from "./chunk-BBY7MXHG.mjs";
20
- import "./chunk-ARIMP3W4.mjs";
21
11
  import {
22
12
  serveExecutor
23
- } from "./chunk-K5ZDOI3K.mjs";
13
+ } from "./chunk-NWIIGYA4.mjs";
14
+ import "./chunk-ARIMP3W4.mjs";
15
+ import "./chunk-3J7KBHMJ.mjs";
16
+ import {
17
+ helmChartGeneratorFn
18
+ } from "./chunk-KVKKT3AU.mjs";
19
+ import {
20
+ helmDependencyGeneratorFn
21
+ } from "./chunk-MKWEGZBN.mjs";
22
+ import "./chunk-VREITNWP.mjs";
23
+ import "./chunk-MDGD27YL.mjs";
24
+ import "./chunk-MWMS7P7U.mjs";
25
+ import "./chunk-WWU25UQ4.mjs";
26
+ import {
27
+ addToPrettierIgnore,
28
+ resolveUserExistingPrettierConfig
29
+ } from "./chunk-QHFQ2OBL.mjs";
24
30
  import {
25
31
  HelmClient,
26
32
  createHelmClient
27
- } from "./chunk-HTDCDGM3.mjs";
28
- import {
29
- ensureInitialized
30
- } from "./chunk-HGXQ6SSU.mjs";
33
+ } from "./chunk-RUROM5AC.mjs";
31
34
  import {
32
35
  AbstractHelmClient
33
36
  } from "./chunk-YXXZO2AJ.mjs";
34
37
  import {
35
- helmChartGeneratorFn
36
- } from "./chunk-KVKKT3AU.mjs";
37
- import "./chunk-VREITNWP.mjs";
38
- import "./chunk-MDGD27YL.mjs";
39
- import "./chunk-MWMS7P7U.mjs";
38
+ ensureInitialized
39
+ } from "./chunk-HGXQ6SSU.mjs";
40
40
  import "./chunk-27DDDFDE.mjs";
41
41
  export {
42
42
  AbstractHelmClient,
@@ -1,14 +1,14 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk3YRUSJ6Qjs = require('../../../chunk-3YRUSJ6Q.js');
5
- require('../../../chunk-M5IOCZK5.js');
6
- require('../../../chunk-XKOZIQT3.js');
7
- require('../../../chunk-JSFRUBG5.js');
4
+ var _chunkA7ARE63Fjs = require('../../../chunk-A7ARE63F.js');
8
5
  require('../../../chunk-DD5DCADP.js');
9
6
  require('../../../chunk-UWVOFPSW.js');
7
+ require('../../../chunk-4AADQIGW.js');
8
+ require('../../../chunk-JSFRUBG5.js');
9
+ require('../../../chunk-XKOZIQT3.js');
10
10
  require('../../../chunk-RECJ3G6F.js');
11
11
 
12
12
 
13
13
 
14
- exports.default = _chunk3YRUSJ6Qjs.executor_default; exports.serveExecutor = _chunk3YRUSJ6Qjs.serveExecutor;
14
+ exports.default = _chunkA7ARE63Fjs.executor_default; exports.serveExecutor = _chunkA7ARE63Fjs.serveExecutor;
@@ -1,12 +1,12 @@
1
1
  import {
2
2
  executor_default,
3
3
  serveExecutor
4
- } from "../../../chunk-K5ZDOI3K.mjs";
5
- import "../../../chunk-HTDCDGM3.mjs";
6
- import "../../../chunk-HGXQ6SSU.mjs";
7
- import "../../../chunk-YXXZO2AJ.mjs";
4
+ } from "../../../chunk-NWIIGYA4.mjs";
8
5
  import "../../../chunk-MDGD27YL.mjs";
9
6
  import "../../../chunk-MWMS7P7U.mjs";
7
+ import "../../../chunk-RUROM5AC.mjs";
8
+ import "../../../chunk-YXXZO2AJ.mjs";
9
+ import "../../../chunk-HGXQ6SSU.mjs";
10
10
  import "../../../chunk-27DDDFDE.mjs";
11
11
  export {
12
12
  executor_default as default,
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkM5IOCZK5js = require('../../chunk-M5IOCZK5.js');
5
- require('../../chunk-XKOZIQT3.js');
4
+ var _chunk4AADQIGWjs = require('../../chunk-4AADQIGW.js');
6
5
  require('../../chunk-JSFRUBG5.js');
6
+ require('../../chunk-XKOZIQT3.js');
7
7
  require('../../chunk-RECJ3G6F.js');
8
8
 
9
9
 
10
10
 
11
- exports.HelmClient = _chunkM5IOCZK5js.HelmClient; exports.createHelmClient = _chunkM5IOCZK5js.createHelmClient;
11
+ exports.HelmClient = _chunk4AADQIGWjs.HelmClient; exports.createHelmClient = _chunk4AADQIGWjs.createHelmClient;
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  HelmClient,
3
3
  createHelmClient
4
- } from "../../chunk-HTDCDGM3.mjs";
5
- import "../../chunk-HGXQ6SSU.mjs";
4
+ } from "../../chunk-RUROM5AC.mjs";
6
5
  import "../../chunk-YXXZO2AJ.mjs";
6
+ import "../../chunk-HGXQ6SSU.mjs";
7
7
  import "../../chunk-27DDDFDE.mjs";
8
8
  export {
9
9
  HelmClient,
@@ -6,11 +6,11 @@ var _chunk7QVOU2PTjs = require('../../chunk-7QVOU2PT.js');
6
6
 
7
7
 
8
8
 
9
- var _chunkM5IOCZK5js = require('../../chunk-M5IOCZK5.js');
9
+ var _chunk4AADQIGWjs = require('../../chunk-4AADQIGW.js');
10
+ require('../../chunk-JSFRUBG5.js');
10
11
 
11
12
 
12
13
  var _chunkXKOZIQT3js = require('../../chunk-XKOZIQT3.js');
13
- require('../../chunk-JSFRUBG5.js');
14
14
  require('../../chunk-RECJ3G6F.js');
15
15
 
16
16
 
@@ -18,4 +18,4 @@ require('../../chunk-RECJ3G6F.js');
18
18
 
19
19
 
20
20
 
21
- exports.HelmClient = _chunkM5IOCZK5js.HelmClient; exports.addToPrettierIgnore = _chunk7QVOU2PTjs.addToPrettierIgnore; exports.createHelmClient = _chunkM5IOCZK5js.createHelmClient; exports.ensureInitialized = _chunkXKOZIQT3js.ensureInitialized; exports.resolveUserExistingPrettierConfig = _chunk7QVOU2PTjs.resolveUserExistingPrettierConfig;
21
+ exports.HelmClient = _chunk4AADQIGWjs.HelmClient; exports.addToPrettierIgnore = _chunk7QVOU2PTjs.addToPrettierIgnore; exports.createHelmClient = _chunk4AADQIGWjs.createHelmClient; exports.ensureInitialized = _chunkXKOZIQT3js.ensureInitialized; exports.resolveUserExistingPrettierConfig = _chunk7QVOU2PTjs.resolveUserExistingPrettierConfig;
@@ -6,11 +6,11 @@ import {
6
6
  import {
7
7
  HelmClient,
8
8
  createHelmClient
9
- } from "../../chunk-HTDCDGM3.mjs";
9
+ } from "../../chunk-RUROM5AC.mjs";
10
+ import "../../chunk-YXXZO2AJ.mjs";
10
11
  import {
11
12
  ensureInitialized
12
13
  } from "../../chunk-HGXQ6SSU.mjs";
13
- import "../../chunk-YXXZO2AJ.mjs";
14
14
  import "../../chunk-27DDDFDE.mjs";
15
15
  export {
16
16
  HelmClient,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/k8s-tools",
3
- "version": "0.26.4",
3
+ "version": "0.27.0",
4
4
  "description": "Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -162,9 +162,9 @@
162
162
  }
163
163
  },
164
164
  "dependencies": {
165
- "@storm-software/config": "1.114.4",
166
- "@storm-software/config-tools": "1.164.4",
167
- "@storm-software/workspace-tools": "1.268.4",
165
+ "@storm-software/config": "1.115.0",
166
+ "@storm-software/config-tools": "1.165.0",
167
+ "@storm-software/workspace-tools": "1.269.0",
168
168
  "js-yaml": "^4.1.0"
169
169
  },
170
170
  "devDependencies": {
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
- var _chunkXKOZIQT3js = require('./chunk-XKOZIQT3.js');
3
+ var _chunkJSFRUBG5js = require('./chunk-JSFRUBG5.js');
4
4
 
5
5
 
6
- var _chunkJSFRUBG5js = require('./chunk-JSFRUBG5.js');
6
+ var _chunkXKOZIQT3js = require('./chunk-XKOZIQT3.js');
7
7
 
8
8
 
9
9
  var _chunkRECJ3G6Fjs = require('./chunk-RECJ3G6F.js');
@@ -1,9 +1,9 @@
1
- import {
2
- ensureInitialized
3
- } from "./chunk-HGXQ6SSU.mjs";
4
1
  import {
5
2
  AbstractHelmClient
6
3
  } from "./chunk-YXXZO2AJ.mjs";
4
+ import {
5
+ ensureInitialized
6
+ } from "./chunk-HGXQ6SSU.mjs";
7
7
  import {
8
8
  __decorateClass
9
9
  } from "./chunk-27DDDFDE.mjs";