@storm-software/k8s-tools 0.24.52 → 0.24.54
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 +16 -0
- package/README.md +1 -1
- package/dist/{chunk-YKCY2BFI.mjs → chunk-6F7C2HU3.mjs} +18 -2
- package/dist/{chunk-SPU642IC.mjs → chunk-6W5RODUW.mjs} +2 -2
- package/dist/{chunk-YYSIGZVO.js → chunk-7AUWIK6E.js} +19 -19
- package/dist/{chunk-N533536N.mjs → chunk-B4EYBY2L.mjs} +2 -2
- package/dist/{chunk-7NBM7KT7.js → chunk-HLHBBX4A.js} +18 -2
- package/dist/{chunk-64PANJDZ.js → chunk-HR2BRBYY.js} +3 -3
- package/dist/{chunk-A2GC2ZJ6.js → chunk-IVE6VJ4S.js} +2 -2
- package/dist/{chunk-M7UG2WDO.js → chunk-L26UZLMQ.js} +4 -4
- package/dist/{chunk-57SYOGC4.mjs → chunk-NWZRYSHG.mjs} +2 -2
- package/dist/{chunk-QPQNIGQZ.js → chunk-PS6CWFTA.js} +6 -6
- package/dist/{chunk-SI4JQREN.mjs → chunk-QVVUYQET.mjs} +2 -2
- package/dist/{chunk-AOIBIGXI.mjs → chunk-SQWTERQC.mjs} +1 -1
- package/dist/{chunk-7LLISIHM.js → chunk-TTASPUAD.js} +25 -25
- package/dist/{chunk-AW7LR6WY.js → chunk-W2HCULDD.js} +4 -4
- package/dist/{chunk-2BTFNEDO.mjs → chunk-Z3R3O2NI.mjs} +2 -2
- package/dist/{chunk-QMHHRTLH.mjs → chunk-ZW6TG4ZS.mjs} +1 -1
- package/dist/{executor-yTjQjOIj.d.ts → executor-DrSw4Xm3.d.mts} +2 -17
- package/dist/{executor-z_O4xSua.d.mts → executor-DrSw4Xm3.d.ts} +2 -17
- package/dist/executors.d.mts +3 -3
- package/dist/executors.d.ts +3 -3
- package/dist/executors.js +5 -5
- package/dist/executors.mjs +4 -4
- package/dist/{generator-CbhBzMc6.d.ts → generator-C4BB5aOn.d.mts} +4 -3
- package/dist/{generator-DqXN4wEq.d.mts → generator-C4BB5aOn.d.ts} +4 -3
- package/dist/{generator-DM4nSpsg.d.mts → generator-CB8TPfuo.d.mts} +4 -3
- package/dist/{generator-Dto9n53o.d.ts → generator-CB8TPfuo.d.ts} +4 -3
- package/dist/generators.d.mts +5 -5
- package/dist/generators.d.ts +5 -5
- package/dist/generators.js +6 -6
- package/dist/generators.mjs +5 -5
- package/dist/index.d.mts +7 -6
- package/dist/index.d.ts +7 -6
- package/dist/index.js +9 -9
- package/dist/index.mjs +8 -8
- package/dist/src/executors/container-publish/executor.d.mts +1 -2
- package/dist/src/executors/container-publish/executor.d.ts +1 -2
- package/dist/src/executors/container-publish/executor.js +4 -4
- package/dist/src/executors/container-publish/executor.mjs +3 -3
- package/dist/src/executors/helm-package/executor.d.mts +3 -3
- package/dist/src/executors/helm-package/executor.d.ts +3 -3
- package/dist/src/executors/helm-package/executor.js +4 -4
- package/dist/src/executors/helm-package/executor.mjs +3 -3
- package/dist/src/generators/helm-chart/generator.d.mts +4 -4
- package/dist/src/generators/helm-chart/generator.d.ts +4 -4
- package/dist/src/generators/helm-chart/generator.js +5 -5
- package/dist/src/generators/helm-chart/generator.mjs +4 -4
- package/dist/src/generators/helm-dependency/generator.d.mts +4 -4
- package/dist/src/generators/helm-dependency/generator.d.ts +4 -4
- package/dist/src/generators/helm-dependency/generator.js +5 -5
- package/dist/src/generators/helm-dependency/generator.mjs +4 -4
- package/dist/src/plugins/docker/index.js +3 -3
- package/dist/src/plugins/docker/index.mjs +2 -2
- package/package.json +6 -5
- package/dist/types-BCBFBwnJ.d.mts +0 -20
- package/dist/types-BCBFBwnJ.d.ts +0 -20
- package/dist/types-PmpUoA3H.d.mts +0 -1268
- package/dist/types-PmpUoA3H.d.ts +0 -1268
|
@@ -1,21 +1,6 @@
|
|
|
1
1
|
import { ExecutorContext, PromiseExecutor } from '@nx/devkit';
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
// Generated by @storm-software/untyped
|
|
5
|
-
// Do not edit this file directly
|
|
6
|
-
|
|
7
|
-
interface BaseExecutorSchema {
|
|
8
|
-
/**
|
|
9
|
-
* Output Path
|
|
10
|
-
*
|
|
11
|
-
* The output path for the build
|
|
12
|
-
*
|
|
13
|
-
* @default "dist/{projectRoot}"
|
|
14
|
-
*
|
|
15
|
-
* @format path
|
|
16
|
-
*/
|
|
17
|
-
outputPath?: string,
|
|
18
|
-
}
|
|
2
|
+
import { StormWorkspaceConfig } from '@storm-software/config';
|
|
3
|
+
import { BaseExecutorSchema } from '@storm-software/workspace-tools/base/base-executor.schema.d';
|
|
19
4
|
|
|
20
5
|
interface HelmPackageExecutorSchema extends BaseExecutorSchema {
|
|
21
6
|
/** Folder where the chart is stored */
|
|
@@ -1,21 +1,6 @@
|
|
|
1
1
|
import { ExecutorContext, PromiseExecutor } from '@nx/devkit';
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
// Generated by @storm-software/untyped
|
|
5
|
-
// Do not edit this file directly
|
|
6
|
-
|
|
7
|
-
interface BaseExecutorSchema {
|
|
8
|
-
/**
|
|
9
|
-
* Output Path
|
|
10
|
-
*
|
|
11
|
-
* The output path for the build
|
|
12
|
-
*
|
|
13
|
-
* @default "dist/{projectRoot}"
|
|
14
|
-
*
|
|
15
|
-
* @format path
|
|
16
|
-
*/
|
|
17
|
-
outputPath?: string,
|
|
18
|
-
}
|
|
2
|
+
import { StormWorkspaceConfig } from '@storm-software/config';
|
|
3
|
+
import { BaseExecutorSchema } from '@storm-software/workspace-tools/base/base-executor.schema.d';
|
|
19
4
|
|
|
20
5
|
interface HelmPackageExecutorSchema extends BaseExecutorSchema {
|
|
21
6
|
/** Folder where the chart is stored */
|
package/dist/executors.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { getRegistryVersion } from './src/executors/container-publish/executor.mjs';
|
|
2
2
|
export { C as ContainerPublishExecutorSchema } from './schema.d-Cx_3iG9A.mjs';
|
|
3
|
-
export { H as HelmPackageExecutorSchema, s as serveExecutor } from './executor-
|
|
3
|
+
export { H as HelmPackageExecutorSchema, s as serveExecutor } from './executor-DrSw4Xm3.mjs';
|
|
4
4
|
import '@nx/devkit';
|
|
5
|
-
import '
|
|
6
|
-
import '
|
|
5
|
+
import '@storm-software/config';
|
|
6
|
+
import '@storm-software/workspace-tools/base/base-executor.schema.d';
|
package/dist/executors.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { getRegistryVersion } from './src/executors/container-publish/executor.js';
|
|
2
2
|
export { C as ContainerPublishExecutorSchema } from './schema.d-Cx_3iG9A.js';
|
|
3
|
-
export { H as HelmPackageExecutorSchema, s as serveExecutor } from './executor-
|
|
3
|
+
export { H as HelmPackageExecutorSchema, s as serveExecutor } from './executor-DrSw4Xm3.js';
|
|
4
4
|
import '@nx/devkit';
|
|
5
|
-
import '
|
|
6
|
-
import '
|
|
5
|
+
import '@storm-software/config';
|
|
6
|
+
import '@storm-software/workspace-tools/base/base-executor.schema.d';
|
package/dist/executors.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-XO66D74Z.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkPS6CWFTAjs = require('./chunk-PS6CWFTA.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkTTASPUADjs = require('./chunk-TTASPUAD.js');
|
|
8
8
|
require('./chunk-IOT45LXV.js');
|
|
9
|
-
require('./chunk-
|
|
10
|
-
require('./chunk-
|
|
9
|
+
require('./chunk-IVE6VJ4S.js');
|
|
10
|
+
require('./chunk-HLHBBX4A.js');
|
|
11
11
|
require('./chunk-2GAU2GHG.js');
|
|
12
12
|
require('./chunk-LFNGKV6F.js');
|
|
13
13
|
require('./chunk-EAQFLLRB.js');
|
|
@@ -15,4 +15,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.getRegistryVersion =
|
|
18
|
+
exports.getRegistryVersion = _chunkPS6CWFTAjs.getRegistryVersion; exports.serveExecutor = _chunkTTASPUADjs.serveExecutor;
|
package/dist/executors.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import "./chunk-YSCEY447.mjs";
|
|
2
2
|
import {
|
|
3
3
|
getRegistryVersion
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-NWZRYSHG.mjs";
|
|
5
5
|
import {
|
|
6
6
|
serveExecutor
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-QVVUYQET.mjs";
|
|
8
8
|
import "./chunk-QSYJ4VHO.mjs";
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-SQWTERQC.mjs";
|
|
10
|
+
import "./chunk-6F7C2HU3.mjs";
|
|
11
11
|
import "./chunk-4LVLYUQO.mjs";
|
|
12
12
|
import "./chunk-GEYARHLJ.mjs";
|
|
13
13
|
import "./chunk-EJLNGNMP.mjs";
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as _storm_software_workspace_tools_types from '@storm-software/workspace-tools/types';
|
|
2
2
|
import * as _nx_devkit from '@nx/devkit';
|
|
3
3
|
import { Tree } from '@nx/devkit';
|
|
4
|
-
import {
|
|
4
|
+
import { StormWorkspaceConfig } from '@storm-software/config';
|
|
5
|
+
import { BaseGeneratorSchema } from '@storm-software/workspace-tools/base/base-generator.schema.d';
|
|
5
6
|
|
|
6
7
|
interface HelmDependencyGeneratorSchema extends BaseGeneratorSchema {
|
|
7
8
|
/** Project name */
|
|
@@ -23,6 +24,6 @@ interface HelmDependencyGeneratorSchema extends BaseGeneratorSchema {
|
|
|
23
24
|
declare function helmDependencyGeneratorFn(tree: Tree, options: HelmDependencyGeneratorSchema, config?: StormWorkspaceConfig): Promise<{
|
|
24
25
|
success: boolean;
|
|
25
26
|
}>;
|
|
26
|
-
declare const _default: (tree: Tree, _options: HelmDependencyGeneratorSchema) => Promise<_nx_devkit.GeneratorCallback | BaseGeneratorResult>;
|
|
27
|
+
declare const _default: (tree: Tree, _options: HelmDependencyGeneratorSchema) => Promise<_nx_devkit.GeneratorCallback | _storm_software_workspace_tools_types.BaseGeneratorResult>;
|
|
27
28
|
|
|
28
29
|
export { type HelmDependencyGeneratorSchema as H, _default as _, helmDependencyGeneratorFn as h };
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as _storm_software_workspace_tools_types from '@storm-software/workspace-tools/types';
|
|
2
2
|
import * as _nx_devkit from '@nx/devkit';
|
|
3
3
|
import { Tree } from '@nx/devkit';
|
|
4
|
-
import {
|
|
4
|
+
import { StormWorkspaceConfig } from '@storm-software/config';
|
|
5
|
+
import { BaseGeneratorSchema } from '@storm-software/workspace-tools/base/base-generator.schema.d';
|
|
5
6
|
|
|
6
7
|
interface HelmDependencyGeneratorSchema extends BaseGeneratorSchema {
|
|
7
8
|
/** Project name */
|
|
@@ -23,6 +24,6 @@ interface HelmDependencyGeneratorSchema extends BaseGeneratorSchema {
|
|
|
23
24
|
declare function helmDependencyGeneratorFn(tree: Tree, options: HelmDependencyGeneratorSchema, config?: StormWorkspaceConfig): Promise<{
|
|
24
25
|
success: boolean;
|
|
25
26
|
}>;
|
|
26
|
-
declare const _default: (tree: Tree, _options: HelmDependencyGeneratorSchema) => Promise<_nx_devkit.GeneratorCallback | BaseGeneratorResult>;
|
|
27
|
+
declare const _default: (tree: Tree, _options: HelmDependencyGeneratorSchema) => Promise<_nx_devkit.GeneratorCallback | _storm_software_workspace_tools_types.BaseGeneratorResult>;
|
|
27
28
|
|
|
28
29
|
export { type HelmDependencyGeneratorSchema as H, _default as _, helmDependencyGeneratorFn as h };
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as _storm_software_workspace_tools_types from '@storm-software/workspace-tools/types';
|
|
2
2
|
import * as _nx_devkit from '@nx/devkit';
|
|
3
3
|
import { Tree } from '@nx/devkit';
|
|
4
|
-
import {
|
|
4
|
+
import { StormWorkspaceConfig } from '@storm-software/config';
|
|
5
|
+
import { BaseGeneratorSchema } from '@storm-software/workspace-tools/base/base-generator.schema.d';
|
|
5
6
|
|
|
6
7
|
interface HelmChartGeneratorSchema extends BaseGeneratorSchema {
|
|
7
8
|
/** Name of the chart */
|
|
@@ -19,6 +20,6 @@ interface HelmChartGeneratorSchema extends BaseGeneratorSchema {
|
|
|
19
20
|
declare function helmChartGeneratorFn(tree: Tree, options: HelmChartGeneratorSchema, config?: StormWorkspaceConfig): Promise<{
|
|
20
21
|
success: boolean;
|
|
21
22
|
}>;
|
|
22
|
-
declare const _default: (tree: Tree, _options: HelmChartGeneratorSchema) => Promise<_nx_devkit.GeneratorCallback | BaseGeneratorResult>;
|
|
23
|
+
declare const _default: (tree: Tree, _options: HelmChartGeneratorSchema) => Promise<_nx_devkit.GeneratorCallback | _storm_software_workspace_tools_types.BaseGeneratorResult>;
|
|
23
24
|
|
|
24
25
|
export { type HelmChartGeneratorSchema as H, _default as _, helmChartGeneratorFn as h };
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as _storm_software_workspace_tools_types from '@storm-software/workspace-tools/types';
|
|
2
2
|
import * as _nx_devkit from '@nx/devkit';
|
|
3
3
|
import { Tree } from '@nx/devkit';
|
|
4
|
-
import {
|
|
4
|
+
import { StormWorkspaceConfig } from '@storm-software/config';
|
|
5
|
+
import { BaseGeneratorSchema } from '@storm-software/workspace-tools/base/base-generator.schema.d';
|
|
5
6
|
|
|
6
7
|
interface HelmChartGeneratorSchema extends BaseGeneratorSchema {
|
|
7
8
|
/** Name of the chart */
|
|
@@ -19,6 +20,6 @@ interface HelmChartGeneratorSchema extends BaseGeneratorSchema {
|
|
|
19
20
|
declare function helmChartGeneratorFn(tree: Tree, options: HelmChartGeneratorSchema, config?: StormWorkspaceConfig): Promise<{
|
|
20
21
|
success: boolean;
|
|
21
22
|
}>;
|
|
22
|
-
declare const _default: (tree: Tree, _options: HelmChartGeneratorSchema) => Promise<_nx_devkit.GeneratorCallback | BaseGeneratorResult>;
|
|
23
|
+
declare const _default: (tree: Tree, _options: HelmChartGeneratorSchema) => Promise<_nx_devkit.GeneratorCallback | _storm_software_workspace_tools_types.BaseGeneratorResult>;
|
|
23
24
|
|
|
24
25
|
export { type HelmChartGeneratorSchema as H, _default as _, helmChartGeneratorFn as h };
|
package/dist/generators.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { H as HelmChartGeneratorSchema, h as helmChartGeneratorFn } from './generator-
|
|
2
|
-
export { H as HelmDependencyGeneratorSchema, h as helmDependencyGeneratorFn } from './generator-
|
|
3
|
-
import '
|
|
1
|
+
export { H as HelmChartGeneratorSchema, h as helmChartGeneratorFn } from './generator-CB8TPfuo.mjs';
|
|
2
|
+
export { H as HelmDependencyGeneratorSchema, h as helmDependencyGeneratorFn } from './generator-C4BB5aOn.mjs';
|
|
3
|
+
import '@storm-software/workspace-tools/types';
|
|
4
4
|
import '@nx/devkit';
|
|
5
|
-
import '
|
|
6
|
-
import '
|
|
5
|
+
import '@storm-software/config';
|
|
6
|
+
import '@storm-software/workspace-tools/base/base-generator.schema.d';
|
package/dist/generators.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { H as HelmChartGeneratorSchema, h as helmChartGeneratorFn } from './generator-
|
|
2
|
-
export { H as HelmDependencyGeneratorSchema, h as helmDependencyGeneratorFn } from './generator-
|
|
3
|
-
import '
|
|
1
|
+
export { H as HelmChartGeneratorSchema, h as helmChartGeneratorFn } from './generator-CB8TPfuo.js';
|
|
2
|
+
export { H as HelmDependencyGeneratorSchema, h as helmDependencyGeneratorFn } from './generator-C4BB5aOn.js';
|
|
3
|
+
import '@storm-software/workspace-tools/types';
|
|
4
4
|
import '@nx/devkit';
|
|
5
|
-
import '
|
|
6
|
-
import '
|
|
5
|
+
import '@storm-software/config';
|
|
6
|
+
import '@storm-software/workspace-tools/base/base-generator.schema.d';
|
package/dist/generators.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-DHBG5ASJ.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkL26UZLMQjs = require('./chunk-L26UZLMQ.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
8
|
-
require('./chunk-
|
|
9
|
-
require('./chunk-
|
|
10
|
-
require('./chunk-
|
|
7
|
+
var _chunkW2HCULDDjs = require('./chunk-W2HCULDD.js');
|
|
8
|
+
require('./chunk-7AUWIK6E.js');
|
|
9
|
+
require('./chunk-IVE6VJ4S.js');
|
|
10
|
+
require('./chunk-HLHBBX4A.js');
|
|
11
11
|
require('./chunk-3GQAWCBQ.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
exports.helmChartGeneratorFn =
|
|
15
|
+
exports.helmChartGeneratorFn = _chunkL26UZLMQjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkW2HCULDDjs.helmDependencyGeneratorFn;
|
package/dist/generators.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import "./chunk-3J7KBHMJ.mjs";
|
|
2
2
|
import {
|
|
3
3
|
helmChartGeneratorFn
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-Z3R3O2NI.mjs";
|
|
5
5
|
import {
|
|
6
6
|
helmDependencyGeneratorFn
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-6W5RODUW.mjs";
|
|
8
|
+
import "./chunk-B4EYBY2L.mjs";
|
|
9
|
+
import "./chunk-SQWTERQC.mjs";
|
|
10
|
+
import "./chunk-6F7C2HU3.mjs";
|
|
11
11
|
import "./chunk-2BPV2XV2.mjs";
|
|
12
12
|
export {
|
|
13
13
|
helmChartGeneratorFn,
|
package/dist/index.d.mts
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
export { getRegistryVersion } from './src/executors/container-publish/executor.mjs';
|
|
2
2
|
export { C as ContainerPublishExecutorSchema } from './schema.d-Cx_3iG9A.mjs';
|
|
3
|
-
export { H as HelmPackageExecutorSchema, s as serveExecutor } from './executor-
|
|
4
|
-
export { H as HelmChartGeneratorSchema, h as helmChartGeneratorFn } from './generator-
|
|
5
|
-
export { H as HelmDependencyGeneratorSchema, h as helmDependencyGeneratorFn } from './generator-
|
|
3
|
+
export { H as HelmPackageExecutorSchema, s as serveExecutor } from './executor-DrSw4Xm3.mjs';
|
|
4
|
+
export { H as HelmChartGeneratorSchema, h as helmChartGeneratorFn } from './generator-CB8TPfuo.mjs';
|
|
5
|
+
export { H as HelmDependencyGeneratorSchema, h as helmDependencyGeneratorFn } from './generator-C4BB5aOn.mjs';
|
|
6
6
|
export { DockerFilePluginOptions, createDependencies, createNodes, description, name } from './src/plugins/docker/index.mjs';
|
|
7
7
|
export { AbstractHelmClient, Initializable, PackageOptions, PrettierConfig, PushOptions } from './src/types.mjs';
|
|
8
8
|
export { HelmClient, createHelmClient } from './src/utils/client.mjs';
|
|
9
9
|
export { ensureInitialized } from './src/utils/ensure-init.mjs';
|
|
10
10
|
export { addToPrettierIgnore, resolveUserExistingPrettierConfig } from './src/utils/prettier.mjs';
|
|
11
11
|
import '@nx/devkit';
|
|
12
|
-
import '
|
|
13
|
-
import '
|
|
14
|
-
import '
|
|
12
|
+
import '@storm-software/config';
|
|
13
|
+
import '@storm-software/workspace-tools/base/base-executor.schema.d';
|
|
14
|
+
import '@storm-software/workspace-tools/types';
|
|
15
|
+
import '@storm-software/workspace-tools/base/base-generator.schema.d';
|
|
15
16
|
import 'prettier';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
export { getRegistryVersion } from './src/executors/container-publish/executor.js';
|
|
2
2
|
export { C as ContainerPublishExecutorSchema } from './schema.d-Cx_3iG9A.js';
|
|
3
|
-
export { H as HelmPackageExecutorSchema, s as serveExecutor } from './executor-
|
|
4
|
-
export { H as HelmChartGeneratorSchema, h as helmChartGeneratorFn } from './generator-
|
|
5
|
-
export { H as HelmDependencyGeneratorSchema, h as helmDependencyGeneratorFn } from './generator-
|
|
3
|
+
export { H as HelmPackageExecutorSchema, s as serveExecutor } from './executor-DrSw4Xm3.js';
|
|
4
|
+
export { H as HelmChartGeneratorSchema, h as helmChartGeneratorFn } from './generator-CB8TPfuo.js';
|
|
5
|
+
export { H as HelmDependencyGeneratorSchema, h as helmDependencyGeneratorFn } from './generator-C4BB5aOn.js';
|
|
6
6
|
export { DockerFilePluginOptions, createDependencies, createNodes, description, name } from './src/plugins/docker/index.js';
|
|
7
7
|
export { AbstractHelmClient, Initializable, PackageOptions, PrettierConfig, PushOptions } from './src/types.js';
|
|
8
8
|
export { HelmClient, createHelmClient } from './src/utils/client.js';
|
|
9
9
|
export { ensureInitialized } from './src/utils/ensure-init.js';
|
|
10
10
|
export { addToPrettierIgnore, resolveUserExistingPrettierConfig } from './src/utils/prettier.js';
|
|
11
11
|
import '@nx/devkit';
|
|
12
|
-
import '
|
|
13
|
-
import '
|
|
14
|
-
import '
|
|
12
|
+
import '@storm-software/config';
|
|
13
|
+
import '@storm-software/workspace-tools/base/base-executor.schema.d';
|
|
14
|
+
import '@storm-software/workspace-tools/types';
|
|
15
|
+
import '@storm-software/workspace-tools/base/base-generator.schema.d';
|
|
15
16
|
import 'prettier';
|
package/dist/index.js
CHANGED
|
@@ -3,25 +3,25 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkHR2BRBYYjs = require('./chunk-HR2BRBYY.js');
|
|
7
7
|
require('./chunk-XO66D74Z.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkPS6CWFTAjs = require('./chunk-PS6CWFTA.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunkTTASPUADjs = require('./chunk-TTASPUAD.js');
|
|
14
14
|
require('./chunk-IOT45LXV.js');
|
|
15
15
|
require('./chunk-DHBG5ASJ.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkL26UZLMQjs = require('./chunk-L26UZLMQ.js');
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
var
|
|
22
|
-
require('./chunk-
|
|
23
|
-
require('./chunk-
|
|
24
|
-
require('./chunk-
|
|
21
|
+
var _chunkW2HCULDDjs = require('./chunk-W2HCULDD.js');
|
|
22
|
+
require('./chunk-7AUWIK6E.js');
|
|
23
|
+
require('./chunk-IVE6VJ4S.js');
|
|
24
|
+
require('./chunk-HLHBBX4A.js');
|
|
25
25
|
require('./chunk-U76ID4TS.js');
|
|
26
26
|
|
|
27
27
|
|
|
@@ -53,4 +53,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
56
|
-
exports.AbstractHelmClient = _chunkLFNGKV6Fjs.AbstractHelmClient; exports.HelmClient = _chunk2GAU2GHGjs.HelmClient; exports.addToPrettierIgnore = _chunkT5WNZJODjs.addToPrettierIgnore; exports.createDependencies =
|
|
56
|
+
exports.AbstractHelmClient = _chunkLFNGKV6Fjs.AbstractHelmClient; exports.HelmClient = _chunk2GAU2GHGjs.HelmClient; exports.addToPrettierIgnore = _chunkT5WNZJODjs.addToPrettierIgnore; exports.createDependencies = _chunkHR2BRBYYjs.createDependencies; exports.createHelmClient = _chunk2GAU2GHGjs.createHelmClient; exports.createNodes = _chunkHR2BRBYYjs.createNodes; exports.description = _chunkHR2BRBYYjs.description; exports.ensureInitialized = _chunkEAQFLLRBjs.ensureInitialized; exports.getRegistryVersion = _chunkPS6CWFTAjs.getRegistryVersion; exports.helmChartGeneratorFn = _chunkL26UZLMQjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkW2HCULDDjs.helmDependencyGeneratorFn; exports.name = _chunkHR2BRBYYjs.name; exports.resolveUserExistingPrettierConfig = _chunkT5WNZJODjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunkTTASPUADjs.serveExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -3,25 +3,25 @@ import {
|
|
|
3
3
|
createNodes,
|
|
4
4
|
description,
|
|
5
5
|
name
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-ZW6TG4ZS.mjs";
|
|
7
7
|
import "./chunk-YSCEY447.mjs";
|
|
8
8
|
import {
|
|
9
9
|
getRegistryVersion
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-NWZRYSHG.mjs";
|
|
11
11
|
import {
|
|
12
12
|
serveExecutor
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-QVVUYQET.mjs";
|
|
14
14
|
import "./chunk-QSYJ4VHO.mjs";
|
|
15
15
|
import "./chunk-3J7KBHMJ.mjs";
|
|
16
16
|
import {
|
|
17
17
|
helmChartGeneratorFn
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-Z3R3O2NI.mjs";
|
|
19
19
|
import {
|
|
20
20
|
helmDependencyGeneratorFn
|
|
21
|
-
} from "./chunk-
|
|
22
|
-
import "./chunk-
|
|
23
|
-
import "./chunk-
|
|
24
|
-
import "./chunk-
|
|
21
|
+
} from "./chunk-6W5RODUW.mjs";
|
|
22
|
+
import "./chunk-B4EYBY2L.mjs";
|
|
23
|
+
import "./chunk-SQWTERQC.mjs";
|
|
24
|
+
import "./chunk-6F7C2HU3.mjs";
|
|
25
25
|
import "./chunk-WWU25UQ4.mjs";
|
|
26
26
|
import {
|
|
27
27
|
addToPrettierIgnore,
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ExecutorContext } from '@nx/devkit';
|
|
2
|
-
import {
|
|
2
|
+
import { StormWorkspaceConfig } from '@storm-software/config';
|
|
3
3
|
import { C as ContainerPublishExecutorSchema } from '../../../schema.d-Cx_3iG9A.mjs';
|
|
4
|
-
import 'zod';
|
|
5
4
|
|
|
6
5
|
declare function publishExecutor(options: ContainerPublishExecutorSchema, context: ExecutorContext): AsyncGenerator<undefined, {
|
|
7
6
|
success: boolean;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ExecutorContext } from '@nx/devkit';
|
|
2
|
-
import {
|
|
2
|
+
import { StormWorkspaceConfig } from '@storm-software/config';
|
|
3
3
|
import { C as ContainerPublishExecutorSchema } from '../../../schema.d-Cx_3iG9A.js';
|
|
4
|
-
import 'zod';
|
|
5
4
|
|
|
6
5
|
declare function publishExecutor(options: ContainerPublishExecutorSchema, context: ExecutorContext): AsyncGenerator<undefined, {
|
|
7
6
|
success: boolean;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkPS6CWFTAjs = require('../../../chunk-PS6CWFTA.js');
|
|
5
5
|
require('../../../chunk-IOT45LXV.js');
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-IVE6VJ4S.js');
|
|
7
|
+
require('../../../chunk-HLHBBX4A.js');
|
|
8
8
|
require('../../../chunk-3GQAWCBQ.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkPS6CWFTAjs.publishExecutor; exports.getRegistryVersion = _chunkPS6CWFTAjs.getRegistryVersion;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getRegistryVersion,
|
|
3
3
|
publishExecutor
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-NWZRYSHG.mjs";
|
|
5
5
|
import "../../../chunk-QSYJ4VHO.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-SQWTERQC.mjs";
|
|
7
|
+
import "../../../chunk-6F7C2HU3.mjs";
|
|
8
8
|
import "../../../chunk-2BPV2XV2.mjs";
|
|
9
9
|
export {
|
|
10
10
|
publishExecutor as default,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '@nx/devkit';
|
|
2
|
-
import '
|
|
3
|
-
export { _ as default, s as serveExecutor } from '../../../executor-
|
|
4
|
-
import '
|
|
2
|
+
import '@storm-software/config';
|
|
3
|
+
export { _ as default, s as serveExecutor } from '../../../executor-DrSw4Xm3.mjs';
|
|
4
|
+
import '@storm-software/workspace-tools/base/base-executor.schema.d';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '@nx/devkit';
|
|
2
|
-
import '
|
|
3
|
-
export { _ as default, s as serveExecutor } from '../../../executor-
|
|
4
|
-
import '
|
|
2
|
+
import '@storm-software/config';
|
|
3
|
+
export { _ as default, s as serveExecutor } from '../../../executor-DrSw4Xm3.js';
|
|
4
|
+
import '@storm-software/workspace-tools/base/base-executor.schema.d';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../../chunk-
|
|
6
|
-
require('../../../chunk-
|
|
4
|
+
var _chunkTTASPUADjs = require('../../../chunk-TTASPUAD.js');
|
|
5
|
+
require('../../../chunk-IVE6VJ4S.js');
|
|
6
|
+
require('../../../chunk-HLHBBX4A.js');
|
|
7
7
|
require('../../../chunk-2GAU2GHG.js');
|
|
8
8
|
require('../../../chunk-LFNGKV6F.js');
|
|
9
9
|
require('../../../chunk-EAQFLLRB.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-3GQAWCBQ.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.default =
|
|
14
|
+
exports.default = _chunkTTASPUADjs.executor_default; exports.serveExecutor = _chunkTTASPUADjs.serveExecutor;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default,
|
|
3
3
|
serveExecutor
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-QVVUYQET.mjs";
|
|
5
|
+
import "../../../chunk-SQWTERQC.mjs";
|
|
6
|
+
import "../../../chunk-6F7C2HU3.mjs";
|
|
7
7
|
import "../../../chunk-4LVLYUQO.mjs";
|
|
8
8
|
import "../../../chunk-GEYARHLJ.mjs";
|
|
9
9
|
import "../../../chunk-EJLNGNMP.mjs";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '
|
|
1
|
+
import '@storm-software/workspace-tools/types';
|
|
2
2
|
import '@nx/devkit';
|
|
3
|
-
import '
|
|
4
|
-
export { _ as default, h as helmChartGeneratorFn } from '../../../generator-
|
|
5
|
-
import '
|
|
3
|
+
import '@storm-software/config';
|
|
4
|
+
export { _ as default, h as helmChartGeneratorFn } from '../../../generator-CB8TPfuo.mjs';
|
|
5
|
+
import '@storm-software/workspace-tools/base/base-generator.schema.d';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '
|
|
1
|
+
import '@storm-software/workspace-tools/types';
|
|
2
2
|
import '@nx/devkit';
|
|
3
|
-
import '
|
|
4
|
-
export { _ as default, h as helmChartGeneratorFn } from '../../../generator-
|
|
5
|
-
import '
|
|
3
|
+
import '@storm-software/config';
|
|
4
|
+
export { _ as default, h as helmChartGeneratorFn } from '../../../generator-CB8TPfuo.js';
|
|
5
|
+
import '@storm-software/workspace-tools/base/base-generator.schema.d';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../../chunk-
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
4
|
+
var _chunkL26UZLMQjs = require('../../../chunk-L26UZLMQ.js');
|
|
5
|
+
require('../../../chunk-7AUWIK6E.js');
|
|
6
|
+
require('../../../chunk-IVE6VJ4S.js');
|
|
7
|
+
require('../../../chunk-HLHBBX4A.js');
|
|
8
8
|
require('../../../chunk-3GQAWCBQ.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkL26UZLMQjs.generator_default; exports.helmChartGeneratorFn = _chunkL26UZLMQjs.helmChartGeneratorFn;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
helmChartGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-Z3R3O2NI.mjs";
|
|
5
|
+
import "../../../chunk-B4EYBY2L.mjs";
|
|
6
|
+
import "../../../chunk-SQWTERQC.mjs";
|
|
7
|
+
import "../../../chunk-6F7C2HU3.mjs";
|
|
8
8
|
import "../../../chunk-2BPV2XV2.mjs";
|
|
9
9
|
export {
|
|
10
10
|
generator_default as default,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '
|
|
1
|
+
import '@storm-software/workspace-tools/types';
|
|
2
2
|
import '@nx/devkit';
|
|
3
|
-
import '
|
|
4
|
-
export { _ as default, h as helmDependencyGeneratorFn } from '../../../generator-
|
|
5
|
-
import '
|
|
3
|
+
import '@storm-software/config';
|
|
4
|
+
export { _ as default, h as helmDependencyGeneratorFn } from '../../../generator-C4BB5aOn.mjs';
|
|
5
|
+
import '@storm-software/workspace-tools/base/base-generator.schema.d';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import '
|
|
1
|
+
import '@storm-software/workspace-tools/types';
|
|
2
2
|
import '@nx/devkit';
|
|
3
|
-
import '
|
|
4
|
-
export { _ as default, h as helmDependencyGeneratorFn } from '../../../generator-
|
|
5
|
-
import '
|
|
3
|
+
import '@storm-software/config';
|
|
4
|
+
export { _ as default, h as helmDependencyGeneratorFn } from '../../../generator-C4BB5aOn.js';
|
|
5
|
+
import '@storm-software/workspace-tools/base/base-generator.schema.d';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../../chunk-
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
4
|
+
var _chunkW2HCULDDjs = require('../../../chunk-W2HCULDD.js');
|
|
5
|
+
require('../../../chunk-7AUWIK6E.js');
|
|
6
|
+
require('../../../chunk-IVE6VJ4S.js');
|
|
7
|
+
require('../../../chunk-HLHBBX4A.js');
|
|
8
8
|
require('../../../chunk-3GQAWCBQ.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkW2HCULDDjs.generator_default; exports.helmDependencyGeneratorFn = _chunkW2HCULDDjs.helmDependencyGeneratorFn;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
helmDependencyGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-6W5RODUW.mjs";
|
|
5
|
+
import "../../../chunk-B4EYBY2L.mjs";
|
|
6
|
+
import "../../../chunk-SQWTERQC.mjs";
|
|
7
|
+
import "../../../chunk-6F7C2HU3.mjs";
|
|
8
8
|
import "../../../chunk-2BPV2XV2.mjs";
|
|
9
9
|
export {
|
|
10
10
|
generator_default as default,
|