@storm-software/k8s-tools 0.19.1 → 0.19.4

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.
Files changed (37) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/README.md +354 -1
  3. package/dist/{chunk-LSBSNYPQ.mjs → chunk-6ETDUQVL.mjs} +2 -2
  4. package/dist/{chunk-GOVHOOTS.js → chunk-6T5V554C.js} +3 -3
  5. package/dist/{chunk-OXY6AHKS.js → chunk-7LS6U2EN.js} +4 -4
  6. package/dist/{chunk-AFPEYAYK.js → chunk-B2P75NHN.js} +2 -2
  7. package/dist/{chunk-Q6DDBFXE.mjs → chunk-BMKXRKZ6.mjs} +3 -3
  8. package/dist/{chunk-O7U3AH6A.mjs → chunk-DLP46TOM.mjs} +2 -2
  9. package/dist/{chunk-TUDMFJIT.mjs → chunk-EPOBUJ5U.mjs} +2 -2
  10. package/dist/{chunk-7BCSLKT3.js → chunk-GWVDYIPM.js} +4 -4
  11. package/dist/{chunk-7AV2CVBT.mjs → chunk-J3C3UJ2V.mjs} +3 -3
  12. package/dist/{chunk-2QNNUD5M.js → chunk-J5KJKKSR.js} +19 -19
  13. package/dist/{chunk-DZ5UCMNL.mjs → chunk-JZ3PTTB5.mjs} +4 -4
  14. package/dist/{chunk-GDXB64KG.js → chunk-MCT4RPRY.js} +4 -4
  15. package/dist/{chunk-EISL3C34.js → chunk-NDFB6RMA.js} +23 -23
  16. package/dist/{chunk-ZO7MGNKJ.mjs → chunk-PMKEFUA5.mjs} +1 -1
  17. package/dist/{chunk-W7DPLC4K.mjs → chunk-PNFPJ5DL.mjs} +1 -1
  18. package/dist/{chunk-UWJTAL4W.js → chunk-UQ4QRI2O.js} +2 -2
  19. package/dist/{chunk-OBT35QXS.mjs → chunk-VVE2BUWY.mjs} +1 -1
  20. package/dist/{chunk-XMPMWMWQ.js → chunk-YQQLWIFZ.js} +7 -7
  21. package/dist/executors.js +6 -6
  22. package/dist/executors.mjs +5 -5
  23. package/dist/generators.js +6 -6
  24. package/dist/generators.mjs +5 -5
  25. package/dist/index.js +10 -10
  26. package/dist/index.mjs +9 -9
  27. package/dist/src/executors/container-publish/executor.js +5 -5
  28. package/dist/src/executors/container-publish/executor.mjs +4 -4
  29. package/dist/src/executors/helm-package/executor.js +5 -5
  30. package/dist/src/executors/helm-package/executor.mjs +4 -4
  31. package/dist/src/generators/helm-chart/generator.js +5 -5
  32. package/dist/src/generators/helm-chart/generator.mjs +4 -4
  33. package/dist/src/generators/helm-dependency/generator.js +5 -5
  34. package/dist/src/generators/helm-dependency/generator.mjs +4 -4
  35. package/dist/src/plugins/docker/index.js +3 -3
  36. package/dist/src/plugins/docker/index.mjs +2 -2
  37. package/package.json +160 -1
@@ -579,26 +579,26 @@ import { loadConfig } from "c12";
579
579
  import defu from "defu";
580
580
  var getConfigFileByName = /* @__PURE__ */ __name(async (fileName, filePath, options = {}) => {
581
581
  const workspacePath = filePath || findWorkspaceRoot(filePath);
582
- let config = loadConfig({
582
+ let config = await loadConfig({
583
583
  cwd: workspacePath,
584
584
  packageJson: true,
585
585
  name: fileName,
586
586
  envName: fileName?.toUpperCase(),
587
587
  jitiOptions: {
588
588
  debug: false,
589
- cache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(process.env.STORM_CACHE_DIR || "node_modules/.cache", "storm")
589
+ fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(process.env.STORM_CACHE_DIR || "node_modules/.cache/storm", "jiti")
590
590
  },
591
591
  ...options
592
592
  });
593
593
  if (!config || Object.keys(config).length === 0) {
594
- config = loadConfig({
594
+ config = await loadConfig({
595
595
  cwd: workspacePath,
596
596
  packageJson: true,
597
597
  name: fileName,
598
598
  envName: fileName?.toUpperCase(),
599
599
  jitiOptions: {
600
600
  debug: false,
601
- cache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(process.env.STORM_CACHE_DIR || "node_modules/.cache", "storm")
601
+ fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(process.env.STORM_CACHE_DIR || "node_modules/.cache/storm", "jiti")
602
602
  },
603
603
  configFile: fileName,
604
604
  ...options
@@ -579,26 +579,26 @@ var _c12 = require('c12');
579
579
 
580
580
  var getConfigFileByName = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (fileName, filePath, options = {}) => {
581
581
  const workspacePath = filePath || findWorkspaceRoot(filePath);
582
- let config = _c12.loadConfig.call(void 0, {
582
+ let config = await _c12.loadConfig.call(void 0, {
583
583
  cwd: workspacePath,
584
584
  packageJson: true,
585
585
  name: fileName,
586
586
  envName: _optionalChain([fileName, 'optionalAccess', _30 => _30.toUpperCase, 'call', _31 => _31()]),
587
587
  jitiOptions: {
588
588
  debug: false,
589
- cache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(process.env.STORM_CACHE_DIR || "node_modules/.cache", "storm")
589
+ fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(process.env.STORM_CACHE_DIR || "node_modules/.cache/storm", "jiti")
590
590
  },
591
591
  ...options
592
592
  });
593
593
  if (!config || Object.keys(config).length === 0) {
594
- config = _c12.loadConfig.call(void 0, {
594
+ config = await _c12.loadConfig.call(void 0, {
595
595
  cwd: workspacePath,
596
596
  packageJson: true,
597
597
  name: fileName,
598
598
  envName: _optionalChain([fileName, 'optionalAccess', _32 => _32.toUpperCase, 'call', _33 => _33()]),
599
599
  jitiOptions: {
600
600
  debug: false,
601
- cache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(process.env.STORM_CACHE_DIR || "node_modules/.cache", "storm")
601
+ fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(process.env.STORM_CACHE_DIR || "node_modules/.cache/storm", "jiti")
602
602
  },
603
603
  configFile: fileName,
604
604
  ...options
@@ -1,9 +1,9 @@
1
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; }
2
2
 
3
- var _chunkUWJTAL4Wjs = require('./chunk-UWJTAL4W.js');
3
+ var _chunkUQ4QRI2Ojs = require('./chunk-UQ4QRI2O.js');
4
4
 
5
5
 
6
- var _chunkAFPEYAYKjs = require('./chunk-AFPEYAYK.js');
6
+ var _chunkB2P75NHNjs = require('./chunk-B2P75NHN.js');
7
7
 
8
8
 
9
9
 
@@ -16,7 +16,7 @@ var _chunkAFPEYAYKjs = require('./chunk-AFPEYAYK.js');
16
16
 
17
17
 
18
18
 
19
- var _chunkGDXB64KGjs = require('./chunk-GDXB64KG.js');
19
+ var _chunkMCT4RPRYjs = require('./chunk-MCT4RPRY.js');
20
20
 
21
21
 
22
22
  var _chunk2GAU2GHGjs = require('./chunk-2GAU2GHG.js');
@@ -26,37 +26,37 @@ var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
26
26
 
27
27
  // ../workspace-tools/src/base/base-executor.ts
28
28
  var withRunExecutor = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (name, executorFn, executorOptions = {}) => async (_options, context) => {
29
- const stopwatch = _chunkGDXB64KGjs.getStopwatch.call(void 0, name);
29
+ const stopwatch = _chunkMCT4RPRYjs.getStopwatch.call(void 0, name);
30
30
  let options = _options;
31
31
  let config = {};
32
32
  try {
33
- _chunkGDXB64KGjs.writeInfo.call(void 0, `\u26A1 Running the ${name} executor...
33
+ _chunkMCT4RPRYjs.writeInfo.call(void 0, `\u26A1 Running the ${name} executor...
34
34
  `, config);
35
35
  if (!_optionalChain([context, 'access', _ => _.projectsConfigurations, 'optionalAccess', _2 => _2.projects]) || !context.projectName || !context.projectsConfigurations.projects[context.projectName]) {
36
36
  throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace.");
37
37
  }
38
- const workspaceRoot = _chunkGDXB64KGjs.findWorkspaceRoot.call(void 0, );
38
+ const workspaceRoot = _chunkMCT4RPRYjs.findWorkspaceRoot.call(void 0, );
39
39
  const projectRoot = _nullishCoalesce(_optionalChain([context, 'access', _3 => _3.projectsConfigurations, 'access', _4 => _4.projects, 'access', _5 => _5[context.projectName], 'optionalAccess', _6 => _6.root]), () => ( workspaceRoot));
40
40
  const sourceRoot = _nullishCoalesce(_optionalChain([context, 'access', _7 => _7.projectsConfigurations, 'access', _8 => _8.projects, 'access', _9 => _9[context.projectName], 'optionalAccess', _10 => _10.sourceRoot]), () => ( workspaceRoot));
41
41
  const projectName = _nullishCoalesce(_optionalChain([context, 'access', _11 => _11.projectsConfigurations, 'access', _12 => _12.projects, 'access', _13 => _13[context.projectName], 'optionalAccess', _14 => _14.name]), () => ( context.projectName));
42
42
  config.workspaceRoot = workspaceRoot;
43
43
  if (!executorOptions.skipReadingConfig) {
44
- _chunkGDXB64KGjs.writeTrace.call(void 0, `Loading the Storm Config from environment variables and storm.config.js file...
44
+ _chunkMCT4RPRYjs.writeTrace.call(void 0, `Loading the Storm Config from environment variables and storm.config.js file...
45
45
  - workspaceRoot: ${workspaceRoot}
46
46
  - projectRoot: ${projectRoot}
47
47
  - sourceRoot: ${sourceRoot}
48
48
  - projectName: ${projectName}
49
49
  `, config);
50
- config = await _chunkGDXB64KGjs.loadStormConfig.call(void 0, workspaceRoot);
50
+ config = await _chunkMCT4RPRYjs.loadStormConfig.call(void 0, workspaceRoot);
51
51
  }
52
52
  if (_optionalChain([executorOptions, 'optionalAccess', _15 => _15.hooks, 'optionalAccess', _16 => _16.applyDefaultOptions])) {
53
- _chunkGDXB64KGjs.writeDebug.call(void 0, "Running the applyDefaultOptions hook...", config);
53
+ _chunkMCT4RPRYjs.writeDebug.call(void 0, "Running the applyDefaultOptions hook...", config);
54
54
  options = await Promise.resolve(executorOptions.hooks.applyDefaultOptions(options, config));
55
- _chunkGDXB64KGjs.writeDebug.call(void 0, "Completed the applyDefaultOptions hook", config);
55
+ _chunkMCT4RPRYjs.writeDebug.call(void 0, "Completed the applyDefaultOptions hook", config);
56
56
  }
57
- _chunkGDXB64KGjs.writeTrace.call(void 0, `Executor schema options \u2699\uFE0F
57
+ _chunkMCT4RPRYjs.writeTrace.call(void 0, `Executor schema options \u2699\uFE0F
58
58
  ${Object.keys(options).map((key) => ` - ${key}=${_isFunction(options[key]) ? "<function>" : JSON.stringify(options[key])}`).join("\n")}`, config);
59
- const tokenized = await _chunkAFPEYAYKjs.applyWorkspaceTokens.call(void 0, options, {
59
+ const tokenized = await _chunkB2P75NHNjs.applyWorkspaceTokens.call(void 0, options, {
60
60
  config,
61
61
  workspaceRoot,
62
62
  projectRoot,
@@ -64,11 +64,11 @@ ${Object.keys(options).map((key) => ` - ${key}=${_isFunction(options[key]) ? "<f
64
64
  projectName,
65
65
  ...context.projectsConfigurations.projects[context.projectName],
66
66
  ...executorOptions
67
- }, _chunkUWJTAL4Wjs.applyWorkspaceExecutorTokens);
67
+ }, _chunkUQ4QRI2Ojs.applyWorkspaceExecutorTokens);
68
68
  if (_optionalChain([executorOptions, 'optionalAccess', _17 => _17.hooks, 'optionalAccess', _18 => _18.preProcess])) {
69
- _chunkGDXB64KGjs.writeDebug.call(void 0, "Running the preProcess hook...", config);
69
+ _chunkMCT4RPRYjs.writeDebug.call(void 0, "Running the preProcess hook...", config);
70
70
  await Promise.resolve(executorOptions.hooks.preProcess(tokenized, config));
71
- _chunkGDXB64KGjs.writeDebug.call(void 0, "Completed the preProcess hook", config);
71
+ _chunkMCT4RPRYjs.writeDebug.call(void 0, "Completed the preProcess hook", config);
72
72
  }
73
73
  const ret = executorFn(tokenized, context, config);
74
74
  if (_isFunction(_optionalChain([ret, 'optionalAccess', _19 => _19.next]))) {
@@ -78,26 +78,26 @@ ${Object.keys(options).map((key) => ` - ${key}=${_isFunction(options[key]) ? "<f
78
78
  }
79
79
  const result = await Promise.resolve(ret);
80
80
  if (result && (!result.success || result.error && _optionalChain([result, 'optionalAccess', _20 => _20.error, 'optionalAccess', _21 => _21.message]) && typeof _optionalChain([result, 'optionalAccess', _22 => _22.error, 'optionalAccess', _23 => _23.message]) === "string" && _optionalChain([result, 'optionalAccess', _24 => _24.error, 'optionalAccess', _25 => _25.name]) && typeof _optionalChain([result, 'optionalAccess', _26 => _26.error, 'optionalAccess', _27 => _27.name]) === "string")) {
81
- _chunkGDXB64KGjs.writeTrace.call(void 0, `Failure determined by the ${name} executor
82
- ${_chunkGDXB64KGjs.formatLogMessage.call(void 0, result)}`, config);
81
+ _chunkMCT4RPRYjs.writeTrace.call(void 0, `Failure determined by the ${name} executor
82
+ ${_chunkMCT4RPRYjs.formatLogMessage.call(void 0, result)}`, config);
83
83
  console.error(result);
84
84
  throw new Error(`The ${name} executor failed to run`, {
85
85
  cause: _optionalChain([result, 'optionalAccess', _28 => _28.error])
86
86
  });
87
87
  }
88
88
  if (_optionalChain([executorOptions, 'optionalAccess', _29 => _29.hooks, 'optionalAccess', _30 => _30.postProcess])) {
89
- _chunkGDXB64KGjs.writeDebug.call(void 0, "Running the postProcess hook...", config);
89
+ _chunkMCT4RPRYjs.writeDebug.call(void 0, "Running the postProcess hook...", config);
90
90
  await Promise.resolve(executorOptions.hooks.postProcess(config));
91
- _chunkGDXB64KGjs.writeDebug.call(void 0, "Completed the postProcess hook", config);
91
+ _chunkMCT4RPRYjs.writeDebug.call(void 0, "Completed the postProcess hook", config);
92
92
  }
93
- _chunkGDXB64KGjs.writeSuccess.call(void 0, `Completed running the ${name} task executor!
93
+ _chunkMCT4RPRYjs.writeSuccess.call(void 0, `Completed running the ${name} task executor!
94
94
  `, config);
95
95
  return {
96
96
  success: true
97
97
  };
98
98
  } catch (error) {
99
- _chunkGDXB64KGjs.writeFatal.call(void 0, "A fatal error occurred while running the executor - the process was forced to terminate", config);
100
- _chunkGDXB64KGjs.writeError.call(void 0, `An exception was thrown in the executor's process
99
+ _chunkMCT4RPRYjs.writeFatal.call(void 0, "A fatal error occurred while running the executor - the process was forced to terminate", config);
100
+ _chunkMCT4RPRYjs.writeError.call(void 0, `An exception was thrown in the executor's process
101
101
  - Details: ${error.message}
102
102
  - Stacktrace: ${error.stack}`, config);
103
103
  return {
@@ -146,7 +146,7 @@ async function serveExecutor(options, context, config) {
146
146
  remote: options.remote
147
147
  });
148
148
  } else {
149
- _chunkGDXB64KGjs.writeWarning.call(void 0, `Chart packaged at: ${chartPath}`, config);
149
+ _chunkMCT4RPRYjs.writeWarning.call(void 0, `Chart packaged at: ${chartPath}`, config);
150
150
  }
151
151
  return {
152
152
  success: true
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  findWorkspaceRoot
3
- } from "./chunk-DZ5UCMNL.mjs";
3
+ } from "./chunk-JZ3PTTB5.mjs";
4
4
  import {
5
5
  __name
6
6
  } from "./chunk-XUV4U54K.mjs";
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  findWorkspaceRoot,
10
10
  loadStormConfig
11
- } from "./chunk-DZ5UCMNL.mjs";
11
+ } from "./chunk-JZ3PTTB5.mjs";
12
12
  import {
13
13
  __name
14
14
  } from "./chunk-XUV4U54K.mjs";
@@ -1,6 +1,6 @@
1
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; }
2
2
 
3
- var _chunkGDXB64KGjs = require('./chunk-GDXB64KG.js');
3
+ var _chunkMCT4RPRYjs = require('./chunk-MCT4RPRY.js');
4
4
 
5
5
 
6
6
  var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
@@ -49,7 +49,7 @@ var applyWorkspaceExecutorTokens = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(
49
49
  result = result.replaceAll("{sourceRoot}", sourceRoot);
50
50
  }
51
51
  if (result.includes("{workspaceRoot}")) {
52
- result = result.replaceAll("{workspaceRoot}", _nullishCoalesce(tokenizerOptions.workspaceRoot, () => ( _chunkGDXB64KGjs.findWorkspaceRoot.call(void 0, ))));
52
+ result = result.replaceAll("{workspaceRoot}", _nullishCoalesce(tokenizerOptions.workspaceRoot, () => ( _chunkMCT4RPRYjs.findWorkspaceRoot.call(void 0, ))));
53
53
  }
54
54
  return result;
55
55
  }, "applyWorkspaceExecutorTokens");
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  findWorkspaceRoot
3
- } from "./chunk-DZ5UCMNL.mjs";
3
+ } from "./chunk-JZ3PTTB5.mjs";
4
4
  import {
5
5
  __name
6
6
  } from "./chunk-XUV4U54K.mjs";
@@ -1,16 +1,16 @@
1
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
- var _chunkUWJTAL4Wjs = require('./chunk-UWJTAL4W.js');
3
+ var _chunkUQ4QRI2Ojs = require('./chunk-UQ4QRI2O.js');
4
4
 
5
5
 
6
6
  var _chunkIOT45LXVjs = require('./chunk-IOT45LXV.js');
7
7
 
8
8
 
9
- var _chunkAFPEYAYKjs = require('./chunk-AFPEYAYK.js');
9
+ var _chunkB2P75NHNjs = require('./chunk-B2P75NHN.js');
10
10
 
11
11
 
12
12
 
13
- var _chunkGDXB64KGjs = require('./chunk-GDXB64KG.js');
13
+ var _chunkMCT4RPRYjs = require('./chunk-MCT4RPRY.js');
14
14
 
15
15
 
16
16
  var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
@@ -24,8 +24,8 @@ async function* publishExecutor(options, context) {
24
24
  throw new Error("The executor requires a projectName.");
25
25
  }
26
26
  console.info(`\u{1F680} Running Storm Container Registry Publish executor on the ${context.projectName} crate`);
27
- const workspaceRoot = _chunkGDXB64KGjs.findWorkspaceRoot.call(void 0, );
28
- const config = await _chunkGDXB64KGjs.loadStormConfig.call(void 0, workspaceRoot);
27
+ const workspaceRoot = _chunkMCT4RPRYjs.findWorkspaceRoot.call(void 0, );
28
+ const config = await _chunkMCT4RPRYjs.loadStormConfig.call(void 0, workspaceRoot);
29
29
  const projectConfig = _optionalChain([context, 'access', _ => _.projectsConfigurations, 'optionalAccess', _2 => _2.projects, 'access', _3 => _3[context.projectName]]);
30
30
  if (!projectConfig) {
31
31
  throw new Error(`The executor requires a valid projectsConfiguration - No configuration found for project ${context.projectName}`);
@@ -34,14 +34,14 @@ async function* publishExecutor(options, context) {
34
34
  const sourceRoot = _nullishCoalesce(_optionalChain([projectConfig, 'optionalAccess', _5 => _5.sourceRoot]), () => ( workspaceRoot));
35
35
  const projectName = _nullishCoalesce(_optionalChain([projectConfig, 'optionalAccess', _6 => _6.name]), () => ( context.projectName));
36
36
  config.workspaceRoot = workspaceRoot;
37
- const tokenized = await _chunkAFPEYAYKjs.applyWorkspaceTokens.call(void 0, options, {
37
+ const tokenized = await _chunkB2P75NHNjs.applyWorkspaceTokens.call(void 0, options, {
38
38
  config,
39
39
  workspaceRoot,
40
40
  projectRoot,
41
41
  sourceRoot,
42
42
  projectName,
43
43
  ...projectConfig
44
- }, _chunkUWJTAL4Wjs.applyWorkspaceExecutorTokens);
44
+ }, _chunkUQ4QRI2Ojs.applyWorkspaceExecutorTokens);
45
45
  tokenized.engine ??= "docker";
46
46
  tokenized.registry ??= config.registry.container;
47
47
  try {
package/dist/executors.js CHANGED
@@ -1,14 +1,14 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-XO66D74Z.js');
2
2
 
3
3
 
4
- var _chunkXMPMWMWQjs = require('./chunk-XMPMWMWQ.js');
4
+ var _chunkYQQLWIFZjs = require('./chunk-YQQLWIFZ.js');
5
5
 
6
6
 
7
- var _chunkEISL3C34js = require('./chunk-EISL3C34.js');
8
- require('./chunk-UWJTAL4W.js');
7
+ var _chunkNDFB6RMAjs = require('./chunk-NDFB6RMA.js');
8
+ require('./chunk-UQ4QRI2O.js');
9
9
  require('./chunk-IOT45LXV.js');
10
- require('./chunk-AFPEYAYK.js');
11
- require('./chunk-GDXB64KG.js');
10
+ require('./chunk-B2P75NHN.js');
11
+ require('./chunk-MCT4RPRY.js');
12
12
  require('./chunk-2GAU2GHG.js');
13
13
  require('./chunk-LFNGKV6F.js');
14
14
  require('./chunk-EAQFLLRB.js');
@@ -16,4 +16,4 @@ require('./chunk-3GQAWCBQ.js');
16
16
 
17
17
 
18
18
 
19
- exports.getRegistryVersion = _chunkXMPMWMWQjs.getRegistryVersion; exports.serveExecutor = _chunkEISL3C34js.serveExecutor;
19
+ exports.getRegistryVersion = _chunkYQQLWIFZjs.getRegistryVersion; exports.serveExecutor = _chunkNDFB6RMAjs.serveExecutor;
@@ -1,14 +1,14 @@
1
1
  import "./chunk-YSCEY447.mjs";
2
2
  import {
3
3
  getRegistryVersion
4
- } from "./chunk-Q6DDBFXE.mjs";
4
+ } from "./chunk-BMKXRKZ6.mjs";
5
5
  import {
6
6
  serveExecutor
7
- } from "./chunk-7AV2CVBT.mjs";
8
- import "./chunk-OBT35QXS.mjs";
7
+ } from "./chunk-J3C3UJ2V.mjs";
8
+ import "./chunk-VVE2BUWY.mjs";
9
9
  import "./chunk-RVFKH45R.mjs";
10
- import "./chunk-ZO7MGNKJ.mjs";
11
- import "./chunk-DZ5UCMNL.mjs";
10
+ import "./chunk-PMKEFUA5.mjs";
11
+ import "./chunk-JZ3PTTB5.mjs";
12
12
  import "./chunk-6V45YKVB.mjs";
13
13
  import "./chunk-UDLI3L7V.mjs";
14
14
  import "./chunk-OA63SGD6.mjs";
@@ -1,15 +1,15 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-DHBG5ASJ.js');
2
2
 
3
3
 
4
- var _chunkOXY6AHKSjs = require('./chunk-OXY6AHKS.js');
4
+ var _chunk7LS6U2ENjs = require('./chunk-7LS6U2EN.js');
5
5
 
6
6
 
7
- var _chunk7BCSLKT3js = require('./chunk-7BCSLKT3.js');
8
- require('./chunk-2QNNUD5M.js');
9
- require('./chunk-AFPEYAYK.js');
10
- require('./chunk-GDXB64KG.js');
7
+ var _chunkGWVDYIPMjs = require('./chunk-GWVDYIPM.js');
8
+ require('./chunk-J5KJKKSR.js');
9
+ require('./chunk-B2P75NHN.js');
10
+ require('./chunk-MCT4RPRY.js');
11
11
  require('./chunk-3GQAWCBQ.js');
12
12
 
13
13
 
14
14
 
15
- exports.helmChartGeneratorFn = _chunkOXY6AHKSjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunk7BCSLKT3js.helmDependencyGeneratorFn;
15
+ exports.helmChartGeneratorFn = _chunk7LS6U2ENjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkGWVDYIPMjs.helmDependencyGeneratorFn;
@@ -1,13 +1,13 @@
1
1
  import "./chunk-3J7KBHMJ.mjs";
2
2
  import {
3
3
  helmChartGeneratorFn
4
- } from "./chunk-O7U3AH6A.mjs";
4
+ } from "./chunk-DLP46TOM.mjs";
5
5
  import {
6
6
  helmDependencyGeneratorFn
7
- } from "./chunk-TUDMFJIT.mjs";
8
- import "./chunk-LSBSNYPQ.mjs";
9
- import "./chunk-ZO7MGNKJ.mjs";
10
- import "./chunk-DZ5UCMNL.mjs";
7
+ } from "./chunk-EPOBUJ5U.mjs";
8
+ import "./chunk-6ETDUQVL.mjs";
9
+ import "./chunk-PMKEFUA5.mjs";
10
+ import "./chunk-JZ3PTTB5.mjs";
11
11
  import "./chunk-XUV4U54K.mjs";
12
12
  export {
13
13
  helmChartGeneratorFn,
package/dist/index.js CHANGED
@@ -3,26 +3,26 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkGOVHOOTSjs = require('./chunk-GOVHOOTS.js');
6
+ var _chunk6T5V554Cjs = require('./chunk-6T5V554C.js');
7
7
  require('./chunk-XO66D74Z.js');
8
8
 
9
9
 
10
- var _chunkXMPMWMWQjs = require('./chunk-XMPMWMWQ.js');
10
+ var _chunkYQQLWIFZjs = require('./chunk-YQQLWIFZ.js');
11
11
 
12
12
 
13
- var _chunkEISL3C34js = require('./chunk-EISL3C34.js');
14
- require('./chunk-UWJTAL4W.js');
13
+ var _chunkNDFB6RMAjs = require('./chunk-NDFB6RMA.js');
14
+ require('./chunk-UQ4QRI2O.js');
15
15
  require('./chunk-IOT45LXV.js');
16
16
  require('./chunk-DHBG5ASJ.js');
17
17
 
18
18
 
19
- var _chunkOXY6AHKSjs = require('./chunk-OXY6AHKS.js');
19
+ var _chunk7LS6U2ENjs = require('./chunk-7LS6U2EN.js');
20
20
 
21
21
 
22
- var _chunk7BCSLKT3js = require('./chunk-7BCSLKT3.js');
23
- require('./chunk-2QNNUD5M.js');
24
- require('./chunk-AFPEYAYK.js');
25
- require('./chunk-GDXB64KG.js');
22
+ var _chunkGWVDYIPMjs = require('./chunk-GWVDYIPM.js');
23
+ require('./chunk-J5KJKKSR.js');
24
+ require('./chunk-B2P75NHN.js');
25
+ require('./chunk-MCT4RPRY.js');
26
26
  require('./chunk-U76ID4TS.js');
27
27
 
28
28
 
@@ -54,4 +54,4 @@ require('./chunk-3GQAWCBQ.js');
54
54
 
55
55
 
56
56
 
57
- exports.AbstractHelmClient = _chunkLFNGKV6Fjs.AbstractHelmClient; exports.HelmClient = _chunk2GAU2GHGjs.HelmClient; exports.addToPrettierIgnore = _chunkT5WNZJODjs.addToPrettierIgnore; exports.createDependencies = _chunkGOVHOOTSjs.createDependencies; exports.createHelmClient = _chunk2GAU2GHGjs.createHelmClient; exports.createNodes = _chunkGOVHOOTSjs.createNodes; exports.description = _chunkGOVHOOTSjs.description; exports.ensureInitialized = _chunkEAQFLLRBjs.ensureInitialized; exports.getRegistryVersion = _chunkXMPMWMWQjs.getRegistryVersion; exports.helmChartGeneratorFn = _chunkOXY6AHKSjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunk7BCSLKT3js.helmDependencyGeneratorFn; exports.name = _chunkGOVHOOTSjs.name; exports.resolveUserExistingPrettierConfig = _chunkT5WNZJODjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunkEISL3C34js.serveExecutor;
57
+ exports.AbstractHelmClient = _chunkLFNGKV6Fjs.AbstractHelmClient; exports.HelmClient = _chunk2GAU2GHGjs.HelmClient; exports.addToPrettierIgnore = _chunkT5WNZJODjs.addToPrettierIgnore; exports.createDependencies = _chunk6T5V554Cjs.createDependencies; exports.createHelmClient = _chunk2GAU2GHGjs.createHelmClient; exports.createNodes = _chunk6T5V554Cjs.createNodes; exports.description = _chunk6T5V554Cjs.description; exports.ensureInitialized = _chunkEAQFLLRBjs.ensureInitialized; exports.getRegistryVersion = _chunkYQQLWIFZjs.getRegistryVersion; exports.helmChartGeneratorFn = _chunk7LS6U2ENjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkGWVDYIPMjs.helmDependencyGeneratorFn; exports.name = _chunk6T5V554Cjs.name; exports.resolveUserExistingPrettierConfig = _chunkT5WNZJODjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunkNDFB6RMAjs.serveExecutor;
package/dist/index.mjs CHANGED
@@ -3,26 +3,26 @@ import {
3
3
  createNodes,
4
4
  description,
5
5
  name
6
- } from "./chunk-W7DPLC4K.mjs";
6
+ } from "./chunk-PNFPJ5DL.mjs";
7
7
  import "./chunk-YSCEY447.mjs";
8
8
  import {
9
9
  getRegistryVersion
10
- } from "./chunk-Q6DDBFXE.mjs";
10
+ } from "./chunk-BMKXRKZ6.mjs";
11
11
  import {
12
12
  serveExecutor
13
- } from "./chunk-7AV2CVBT.mjs";
14
- import "./chunk-OBT35QXS.mjs";
13
+ } from "./chunk-J3C3UJ2V.mjs";
14
+ import "./chunk-VVE2BUWY.mjs";
15
15
  import "./chunk-RVFKH45R.mjs";
16
16
  import "./chunk-3J7KBHMJ.mjs";
17
17
  import {
18
18
  helmChartGeneratorFn
19
- } from "./chunk-O7U3AH6A.mjs";
19
+ } from "./chunk-DLP46TOM.mjs";
20
20
  import {
21
21
  helmDependencyGeneratorFn
22
- } from "./chunk-TUDMFJIT.mjs";
23
- import "./chunk-LSBSNYPQ.mjs";
24
- import "./chunk-ZO7MGNKJ.mjs";
25
- import "./chunk-DZ5UCMNL.mjs";
22
+ } from "./chunk-EPOBUJ5U.mjs";
23
+ import "./chunk-6ETDUQVL.mjs";
24
+ import "./chunk-PMKEFUA5.mjs";
25
+ import "./chunk-JZ3PTTB5.mjs";
26
26
  import "./chunk-WWU25UQ4.mjs";
27
27
  import {
28
28
  addToPrettierIgnore,
@@ -1,13 +1,13 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkXMPMWMWQjs = require('../../../chunk-XMPMWMWQ.js');
5
- require('../../../chunk-UWJTAL4W.js');
4
+ var _chunkYQQLWIFZjs = require('../../../chunk-YQQLWIFZ.js');
5
+ require('../../../chunk-UQ4QRI2O.js');
6
6
  require('../../../chunk-IOT45LXV.js');
7
- require('../../../chunk-AFPEYAYK.js');
8
- require('../../../chunk-GDXB64KG.js');
7
+ require('../../../chunk-B2P75NHN.js');
8
+ require('../../../chunk-MCT4RPRY.js');
9
9
  require('../../../chunk-3GQAWCBQ.js');
10
10
 
11
11
 
12
12
 
13
- exports.default = _chunkXMPMWMWQjs.publishExecutor; exports.getRegistryVersion = _chunkXMPMWMWQjs.getRegistryVersion;
13
+ exports.default = _chunkYQQLWIFZjs.publishExecutor; exports.getRegistryVersion = _chunkYQQLWIFZjs.getRegistryVersion;
@@ -1,11 +1,11 @@
1
1
  import {
2
2
  getRegistryVersion,
3
3
  publishExecutor
4
- } from "../../../chunk-Q6DDBFXE.mjs";
5
- import "../../../chunk-OBT35QXS.mjs";
4
+ } from "../../../chunk-BMKXRKZ6.mjs";
5
+ import "../../../chunk-VVE2BUWY.mjs";
6
6
  import "../../../chunk-RVFKH45R.mjs";
7
- import "../../../chunk-ZO7MGNKJ.mjs";
8
- import "../../../chunk-DZ5UCMNL.mjs";
7
+ import "../../../chunk-PMKEFUA5.mjs";
8
+ import "../../../chunk-JZ3PTTB5.mjs";
9
9
  import "../../../chunk-XUV4U54K.mjs";
10
10
  export {
11
11
  publishExecutor as default,
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkEISL3C34js = require('../../../chunk-EISL3C34.js');
5
- require('../../../chunk-UWJTAL4W.js');
6
- require('../../../chunk-AFPEYAYK.js');
7
- require('../../../chunk-GDXB64KG.js');
4
+ var _chunkNDFB6RMAjs = require('../../../chunk-NDFB6RMA.js');
5
+ require('../../../chunk-UQ4QRI2O.js');
6
+ require('../../../chunk-B2P75NHN.js');
7
+ require('../../../chunk-MCT4RPRY.js');
8
8
  require('../../../chunk-2GAU2GHG.js');
9
9
  require('../../../chunk-LFNGKV6F.js');
10
10
  require('../../../chunk-EAQFLLRB.js');
@@ -12,4 +12,4 @@ require('../../../chunk-3GQAWCBQ.js');
12
12
 
13
13
 
14
14
 
15
- exports.default = _chunkEISL3C34js.executor_default; exports.serveExecutor = _chunkEISL3C34js.serveExecutor;
15
+ exports.default = _chunkNDFB6RMAjs.executor_default; exports.serveExecutor = _chunkNDFB6RMAjs.serveExecutor;
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  executor_default,
3
3
  serveExecutor
4
- } from "../../../chunk-7AV2CVBT.mjs";
5
- import "../../../chunk-OBT35QXS.mjs";
6
- import "../../../chunk-ZO7MGNKJ.mjs";
7
- import "../../../chunk-DZ5UCMNL.mjs";
4
+ } from "../../../chunk-J3C3UJ2V.mjs";
5
+ import "../../../chunk-VVE2BUWY.mjs";
6
+ import "../../../chunk-PMKEFUA5.mjs";
7
+ import "../../../chunk-JZ3PTTB5.mjs";
8
8
  import "../../../chunk-6V45YKVB.mjs";
9
9
  import "../../../chunk-UDLI3L7V.mjs";
10
10
  import "../../../chunk-OA63SGD6.mjs";
@@ -1,12 +1,12 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkOXY6AHKSjs = require('../../../chunk-OXY6AHKS.js');
5
- require('../../../chunk-2QNNUD5M.js');
6
- require('../../../chunk-AFPEYAYK.js');
7
- require('../../../chunk-GDXB64KG.js');
4
+ var _chunk7LS6U2ENjs = require('../../../chunk-7LS6U2EN.js');
5
+ require('../../../chunk-J5KJKKSR.js');
6
+ require('../../../chunk-B2P75NHN.js');
7
+ require('../../../chunk-MCT4RPRY.js');
8
8
  require('../../../chunk-3GQAWCBQ.js');
9
9
 
10
10
 
11
11
 
12
- exports.default = _chunkOXY6AHKSjs.generator_default; exports.helmChartGeneratorFn = _chunkOXY6AHKSjs.helmChartGeneratorFn;
12
+ exports.default = _chunk7LS6U2ENjs.generator_default; exports.helmChartGeneratorFn = _chunk7LS6U2ENjs.helmChartGeneratorFn;
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  generator_default,
3
3
  helmChartGeneratorFn
4
- } from "../../../chunk-O7U3AH6A.mjs";
5
- import "../../../chunk-LSBSNYPQ.mjs";
6
- import "../../../chunk-ZO7MGNKJ.mjs";
7
- import "../../../chunk-DZ5UCMNL.mjs";
4
+ } from "../../../chunk-DLP46TOM.mjs";
5
+ import "../../../chunk-6ETDUQVL.mjs";
6
+ import "../../../chunk-PMKEFUA5.mjs";
7
+ import "../../../chunk-JZ3PTTB5.mjs";
8
8
  import "../../../chunk-XUV4U54K.mjs";
9
9
  export {
10
10
  generator_default as default,
@@ -1,12 +1,12 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk7BCSLKT3js = require('../../../chunk-7BCSLKT3.js');
5
- require('../../../chunk-2QNNUD5M.js');
6
- require('../../../chunk-AFPEYAYK.js');
7
- require('../../../chunk-GDXB64KG.js');
4
+ var _chunkGWVDYIPMjs = require('../../../chunk-GWVDYIPM.js');
5
+ require('../../../chunk-J5KJKKSR.js');
6
+ require('../../../chunk-B2P75NHN.js');
7
+ require('../../../chunk-MCT4RPRY.js');
8
8
  require('../../../chunk-3GQAWCBQ.js');
9
9
 
10
10
 
11
11
 
12
- exports.default = _chunk7BCSLKT3js.generator_default; exports.helmDependencyGeneratorFn = _chunk7BCSLKT3js.helmDependencyGeneratorFn;
12
+ exports.default = _chunkGWVDYIPMjs.generator_default; exports.helmDependencyGeneratorFn = _chunkGWVDYIPMjs.helmDependencyGeneratorFn;
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  generator_default,
3
3
  helmDependencyGeneratorFn
4
- } from "../../../chunk-TUDMFJIT.mjs";
5
- import "../../../chunk-LSBSNYPQ.mjs";
6
- import "../../../chunk-ZO7MGNKJ.mjs";
7
- import "../../../chunk-DZ5UCMNL.mjs";
4
+ } from "../../../chunk-EPOBUJ5U.mjs";
5
+ import "../../../chunk-6ETDUQVL.mjs";
6
+ import "../../../chunk-PMKEFUA5.mjs";
7
+ import "../../../chunk-JZ3PTTB5.mjs";
8
8
  import "../../../chunk-XUV4U54K.mjs";
9
9
  export {
10
10
  generator_default as default,
@@ -3,13 +3,13 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkGOVHOOTSjs = require('../../../chunk-GOVHOOTS.js');
6
+ var _chunk6T5V554Cjs = require('../../../chunk-6T5V554C.js');
7
7
  require('../../../chunk-IOT45LXV.js');
8
- require('../../../chunk-GDXB64KG.js');
8
+ require('../../../chunk-MCT4RPRY.js');
9
9
  require('../../../chunk-3GQAWCBQ.js');
10
10
 
11
11
 
12
12
 
13
13
 
14
14
 
15
- exports.createDependencies = _chunkGOVHOOTSjs.createDependencies; exports.createNodes = _chunkGOVHOOTSjs.createNodes; exports.description = _chunkGOVHOOTSjs.description; exports.name = _chunkGOVHOOTSjs.name;
15
+ exports.createDependencies = _chunk6T5V554Cjs.createDependencies; exports.createNodes = _chunk6T5V554Cjs.createNodes; exports.description = _chunk6T5V554Cjs.description; exports.name = _chunk6T5V554Cjs.name;