@storm-software/k8s-tools 0.42.16 → 0.42.18
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 +29 -0
- package/README.md +1 -1
- package/dist/{chunk-QQ3JFJQP.mjs → chunk-7FRQL6KT.mjs} +1 -1
- package/dist/{chunk-IG5EQ2MR.mjs → chunk-HMU6JBP5.mjs} +16 -10
- package/dist/{chunk-IL3LWVGH.js → chunk-JMMOW2IK.js} +17 -11
- package/dist/{chunk-Y62OVLK7.mjs → chunk-KMLL44AH.mjs} +1 -1
- package/dist/{chunk-KKPYCXBC.mjs → chunk-MMERJ6QX.mjs} +1 -1
- package/dist/{chunk-XQFVKU6B.mjs → chunk-N56VSZM5.mjs} +1 -1
- package/dist/{chunk-EXRPSCAV.mjs → chunk-QX6FXGEC.mjs} +1 -1
- package/dist/executors.mjs +3 -3
- package/dist/generators.mjs +2 -2
- package/dist/index.js +2 -2
- package/dist/index.mjs +6 -6
- package/dist/src/executors/container-publish/executor.mjs +1 -1
- package/dist/src/executors/helm-package/executor.mjs +3 -3
- package/dist/src/generators/helm-chart/generator.mjs +2 -2
- package/dist/src/generators/helm-dependency/generator.mjs +1 -1
- package/dist/src/plugins/docker/index.d.mts +1 -1
- package/dist/src/plugins/docker/index.d.ts +1 -1
- package/dist/src/plugins/docker/index.js +2 -2
- package/dist/src/plugins/docker/index.mjs +2 -2
- package/dist/src/types.mjs +1 -1
- package/dist/src/utils/client.mjs +2 -2
- package/dist/src/utils/ensure-init.mjs +1 -1
- package/dist/src/utils/index.mjs +3 -3
- package/dist/src/utils/prettier.mjs +2 -2
- package/dist/tsup.config.mjs +1 -1
- package/package.json +12 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,36 @@
|
|
|
1
|
+
## [0.42.17](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.42.17) (2025-11-04)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **monorepo:** Update packages to use Nx v22.0.2 ([8895b7333](https://github.com/storm-software/storm-ops/commit/8895b7333))
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Resolve sherif linting issues and reformat README markdown files ([2ed668c6a](https://github.com/storm-software/storm-ops/commit/2ed668c6a))
|
|
10
|
+
|
|
11
|
+
### Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated workspace-tools to 1.292.17
|
|
14
|
+
- Updated config-tools to 1.188.17
|
|
15
|
+
- Updated config to 1.134.17
|
|
16
|
+
|
|
1
17
|

|
|
2
18
|
|
|
3
19
|
# Changelog for Storm Ops - K8s Tools
|
|
4
20
|
|
|
21
|
+
## [0.42.16](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.42.16) (2025-10-31)
|
|
22
|
+
|
|
23
|
+
### Miscellaneous
|
|
24
|
+
|
|
25
|
+
- **monorepo:** Update workspace package links
|
|
26
|
+
([49f67dda6](https://github.com/storm-software/storm-ops/commit/49f67dda6))
|
|
27
|
+
|
|
28
|
+
### Updated Dependencies
|
|
29
|
+
|
|
30
|
+
- Updated workspace-tools to 1.292.16
|
|
31
|
+
- Updated config-tools to 1.188.16
|
|
32
|
+
- Updated config to 1.134.16
|
|
33
|
+
|
|
5
34
|
## [0.42.15](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.42.15) (2025-10-31)
|
|
6
35
|
|
|
7
36
|
### 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 -->
|
|
@@ -16,8 +16,9 @@ import {
|
|
|
16
16
|
joinPathFragments,
|
|
17
17
|
readJsonFile
|
|
18
18
|
} from "@nx/devkit";
|
|
19
|
+
import defu from "defu";
|
|
19
20
|
import { existsSync } from "node:fs";
|
|
20
|
-
var name = "storm-software/docker";
|
|
21
|
+
var name = "storm-software/k8s-tools/docker";
|
|
21
22
|
var description = "Plugin for parsing Dockerfile files";
|
|
22
23
|
var createNodesV2 = [
|
|
23
24
|
"*/**/{Dockerfile,Dockerfile.*}",
|
|
@@ -163,16 +164,21 @@ var createNodesV2 = [
|
|
|
163
164
|
setDefaultProjectTags(project);
|
|
164
165
|
const projects = {};
|
|
165
166
|
const externalNodes = {};
|
|
166
|
-
projects[project.root] =
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
167
|
+
projects[project.root] = defu(
|
|
168
|
+
{
|
|
169
|
+
release: {
|
|
170
|
+
docker: {
|
|
171
|
+
skipVersionActions: true,
|
|
172
|
+
registryUrl: "docker.io"
|
|
173
|
+
},
|
|
174
|
+
changelog: true,
|
|
175
|
+
releaseTag: {
|
|
176
|
+
pattern: "release/{projectName}/{version}"
|
|
177
|
+
}
|
|
173
178
|
}
|
|
174
|
-
}
|
|
175
|
-
|
|
179
|
+
},
|
|
180
|
+
project
|
|
181
|
+
);
|
|
176
182
|
return {
|
|
177
183
|
projects,
|
|
178
184
|
externalNodes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } 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; }
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } 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
3
|
|
|
4
4
|
|
|
@@ -16,8 +16,9 @@ var _chunkGYFLNDUJjs = require('./chunk-GYFLNDUJ.js');
|
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
var _devkit = require('@nx/devkit');
|
|
19
|
+
var _defu = require('defu'); var _defu2 = _interopRequireDefault(_defu);
|
|
19
20
|
var _fs = require('fs');
|
|
20
|
-
var name = "storm-software/docker";
|
|
21
|
+
var name = "storm-software/k8s-tools/docker";
|
|
21
22
|
var description = "Plugin for parsing Dockerfile files";
|
|
22
23
|
var createNodesV2 = [
|
|
23
24
|
"*/**/{Dockerfile,Dockerfile.*}",
|
|
@@ -163,16 +164,21 @@ var createNodesV2 = [
|
|
|
163
164
|
_chunkXJT7AOEUjs.setDefaultProjectTags.call(void 0, project);
|
|
164
165
|
const projects = {};
|
|
165
166
|
const externalNodes = {};
|
|
166
|
-
projects[project.root] =
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
167
|
+
projects[project.root] = _defu2.default.call(void 0,
|
|
168
|
+
{
|
|
169
|
+
release: {
|
|
170
|
+
docker: {
|
|
171
|
+
skipVersionActions: true,
|
|
172
|
+
registryUrl: "docker.io"
|
|
173
|
+
},
|
|
174
|
+
changelog: true,
|
|
175
|
+
releaseTag: {
|
|
176
|
+
pattern: "release/{projectName}/{version}"
|
|
177
|
+
}
|
|
173
178
|
}
|
|
174
|
-
}
|
|
175
|
-
|
|
179
|
+
},
|
|
180
|
+
project
|
|
181
|
+
);
|
|
176
182
|
return {
|
|
177
183
|
projects,
|
|
178
184
|
externalNodes
|
|
@@ -15,7 +15,7 @@ var __decorateClass = (decorators, target, key, kind) => {
|
|
|
15
15
|
return result;
|
|
16
16
|
};
|
|
17
17
|
|
|
18
|
-
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=
|
|
18
|
+
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=751a554d775c3572381af4e7e5fa22eeda6dd6856012fb1cf521d6806eb2dc74__db52096fd1f76fa5f5d0fee71975bab0/node_modules/tsup/assets/esm_shims.js
|
|
19
19
|
import { fileURLToPath } from "url";
|
|
20
20
|
import path from "path";
|
|
21
21
|
var getFilename = () => fileURLToPath(import.meta.url);
|
package/dist/executors.mjs
CHANGED
|
@@ -4,14 +4,14 @@ import {
|
|
|
4
4
|
} from "./chunk-MOBCDGWE.mjs";
|
|
5
5
|
import {
|
|
6
6
|
serveExecutor
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-KMLL44AH.mjs";
|
|
8
8
|
import "./chunk-BLX33ZLH.mjs";
|
|
9
9
|
import "./chunk-UB7G23S2.mjs";
|
|
10
10
|
import "./chunk-2Y2HBUL2.mjs";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-7FRQL6KT.mjs";
|
|
12
12
|
import "./chunk-YXXZO2AJ.mjs";
|
|
13
13
|
import "./chunk-HGXQ6SSU.mjs";
|
|
14
|
-
import "./chunk-
|
|
14
|
+
import "./chunk-MMERJ6QX.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-QX6FXGEC.mjs";
|
|
5
5
|
import {
|
|
6
6
|
helmDependencyGeneratorFn
|
|
7
7
|
} from "./chunk-M52V5BII.mjs";
|
|
8
8
|
import "./chunk-6DNIPSCA.mjs";
|
|
9
9
|
import "./chunk-UB7G23S2.mjs";
|
|
10
10
|
import "./chunk-2Y2HBUL2.mjs";
|
|
11
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-MMERJ6QX.mjs";
|
|
12
12
|
export {
|
|
13
13
|
helmChartGeneratorFn,
|
|
14
14
|
helmDependencyGeneratorFn
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkJMMOW2IKjs = require('./chunk-JMMOW2IK.js');
|
|
6
6
|
require('./chunk-XO66D74Z.js');
|
|
7
7
|
|
|
8
8
|
|
|
@@ -51,4 +51,4 @@ require('./chunk-RECJ3G6F.js');
|
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
exports.AbstractHelmClient = _chunkJSFRUBG5js.AbstractHelmClient; exports.HelmClient = _chunk4AADQIGWjs.HelmClient; exports.addToPrettierIgnore = _chunk7QVOU2PTjs.addToPrettierIgnore; exports.createHelmClient = _chunk4AADQIGWjs.createHelmClient; exports.createNodesV2 =
|
|
54
|
+
exports.AbstractHelmClient = _chunkJSFRUBG5js.AbstractHelmClient; exports.HelmClient = _chunk4AADQIGWjs.HelmClient; exports.addToPrettierIgnore = _chunk7QVOU2PTjs.addToPrettierIgnore; exports.createHelmClient = _chunk4AADQIGWjs.createHelmClient; exports.createNodesV2 = _chunkJMMOW2IKjs.createNodesV2; exports.description = _chunkJMMOW2IKjs.description; exports.ensureInitialized = _chunkXKOZIQT3js.ensureInitialized; exports.getRegistryVersion = _chunkVQVSFDJVjs.getRegistryVersion; exports.helmChartGeneratorFn = _chunkTL3A37G5js.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunk5V2F5H6Yjs.helmDependencyGeneratorFn; exports.name = _chunkJMMOW2IKjs.name; exports.resolveUserExistingPrettierConfig = _chunk7QVOU2PTjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunkQV7XVA5Njs.serveExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -2,19 +2,19 @@ import {
|
|
|
2
2
|
createNodesV2,
|
|
3
3
|
description,
|
|
4
4
|
name
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-HMU6JBP5.mjs";
|
|
6
6
|
import "./chunk-YSCEY447.mjs";
|
|
7
7
|
import {
|
|
8
8
|
getRegistryVersion
|
|
9
9
|
} from "./chunk-MOBCDGWE.mjs";
|
|
10
10
|
import {
|
|
11
11
|
serveExecutor
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-KMLL44AH.mjs";
|
|
13
13
|
import "./chunk-BLX33ZLH.mjs";
|
|
14
14
|
import "./chunk-3J7KBHMJ.mjs";
|
|
15
15
|
import {
|
|
16
16
|
helmChartGeneratorFn
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-QX6FXGEC.mjs";
|
|
18
18
|
import {
|
|
19
19
|
helmDependencyGeneratorFn
|
|
20
20
|
} from "./chunk-M52V5BII.mjs";
|
|
@@ -25,18 +25,18 @@ import "./chunk-WWU25UQ4.mjs";
|
|
|
25
25
|
import {
|
|
26
26
|
addToPrettierIgnore,
|
|
27
27
|
resolveUserExistingPrettierConfig
|
|
28
|
-
} from "./chunk-
|
|
28
|
+
} from "./chunk-N56VSZM5.mjs";
|
|
29
29
|
import {
|
|
30
30
|
HelmClient,
|
|
31
31
|
createHelmClient
|
|
32
|
-
} from "./chunk-
|
|
32
|
+
} from "./chunk-7FRQL6KT.mjs";
|
|
33
33
|
import {
|
|
34
34
|
AbstractHelmClient
|
|
35
35
|
} from "./chunk-YXXZO2AJ.mjs";
|
|
36
36
|
import {
|
|
37
37
|
ensureInitialized
|
|
38
38
|
} from "./chunk-HGXQ6SSU.mjs";
|
|
39
|
-
import "./chunk-
|
|
39
|
+
import "./chunk-MMERJ6QX.mjs";
|
|
40
40
|
export {
|
|
41
41
|
AbstractHelmClient,
|
|
42
42
|
HelmClient,
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
import "../../../chunk-BLX33ZLH.mjs";
|
|
6
6
|
import "../../../chunk-UB7G23S2.mjs";
|
|
7
7
|
import "../../../chunk-2Y2HBUL2.mjs";
|
|
8
|
-
import "../../../chunk-
|
|
8
|
+
import "../../../chunk-MMERJ6QX.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-
|
|
4
|
+
} from "../../../chunk-KMLL44AH.mjs";
|
|
5
5
|
import "../../../chunk-UB7G23S2.mjs";
|
|
6
6
|
import "../../../chunk-2Y2HBUL2.mjs";
|
|
7
|
-
import "../../../chunk-
|
|
7
|
+
import "../../../chunk-7FRQL6KT.mjs";
|
|
8
8
|
import "../../../chunk-YXXZO2AJ.mjs";
|
|
9
9
|
import "../../../chunk-HGXQ6SSU.mjs";
|
|
10
|
-
import "../../../chunk-
|
|
10
|
+
import "../../../chunk-MMERJ6QX.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-
|
|
4
|
+
} from "../../../chunk-QX6FXGEC.mjs";
|
|
5
5
|
import "../../../chunk-6DNIPSCA.mjs";
|
|
6
6
|
import "../../../chunk-UB7G23S2.mjs";
|
|
7
7
|
import "../../../chunk-2Y2HBUL2.mjs";
|
|
8
|
-
import "../../../chunk-
|
|
8
|
+
import "../../../chunk-MMERJ6QX.mjs";
|
|
9
9
|
export {
|
|
10
10
|
generator_default as default,
|
|
11
11
|
helmChartGeneratorFn
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
import "../../../chunk-6DNIPSCA.mjs";
|
|
6
6
|
import "../../../chunk-UB7G23S2.mjs";
|
|
7
7
|
import "../../../chunk-2Y2HBUL2.mjs";
|
|
8
|
-
import "../../../chunk-
|
|
8
|
+
import "../../../chunk-MMERJ6QX.mjs";
|
|
9
9
|
export {
|
|
10
10
|
generator_default as default,
|
|
11
11
|
helmDependencyGeneratorFn
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CreateNodesV2 } from '@nx/devkit';
|
|
2
2
|
import { E as ExternalContainerExecutorSchema } from '../../../schema.d-Cx_3iG9A.mjs';
|
|
3
3
|
|
|
4
|
-
declare const name = "storm-software/docker";
|
|
4
|
+
declare const name = "storm-software/k8s-tools/docker";
|
|
5
5
|
declare const description = "Plugin for parsing Dockerfile files";
|
|
6
6
|
interface DockerFilePluginOptions {
|
|
7
7
|
defaultEngine?: ExternalContainerExecutorSchema["engine"];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { CreateNodesV2 } from '@nx/devkit';
|
|
2
2
|
import { E as ExternalContainerExecutorSchema } from '../../../schema.d-Cx_3iG9A.js';
|
|
3
3
|
|
|
4
|
-
declare const name = "storm-software/docker";
|
|
4
|
+
declare const name = "storm-software/k8s-tools/docker";
|
|
5
5
|
declare const description = "Plugin for parsing Dockerfile files";
|
|
6
6
|
interface DockerFilePluginOptions {
|
|
7
7
|
defaultEngine?: ExternalContainerExecutorSchema["engine"];
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkJMMOW2IKjs = require('../../../chunk-JMMOW2IK.js');
|
|
6
6
|
require('../../../chunk-XJT7AOEU.js');
|
|
7
7
|
require('../../../chunk-GYFLNDUJ.js');
|
|
8
8
|
require('../../../chunk-RECJ3G6F.js');
|
|
@@ -10,4 +10,4 @@ require('../../../chunk-RECJ3G6F.js');
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
exports.createNodesV2 =
|
|
13
|
+
exports.createNodesV2 = _chunkJMMOW2IKjs.createNodesV2; exports.description = _chunkJMMOW2IKjs.description; exports.name = _chunkJMMOW2IKjs.name;
|
|
@@ -2,10 +2,10 @@ import {
|
|
|
2
2
|
createNodesV2,
|
|
3
3
|
description,
|
|
4
4
|
name
|
|
5
|
-
} from "../../../chunk-
|
|
5
|
+
} from "../../../chunk-HMU6JBP5.mjs";
|
|
6
6
|
import "../../../chunk-BLX33ZLH.mjs";
|
|
7
7
|
import "../../../chunk-2Y2HBUL2.mjs";
|
|
8
|
-
import "../../../chunk-
|
|
8
|
+
import "../../../chunk-MMERJ6QX.mjs";
|
|
9
9
|
export {
|
|
10
10
|
createNodesV2,
|
|
11
11
|
description,
|
package/dist/src/types.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
HelmClient,
|
|
3
3
|
createHelmClient
|
|
4
|
-
} from "../../chunk-
|
|
4
|
+
} from "../../chunk-7FRQL6KT.mjs";
|
|
5
5
|
import "../../chunk-YXXZO2AJ.mjs";
|
|
6
6
|
import "../../chunk-HGXQ6SSU.mjs";
|
|
7
|
-
import "../../chunk-
|
|
7
|
+
import "../../chunk-MMERJ6QX.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-N56VSZM5.mjs";
|
|
6
6
|
import {
|
|
7
7
|
HelmClient,
|
|
8
8
|
createHelmClient
|
|
9
|
-
} from "../../chunk-
|
|
9
|
+
} from "../../chunk-7FRQL6KT.mjs";
|
|
10
10
|
import "../../chunk-YXXZO2AJ.mjs";
|
|
11
11
|
import {
|
|
12
12
|
ensureInitialized
|
|
13
13
|
} from "../../chunk-HGXQ6SSU.mjs";
|
|
14
|
-
import "../../chunk-
|
|
14
|
+
import "../../chunk-MMERJ6QX.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-N56VSZM5.mjs";
|
|
5
|
+
import "../../chunk-MMERJ6QX.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.42.
|
|
3
|
+
"version": "0.42.18",
|
|
4
4
|
"description": "Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -128,8 +128,8 @@
|
|
|
128
128
|
"sullivanpj"
|
|
129
129
|
],
|
|
130
130
|
"peerDependencies": {
|
|
131
|
-
"@nx/devkit": "^
|
|
132
|
-
"prettier": "^3.
|
|
131
|
+
"@nx/devkit": "^22.0.2",
|
|
132
|
+
"prettier": "^3.6.2",
|
|
133
133
|
"tsup": "8.4.0"
|
|
134
134
|
},
|
|
135
135
|
"peerDependenciesMeta": {
|
|
@@ -140,18 +140,19 @@
|
|
|
140
140
|
"nx": { "optional": false }
|
|
141
141
|
},
|
|
142
142
|
"dependencies": {
|
|
143
|
-
"@storm-software/config": "^1.134.
|
|
144
|
-
"@storm-software/config-tools": "^1.188.
|
|
145
|
-
"@storm-software/workspace-tools": "^1.292.
|
|
143
|
+
"@storm-software/config": "^1.134.18",
|
|
144
|
+
"@storm-software/config-tools": "^1.188.18",
|
|
145
|
+
"@storm-software/workspace-tools": "^1.292.18",
|
|
146
|
+
"defu": "6.1.4",
|
|
146
147
|
"yaml": "^2.8.1"
|
|
147
148
|
},
|
|
148
149
|
"devDependencies": {
|
|
149
150
|
"@nx-tools/container-metadata": "^6.9.1",
|
|
150
151
|
"@nx-tools/nx-container": "^6.9.1",
|
|
151
|
-
"@nx/devkit": "^
|
|
152
|
-
"@nx/workspace": "^
|
|
153
|
-
"@types/node": "^22.
|
|
154
|
-
"nx": "^
|
|
152
|
+
"@nx/devkit": "^22.0.2",
|
|
153
|
+
"@nx/workspace": "^22.0.2",
|
|
154
|
+
"@types/node": "^22.19.0",
|
|
155
|
+
"nx": "^22.0.2",
|
|
155
156
|
"tsup": "8.4.0",
|
|
156
157
|
"typescript": "^5.9.3",
|
|
157
158
|
"untyped": "^1.5.2"
|
|
@@ -159,5 +160,5 @@
|
|
|
159
160
|
"publishConfig": { "access": "public" },
|
|
160
161
|
"executors": "./executors.json",
|
|
161
162
|
"generators": "./generators.json",
|
|
162
|
-
"gitHead": "
|
|
163
|
+
"gitHead": "4ff7ccead93c470ebb8b9ad5fcd7e70f3a122cbf"
|
|
163
164
|
}
|