@storm-software/k8s-tools 0.24.72 → 0.25.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 +7 -0
- package/README.md +2 -1
- package/dist/{chunk-TDKCD2UH.mjs → chunk-3CCPGNKE.mjs} +1 -1
- package/dist/{chunk-QTT3BVML.mjs → chunk-5K3THPVO.mjs} +3 -3
- package/dist/{chunk-P6TL3VCN.mjs → chunk-6A2CTTFW.mjs} +2 -2
- package/dist/{chunk-FULZ6CEA.mjs → chunk-AOXJPKVR.mjs} +3 -3
- package/dist/{chunk-KGKE4OZZ.mjs → chunk-BHGQCDM2.mjs} +1 -1
- package/dist/{chunk-R2N4B3KK.mjs → chunk-BJVJDITQ.mjs} +3 -3
- package/dist/{chunk-GQNRXLSS.mjs → chunk-F7KRJT35.mjs} +1 -1
- package/dist/{chunk-VYR2ASHT.mjs → chunk-FOVCXQPQ.mjs} +1 -1
- package/dist/{chunk-VBJEIRYY.mjs → chunk-FTTP6MST.mjs} +4 -4
- package/dist/{chunk-VGSUCQ2S.mjs → chunk-N7GSKHH2.mjs} +1 -1
- package/dist/{chunk-HKY2SDLX.mjs → chunk-REQRH3XD.mjs} +1 -1
- package/dist/{chunk-64SIKGJH.mjs → chunk-WL3FPWAJ.mjs} +3 -3
- package/dist/{chunk-GR5MMTTX.mjs → chunk-YCYK4RRA.mjs} +3 -3
- package/dist/{chunk-A3MPFMCY.mjs → chunk-ZW47S7PR.mjs} +4 -4
- package/dist/executors.mjs +9 -9
- package/dist/generators.mjs +6 -6
- package/dist/index.mjs +14 -14
- package/dist/src/executors/container-publish/executor.mjs +5 -5
- package/dist/src/executors/helm-package/executor.mjs +7 -7
- package/dist/src/generators/helm-chart/generator.mjs +5 -5
- package/dist/src/generators/helm-dependency/generator.mjs +5 -5
- package/dist/src/plugins/docker/index.mjs +4 -4
- package/dist/src/types.mjs +2 -2
- package/dist/src/utils/client.mjs +4 -4
- package/dist/src/utils/ensure-init.mjs +2 -2
- package/dist/src/utils/index.mjs +5 -5
- package/dist/src/utils/prettier.mjs +2 -2
- package/dist/tsup.config.mjs +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - K8s Tools
|
|
4
4
|
|
|
5
|
+
## [0.25.1](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.25.1) (2025-04-28)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update dependency versions in packages
|
|
10
|
+
([f1f72dd67](https://github.com/storm-software/storm-ops/commit/f1f72dd67))
|
|
11
|
+
|
|
5
12
|
## [0.24.72](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.24.72) (2025-04-25)
|
|
6
13
|
|
|
7
14
|
### 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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -40,6 +40,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
+
|
|
43
44
|
## Table of Contents
|
|
44
45
|
|
|
45
46
|
- [Storm Kubernetes Tools](#storm-kubernetes-tools)
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
withRunGenerator
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-WL3FPWAJ.mjs";
|
|
4
4
|
import {
|
|
5
5
|
writeDebug
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-F7KRJT35.mjs";
|
|
7
7
|
import {
|
|
8
8
|
__dirname,
|
|
9
9
|
__name
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-N7GSKHH2.mjs";
|
|
11
11
|
|
|
12
12
|
// src/generators/helm-chart/generator.ts
|
|
13
13
|
import { formatFiles, generateFiles, readProjectConfiguration, updateProjectConfiguration } from "@nx/devkit";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
findWorkspaceRoot
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-F7KRJT35.mjs";
|
|
4
4
|
import {
|
|
5
5
|
__name
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-N7GSKHH2.mjs";
|
|
7
7
|
|
|
8
8
|
// ../config-tools/src/utilities/apply-workspace-tokens.ts
|
|
9
9
|
var applyWorkspaceBaseTokens = /* @__PURE__ */ __name(async (option, tokenParams) => {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AbstractHelmClient
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-REQRH3XD.mjs";
|
|
4
4
|
import {
|
|
5
5
|
ensureInitialized
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-3CCPGNKE.mjs";
|
|
7
7
|
import {
|
|
8
8
|
__name
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-N7GSKHH2.mjs";
|
|
10
10
|
|
|
11
11
|
// src/utils/client.ts
|
|
12
12
|
import { execSync } from "node:child_process";
|
|
@@ -4,14 +4,14 @@ import {
|
|
|
4
4
|
hasProjectTag,
|
|
5
5
|
isEqualProjectTag,
|
|
6
6
|
setDefaultProjectTags
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-BHGQCDM2.mjs";
|
|
8
8
|
import {
|
|
9
9
|
findWorkspaceRoot,
|
|
10
10
|
getConfig
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-F7KRJT35.mjs";
|
|
12
12
|
import {
|
|
13
13
|
__name
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-N7GSKHH2.mjs";
|
|
15
15
|
|
|
16
16
|
// src/plugins/docker/_dockerfile.ts
|
|
17
17
|
import { joinPathFragments, readJsonFile } from "@nx/devkit";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
applyWorkspaceProjectTokens,
|
|
3
3
|
applyWorkspaceTokens
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-6A2CTTFW.mjs";
|
|
5
5
|
import {
|
|
6
6
|
findWorkspaceRoot,
|
|
7
7
|
formatLogMessage,
|
|
@@ -14,13 +14,13 @@ import {
|
|
|
14
14
|
writeSuccess,
|
|
15
15
|
writeTrace,
|
|
16
16
|
writeWarning
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-F7KRJT35.mjs";
|
|
18
18
|
import {
|
|
19
19
|
createHelmClient
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-AOXJPKVR.mjs";
|
|
21
21
|
import {
|
|
22
22
|
__name
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-N7GSKHH2.mjs";
|
|
24
24
|
|
|
25
25
|
// ../workspace-tools/src/base/base-executor.ts
|
|
26
26
|
import { defu } from "defu";
|
|
@@ -7,7 +7,7 @@ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require
|
|
|
7
7
|
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
8
8
|
});
|
|
9
9
|
|
|
10
|
-
// ../../node_modules/.pnpm/tsup@8.4.
|
|
10
|
+
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=6f5ec3d4990820b9e30a2e3135e1e171cde70966824e3b0ca9c0d2f02fc93f24__aad0536395a8d4adbad069f47cf0551b/node_modules/tsup/assets/esm_shims.js
|
|
11
11
|
import { fileURLToPath } from "url";
|
|
12
12
|
import path from "path";
|
|
13
13
|
var getFilename = /* @__PURE__ */ __name(() => fileURLToPath(import.meta.url), "getFilename");
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
applyWorkspaceBaseTokens,
|
|
3
3
|
applyWorkspaceTokens
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-6A2CTTFW.mjs";
|
|
5
5
|
import {
|
|
6
6
|
findWorkspaceRoot,
|
|
7
7
|
getConfig,
|
|
@@ -12,10 +12,10 @@ import {
|
|
|
12
12
|
writeInfo,
|
|
13
13
|
writeSuccess,
|
|
14
14
|
writeTrace
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-F7KRJT35.mjs";
|
|
16
16
|
import {
|
|
17
17
|
__name
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-N7GSKHH2.mjs";
|
|
19
19
|
|
|
20
20
|
// ../workspace-tools/src/base/base-generator.ts
|
|
21
21
|
var withRunGenerator = /* @__PURE__ */ __name((name, generatorFn, generatorOptions = {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import {
|
|
2
2
|
withRunGenerator
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-WL3FPWAJ.mjs";
|
|
4
4
|
import {
|
|
5
5
|
writeDebug
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-F7KRJT35.mjs";
|
|
7
7
|
import {
|
|
8
8
|
__name
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-N7GSKHH2.mjs";
|
|
10
10
|
|
|
11
11
|
// src/generators/helm-dependency/generator.ts
|
|
12
12
|
import { formatFiles, readProjectConfiguration, updateProjectConfiguration } from "@nx/devkit";
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getPackageInfo
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-BHGQCDM2.mjs";
|
|
4
4
|
import {
|
|
5
5
|
applyWorkspaceTokens
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-6A2CTTFW.mjs";
|
|
7
7
|
import {
|
|
8
8
|
findWorkspaceRoot,
|
|
9
9
|
getConfig
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-F7KRJT35.mjs";
|
|
11
11
|
import {
|
|
12
12
|
__name
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-N7GSKHH2.mjs";
|
|
14
14
|
|
|
15
15
|
// src/executors/container-publish/executor.ts
|
|
16
16
|
import { parseTargetString, runExecutor } from "@nx/devkit";
|
package/dist/executors.mjs
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import "./chunk-YSCEY447.mjs";
|
|
2
2
|
import {
|
|
3
3
|
getRegistryVersion
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-ZW47S7PR.mjs";
|
|
5
5
|
import {
|
|
6
6
|
serveExecutor
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-FTTP6MST.mjs";
|
|
8
|
+
import "./chunk-BHGQCDM2.mjs";
|
|
9
|
+
import "./chunk-6A2CTTFW.mjs";
|
|
10
|
+
import "./chunk-F7KRJT35.mjs";
|
|
11
|
+
import "./chunk-AOXJPKVR.mjs";
|
|
12
|
+
import "./chunk-REQRH3XD.mjs";
|
|
13
|
+
import "./chunk-3CCPGNKE.mjs";
|
|
14
|
+
import "./chunk-N7GSKHH2.mjs";
|
|
15
15
|
export {
|
|
16
16
|
getRegistryVersion,
|
|
17
17
|
serveExecutor
|
package/dist/generators.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import "./chunk-3J7KBHMJ.mjs";
|
|
2
2
|
import {
|
|
3
3
|
helmChartGeneratorFn
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-5K3THPVO.mjs";
|
|
5
5
|
import {
|
|
6
6
|
helmDependencyGeneratorFn
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-YCYK4RRA.mjs";
|
|
8
|
+
import "./chunk-WL3FPWAJ.mjs";
|
|
9
|
+
import "./chunk-6A2CTTFW.mjs";
|
|
10
|
+
import "./chunk-F7KRJT35.mjs";
|
|
11
|
+
import "./chunk-N7GSKHH2.mjs";
|
|
12
12
|
export {
|
|
13
13
|
helmChartGeneratorFn,
|
|
14
14
|
helmDependencyGeneratorFn
|
package/dist/index.mjs
CHANGED
|
@@ -3,41 +3,41 @@ import {
|
|
|
3
3
|
createNodes,
|
|
4
4
|
description,
|
|
5
5
|
name
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-BJVJDITQ.mjs";
|
|
7
7
|
import "./chunk-YSCEY447.mjs";
|
|
8
8
|
import {
|
|
9
9
|
getRegistryVersion
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-ZW47S7PR.mjs";
|
|
11
11
|
import {
|
|
12
12
|
serveExecutor
|
|
13
|
-
} from "./chunk-
|
|
14
|
-
import "./chunk-
|
|
13
|
+
} from "./chunk-FTTP6MST.mjs";
|
|
14
|
+
import "./chunk-BHGQCDM2.mjs";
|
|
15
15
|
import "./chunk-3J7KBHMJ.mjs";
|
|
16
16
|
import {
|
|
17
17
|
helmChartGeneratorFn
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-5K3THPVO.mjs";
|
|
19
19
|
import {
|
|
20
20
|
helmDependencyGeneratorFn
|
|
21
|
-
} from "./chunk-
|
|
22
|
-
import "./chunk-
|
|
23
|
-
import "./chunk-
|
|
24
|
-
import "./chunk-
|
|
21
|
+
} from "./chunk-YCYK4RRA.mjs";
|
|
22
|
+
import "./chunk-WL3FPWAJ.mjs";
|
|
23
|
+
import "./chunk-6A2CTTFW.mjs";
|
|
24
|
+
import "./chunk-F7KRJT35.mjs";
|
|
25
25
|
import "./chunk-WWU25UQ4.mjs";
|
|
26
26
|
import {
|
|
27
27
|
addToPrettierIgnore,
|
|
28
28
|
resolveUserExistingPrettierConfig
|
|
29
|
-
} from "./chunk-
|
|
29
|
+
} from "./chunk-FOVCXQPQ.mjs";
|
|
30
30
|
import {
|
|
31
31
|
HelmClient,
|
|
32
32
|
createHelmClient
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-AOXJPKVR.mjs";
|
|
34
34
|
import {
|
|
35
35
|
AbstractHelmClient
|
|
36
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-REQRH3XD.mjs";
|
|
37
37
|
import {
|
|
38
38
|
ensureInitialized
|
|
39
|
-
} from "./chunk-
|
|
40
|
-
import "./chunk-
|
|
39
|
+
} from "./chunk-3CCPGNKE.mjs";
|
|
40
|
+
import "./chunk-N7GSKHH2.mjs";
|
|
41
41
|
export {
|
|
42
42
|
AbstractHelmClient,
|
|
43
43
|
HelmClient,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getRegistryVersion,
|
|
3
3
|
publishExecutor
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-ZW47S7PR.mjs";
|
|
5
|
+
import "../../../chunk-BHGQCDM2.mjs";
|
|
6
|
+
import "../../../chunk-6A2CTTFW.mjs";
|
|
7
|
+
import "../../../chunk-F7KRJT35.mjs";
|
|
8
|
+
import "../../../chunk-N7GSKHH2.mjs";
|
|
9
9
|
export {
|
|
10
10
|
publishExecutor as default,
|
|
11
11
|
getRegistryVersion
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default,
|
|
3
3
|
serveExecutor
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
9
|
-
import "../../../chunk-
|
|
10
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-FTTP6MST.mjs";
|
|
5
|
+
import "../../../chunk-6A2CTTFW.mjs";
|
|
6
|
+
import "../../../chunk-F7KRJT35.mjs";
|
|
7
|
+
import "../../../chunk-AOXJPKVR.mjs";
|
|
8
|
+
import "../../../chunk-REQRH3XD.mjs";
|
|
9
|
+
import "../../../chunk-3CCPGNKE.mjs";
|
|
10
|
+
import "../../../chunk-N7GSKHH2.mjs";
|
|
11
11
|
export {
|
|
12
12
|
executor_default as default,
|
|
13
13
|
serveExecutor
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
helmChartGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-5K3THPVO.mjs";
|
|
5
|
+
import "../../../chunk-WL3FPWAJ.mjs";
|
|
6
|
+
import "../../../chunk-6A2CTTFW.mjs";
|
|
7
|
+
import "../../../chunk-F7KRJT35.mjs";
|
|
8
|
+
import "../../../chunk-N7GSKHH2.mjs";
|
|
9
9
|
export {
|
|
10
10
|
generator_default as default,
|
|
11
11
|
helmChartGeneratorFn
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
helmDependencyGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-YCYK4RRA.mjs";
|
|
5
|
+
import "../../../chunk-WL3FPWAJ.mjs";
|
|
6
|
+
import "../../../chunk-6A2CTTFW.mjs";
|
|
7
|
+
import "../../../chunk-F7KRJT35.mjs";
|
|
8
|
+
import "../../../chunk-N7GSKHH2.mjs";
|
|
9
9
|
export {
|
|
10
10
|
generator_default as default,
|
|
11
11
|
helmDependencyGeneratorFn
|
|
@@ -3,10 +3,10 @@ import {
|
|
|
3
3
|
createNodes,
|
|
4
4
|
description,
|
|
5
5
|
name
|
|
6
|
-
} from "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
8
|
-
import "../../../chunk-
|
|
9
|
-
import "../../../chunk-
|
|
6
|
+
} from "../../../chunk-BJVJDITQ.mjs";
|
|
7
|
+
import "../../../chunk-BHGQCDM2.mjs";
|
|
8
|
+
import "../../../chunk-F7KRJT35.mjs";
|
|
9
|
+
import "../../../chunk-N7GSKHH2.mjs";
|
|
10
10
|
export {
|
|
11
11
|
createDependencies,
|
|
12
12
|
createNodes,
|
package/dist/src/types.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
HelmClient,
|
|
3
3
|
createHelmClient
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
6
|
-
import "../../chunk-
|
|
7
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-AOXJPKVR.mjs";
|
|
5
|
+
import "../../chunk-REQRH3XD.mjs";
|
|
6
|
+
import "../../chunk-3CCPGNKE.mjs";
|
|
7
|
+
import "../../chunk-N7GSKHH2.mjs";
|
|
8
8
|
export {
|
|
9
9
|
HelmClient,
|
|
10
10
|
createHelmClient
|
package/dist/src/utils/index.mjs
CHANGED
|
@@ -2,16 +2,16 @@ import "../../chunk-WWU25UQ4.mjs";
|
|
|
2
2
|
import {
|
|
3
3
|
addToPrettierIgnore,
|
|
4
4
|
resolveUserExistingPrettierConfig
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-FOVCXQPQ.mjs";
|
|
6
6
|
import {
|
|
7
7
|
HelmClient,
|
|
8
8
|
createHelmClient
|
|
9
|
-
} from "../../chunk-
|
|
10
|
-
import "../../chunk-
|
|
9
|
+
} from "../../chunk-AOXJPKVR.mjs";
|
|
10
|
+
import "../../chunk-REQRH3XD.mjs";
|
|
11
11
|
import {
|
|
12
12
|
ensureInitialized
|
|
13
|
-
} from "../../chunk-
|
|
14
|
-
import "../../chunk-
|
|
13
|
+
} from "../../chunk-3CCPGNKE.mjs";
|
|
14
|
+
import "../../chunk-N7GSKHH2.mjs";
|
|
15
15
|
export {
|
|
16
16
|
HelmClient,
|
|
17
17
|
addToPrettierIgnore,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
addToPrettierIgnore,
|
|
3
3
|
resolveUserExistingPrettierConfig
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-FOVCXQPQ.mjs";
|
|
5
|
+
import "../../chunk-N7GSKHH2.mjs";
|
|
6
6
|
export {
|
|
7
7
|
addToPrettierIgnore,
|
|
8
8
|
resolveUserExistingPrettierConfig
|
package/dist/tsup.config.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/k8s-tools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.25.1",
|
|
4
4
|
"description": "Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -144,15 +144,15 @@
|
|
|
144
144
|
},
|
|
145
145
|
"dependencies": { "js-yaml": "^4.1.0" },
|
|
146
146
|
"devDependencies": {
|
|
147
|
-
"@nx-tools/container-metadata": "^6.
|
|
148
|
-
"@nx-tools/nx-container": "^6.0
|
|
147
|
+
"@nx-tools/container-metadata": "^6.1.1",
|
|
148
|
+
"@nx-tools/nx-container": "^6.2.0",
|
|
149
149
|
"@nx/devkit": "20.8.0",
|
|
150
150
|
"@nx/workspace": "20.8.0",
|
|
151
151
|
"@types/js-yaml": "4.0.9",
|
|
152
152
|
"@types/node": "^22.10.2",
|
|
153
153
|
"nx": "20.8.0",
|
|
154
154
|
"tsup": "8.4.0",
|
|
155
|
-
"typescript": "^5.
|
|
155
|
+
"typescript": "^5.8.3",
|
|
156
156
|
"untyped": "^1.5.2"
|
|
157
157
|
},
|
|
158
158
|
"publishConfig": { "access": "public" },
|