@storm-software/k8s-tools 0.23.0 → 0.23.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 +6 -0
- package/README.md +1 -1
- package/dist/{chunk-XR3B537S.mjs → chunk-65PPRXAW.mjs} +4 -4
- package/dist/{chunk-3XOZFSEV.js → chunk-6BXA3PGH.js} +3 -3
- package/dist/{chunk-T7WMSUEH.mjs → chunk-6C5CWDYY.mjs} +1 -1
- package/dist/{chunk-QZPOXP3F.js → chunk-6U6BC45C.js} +2 -2
- package/dist/{chunk-2V2RWM6P.js → chunk-7SAHBYCR.js} +14 -14
- package/dist/{chunk-3GTPNX3H.mjs → chunk-DQV7NKM7.mjs} +1 -1
- package/dist/{chunk-QQING6XX.mjs → chunk-F26OPCDG.mjs} +14 -14
- package/dist/{chunk-NZX4RKGN.mjs → chunk-IBVTMWHS.mjs} +1 -1
- package/dist/{chunk-4RCWAFYM.js → chunk-O47HD2XS.js} +5 -5
- package/dist/{chunk-IAELL2FJ.js → chunk-OABQKZJH.js} +2 -2
- package/dist/{chunk-MAU7XRWZ.js → chunk-SXNPLQHC.js} +2 -2
- package/dist/{chunk-WXP6JT2B.mjs → chunk-WWDN4BEK.mjs} +1 -1
- package/dist/executors.js +4 -4
- package/dist/executors.mjs +3 -3
- package/dist/generators.js +5 -5
- package/dist/generators.mjs +4 -4
- package/dist/index.js +7 -7
- package/dist/index.mjs +6 -6
- package/dist/src/executors/container-publish/executor.js +3 -3
- package/dist/src/executors/container-publish/executor.mjs +2 -2
- package/dist/src/executors/helm-package/executor.js +3 -3
- package/dist/src/executors/helm-package/executor.mjs +2 -2
- package/dist/src/generators/helm-chart/generator.js +4 -4
- package/dist/src/generators/helm-chart/generator.mjs +3 -3
- package/dist/src/generators/helm-dependency/generator.js +4 -4
- package/dist/src/generators/helm-dependency/generator.mjs +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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 -->
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
applyWorkspaceProjectTokens,
|
|
3
3
|
applyWorkspaceTokens
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-F26OPCDG.mjs";
|
|
5
5
|
import {
|
|
6
6
|
findWorkspaceRoot,
|
|
7
7
|
formatLogMessage,
|
|
@@ -34,8 +34,8 @@ var withRunExecutor = /* @__PURE__ */ __name((name, executorFn, executorOptions
|
|
|
34
34
|
}
|
|
35
35
|
const workspaceRoot = findWorkspaceRoot();
|
|
36
36
|
const projectRoot = context.projectsConfigurations.projects[context.projectName].root || workspaceRoot;
|
|
37
|
-
const sourceRoot = context.projectsConfigurations.projects[context.projectName].sourceRoot || workspaceRoot;
|
|
38
|
-
const projectName = context.
|
|
37
|
+
const sourceRoot = context.projectsConfigurations.projects[context.projectName].sourceRoot || projectRoot || workspaceRoot;
|
|
38
|
+
const projectName = context.projectName;
|
|
39
39
|
config.workspaceRoot = workspaceRoot;
|
|
40
40
|
writeInfo(`
|
|
41
41
|
\u26A1 Running the ${name} executor for ${projectName}
|
|
@@ -63,7 +63,7 @@ ${formatLogMessage(options)}
|
|
|
63
63
|
sourceRoot,
|
|
64
64
|
projectName,
|
|
65
65
|
config
|
|
66
|
-
},
|
|
66
|
+
}, config, context.projectsConfigurations.projects[context.projectName]), applyWorkspaceProjectTokens);
|
|
67
67
|
writeTrace(`Executor schema tokenized options \u2699\uFE0F
|
|
68
68
|
${formatLogMessage(tokenized)}
|
|
69
69
|
`, config);
|
|
@@ -1,7 +1,7 @@
|
|
|
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
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk7SAHBYCRjs = require('./chunk-7SAHBYCR.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -41,10 +41,10 @@ var withRunGenerator = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (nam
|
|
|
41
41
|
}
|
|
42
42
|
_chunk4QH2MTXKjs.writeTrace.call(void 0, `Generator schema options \u2699\uFE0F
|
|
43
43
|
${Object.keys(_nullishCoalesce(options, () => ( {}))).map((key) => ` - ${key}=${JSON.stringify(options[key])}`).join("\n")}`, config);
|
|
44
|
-
const tokenized = await
|
|
44
|
+
const tokenized = await _chunk7SAHBYCRjs.applyWorkspaceTokens.call(void 0, options, {
|
|
45
45
|
workspaceRoot: tree.root,
|
|
46
46
|
config
|
|
47
|
-
},
|
|
47
|
+
}, _chunk7SAHBYCRjs.applyWorkspaceBaseTokens);
|
|
48
48
|
if (_optionalChain([generatorOptions, 'optionalAccess', _3 => _3.hooks, 'optionalAccess', _4 => _4.preProcess])) {
|
|
49
49
|
_chunk4QH2MTXKjs.writeDebug.call(void 0, "Running the preProcess hook...", config);
|
|
50
50
|
await Promise.resolve(generatorOptions.hooks.preProcess(tokenized, config));
|
|
@@ -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
|
|
3
|
+
var _chunk6BXA3PGHjs = require('./chunk-6BXA3PGH.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunk4QH2MTXKjs = require('./chunk-4QH2MTXK.js');
|
|
@@ -49,7 +49,7 @@ async function helmChartGeneratorFn(tree, options, config) {
|
|
|
49
49
|
};
|
|
50
50
|
}
|
|
51
51
|
_chunk3GQAWCBQjs.__name.call(void 0, helmChartGeneratorFn, "helmChartGeneratorFn");
|
|
52
|
-
var generator_default =
|
|
52
|
+
var generator_default = _chunk6BXA3PGHjs.withRunGenerator.call(void 0, "Helm Chart", helmChartGeneratorFn);
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
@@ -6,51 +6,51 @@ var _chunk4QH2MTXKjs = require('./chunk-4QH2MTXK.js');
|
|
|
6
6
|
var _chunk3GQAWCBQjs = require('./chunk-3GQAWCBQ.js');
|
|
7
7
|
|
|
8
8
|
// ../config-tools/src/utilities/apply-workspace-tokens.ts
|
|
9
|
-
var applyWorkspaceBaseTokens = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (option,
|
|
9
|
+
var applyWorkspaceBaseTokens = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (option, tokenParams) => {
|
|
10
10
|
let result = option;
|
|
11
11
|
if (!result) {
|
|
12
12
|
return result;
|
|
13
13
|
}
|
|
14
|
-
if (
|
|
15
|
-
const optionKeys = Object.keys(
|
|
14
|
+
if (tokenParams) {
|
|
15
|
+
const optionKeys = Object.keys(tokenParams);
|
|
16
16
|
if (optionKeys.some((optionKey) => result.includes(`{${optionKey}}`))) {
|
|
17
17
|
for (const optionKey of optionKeys) {
|
|
18
18
|
if (result.includes(`{${optionKey}}`)) {
|
|
19
|
-
result = result.replaceAll(`{${optionKey}}`,
|
|
19
|
+
result = result.replaceAll(`{${optionKey}}`, _optionalChain([tokenParams, 'optionalAccess', _ => _[optionKey]]) || "");
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
if (
|
|
25
|
-
const configKeys = Object.keys(
|
|
24
|
+
if (tokenParams.config) {
|
|
25
|
+
const configKeys = Object.keys(tokenParams.config);
|
|
26
26
|
if (configKeys.some((configKey) => result.includes(`{${configKey}}`))) {
|
|
27
27
|
for (const configKey of configKeys) {
|
|
28
28
|
if (result.includes(`{${configKey}}`)) {
|
|
29
|
-
result = result.replaceAll(`{${configKey}}`,
|
|
29
|
+
result = result.replaceAll(`{${configKey}}`, tokenParams.config[configKey] || "");
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
if (result.includes("{workspaceRoot}")) {
|
|
35
|
-
result = result.replaceAll("{workspaceRoot}", _nullishCoalesce(_nullishCoalesce(
|
|
35
|
+
result = result.replaceAll("{workspaceRoot}", _nullishCoalesce(_nullishCoalesce(tokenParams.workspaceRoot, () => ( _optionalChain([tokenParams, 'access', _2 => _2.config, 'optionalAccess', _3 => _3.workspaceRoot]))), () => ( _chunk4QH2MTXKjs.findWorkspaceRoot.call(void 0, ))));
|
|
36
36
|
}
|
|
37
37
|
return result;
|
|
38
38
|
}, "applyWorkspaceBaseTokens");
|
|
39
|
-
var applyWorkspaceProjectTokens = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (option,
|
|
40
|
-
return applyWorkspaceBaseTokens(option,
|
|
39
|
+
var applyWorkspaceProjectTokens = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (option, tokenParams) => {
|
|
40
|
+
return applyWorkspaceBaseTokens(option, tokenParams);
|
|
41
41
|
}, "applyWorkspaceProjectTokens");
|
|
42
|
-
var applyWorkspaceTokens = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (options,
|
|
42
|
+
var applyWorkspaceTokens = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (options, tokenParams, tokenizerFn) => {
|
|
43
43
|
if (!options) {
|
|
44
44
|
return {};
|
|
45
45
|
}
|
|
46
46
|
const result = {};
|
|
47
47
|
for (const option of Object.keys(options)) {
|
|
48
48
|
if (typeof options[option] === "string") {
|
|
49
|
-
result[option] = await Promise.resolve(tokenizerFn(options[option],
|
|
49
|
+
result[option] = await Promise.resolve(tokenizerFn(options[option], tokenParams));
|
|
50
50
|
} else if (Array.isArray(options[option])) {
|
|
51
|
-
result[option] = await Promise.all(options[option].map(async (item) => typeof item === "string" ? await Promise.resolve(tokenizerFn(item,
|
|
51
|
+
result[option] = await Promise.all(options[option].map(async (item) => typeof item === "string" ? await Promise.resolve(tokenizerFn(item, tokenParams)) : item));
|
|
52
52
|
} else if (typeof options[option] === "object") {
|
|
53
|
-
result[option] = await applyWorkspaceTokens(options[option],
|
|
53
|
+
result[option] = await applyWorkspaceTokens(options[option], tokenParams, tokenizerFn);
|
|
54
54
|
} else {
|
|
55
55
|
result[option] = options[option];
|
|
56
56
|
}
|
|
@@ -6,51 +6,51 @@ import {
|
|
|
6
6
|
} from "./chunk-XUV4U54K.mjs";
|
|
7
7
|
|
|
8
8
|
// ../config-tools/src/utilities/apply-workspace-tokens.ts
|
|
9
|
-
var applyWorkspaceBaseTokens = /* @__PURE__ */ __name(async (option,
|
|
9
|
+
var applyWorkspaceBaseTokens = /* @__PURE__ */ __name(async (option, tokenParams) => {
|
|
10
10
|
let result = option;
|
|
11
11
|
if (!result) {
|
|
12
12
|
return result;
|
|
13
13
|
}
|
|
14
|
-
if (
|
|
15
|
-
const optionKeys = Object.keys(
|
|
14
|
+
if (tokenParams) {
|
|
15
|
+
const optionKeys = Object.keys(tokenParams);
|
|
16
16
|
if (optionKeys.some((optionKey) => result.includes(`{${optionKey}}`))) {
|
|
17
17
|
for (const optionKey of optionKeys) {
|
|
18
18
|
if (result.includes(`{${optionKey}}`)) {
|
|
19
|
-
result = result.replaceAll(`{${optionKey}}`,
|
|
19
|
+
result = result.replaceAll(`{${optionKey}}`, tokenParams?.[optionKey] || "");
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
if (
|
|
25
|
-
const configKeys = Object.keys(
|
|
24
|
+
if (tokenParams.config) {
|
|
25
|
+
const configKeys = Object.keys(tokenParams.config);
|
|
26
26
|
if (configKeys.some((configKey) => result.includes(`{${configKey}}`))) {
|
|
27
27
|
for (const configKey of configKeys) {
|
|
28
28
|
if (result.includes(`{${configKey}}`)) {
|
|
29
|
-
result = result.replaceAll(`{${configKey}}`,
|
|
29
|
+
result = result.replaceAll(`{${configKey}}`, tokenParams.config[configKey] || "");
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
if (result.includes("{workspaceRoot}")) {
|
|
35
|
-
result = result.replaceAll("{workspaceRoot}",
|
|
35
|
+
result = result.replaceAll("{workspaceRoot}", tokenParams.workspaceRoot ?? tokenParams.config?.workspaceRoot ?? findWorkspaceRoot());
|
|
36
36
|
}
|
|
37
37
|
return result;
|
|
38
38
|
}, "applyWorkspaceBaseTokens");
|
|
39
|
-
var applyWorkspaceProjectTokens = /* @__PURE__ */ __name((option,
|
|
40
|
-
return applyWorkspaceBaseTokens(option,
|
|
39
|
+
var applyWorkspaceProjectTokens = /* @__PURE__ */ __name((option, tokenParams) => {
|
|
40
|
+
return applyWorkspaceBaseTokens(option, tokenParams);
|
|
41
41
|
}, "applyWorkspaceProjectTokens");
|
|
42
|
-
var applyWorkspaceTokens = /* @__PURE__ */ __name(async (options,
|
|
42
|
+
var applyWorkspaceTokens = /* @__PURE__ */ __name(async (options, tokenParams, tokenizerFn) => {
|
|
43
43
|
if (!options) {
|
|
44
44
|
return {};
|
|
45
45
|
}
|
|
46
46
|
const result = {};
|
|
47
47
|
for (const option of Object.keys(options)) {
|
|
48
48
|
if (typeof options[option] === "string") {
|
|
49
|
-
result[option] = await Promise.resolve(tokenizerFn(options[option],
|
|
49
|
+
result[option] = await Promise.resolve(tokenizerFn(options[option], tokenParams));
|
|
50
50
|
} else if (Array.isArray(options[option])) {
|
|
51
|
-
result[option] = await Promise.all(options[option].map(async (item) => typeof item === "string" ? await Promise.resolve(tokenizerFn(item,
|
|
51
|
+
result[option] = await Promise.all(options[option].map(async (item) => typeof item === "string" ? await Promise.resolve(tokenizerFn(item, tokenParams)) : item));
|
|
52
52
|
} else if (typeof options[option] === "object") {
|
|
53
|
-
result[option] = await applyWorkspaceTokens(options[option],
|
|
53
|
+
result[option] = await applyWorkspaceTokens(options[option], tokenParams, tokenizerFn);
|
|
54
54
|
} else {
|
|
55
55
|
result[option] = options[option];
|
|
56
56
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk7SAHBYCRjs = require('./chunk-7SAHBYCR.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -34,8 +34,8 @@ var withRunExecutor = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (name
|
|
|
34
34
|
}
|
|
35
35
|
const workspaceRoot = _chunk4QH2MTXKjs.findWorkspaceRoot.call(void 0, );
|
|
36
36
|
const projectRoot = context.projectsConfigurations.projects[context.projectName].root || workspaceRoot;
|
|
37
|
-
const sourceRoot = context.projectsConfigurations.projects[context.projectName].sourceRoot || workspaceRoot;
|
|
38
|
-
const projectName = context.
|
|
37
|
+
const sourceRoot = context.projectsConfigurations.projects[context.projectName].sourceRoot || projectRoot || workspaceRoot;
|
|
38
|
+
const projectName = context.projectName;
|
|
39
39
|
config.workspaceRoot = workspaceRoot;
|
|
40
40
|
_chunk4QH2MTXKjs.writeInfo.call(void 0, `
|
|
41
41
|
\u26A1 Running the ${name} executor for ${projectName}
|
|
@@ -57,13 +57,13 @@ var withRunExecutor = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (name
|
|
|
57
57
|
_chunk4QH2MTXKjs.writeTrace.call(void 0, `Executor schema options \u2699\uFE0F
|
|
58
58
|
${_chunk4QH2MTXKjs.formatLogMessage.call(void 0, options)}
|
|
59
59
|
`, config);
|
|
60
|
-
const tokenized = await
|
|
60
|
+
const tokenized = await _chunk7SAHBYCRjs.applyWorkspaceTokens.call(void 0, options, _defu.defu.call(void 0, {
|
|
61
61
|
workspaceRoot,
|
|
62
62
|
projectRoot,
|
|
63
63
|
sourceRoot,
|
|
64
64
|
projectName,
|
|
65
65
|
config
|
|
66
|
-
},
|
|
66
|
+
}, config, context.projectsConfigurations.projects[context.projectName]), _chunk7SAHBYCRjs.applyWorkspaceProjectTokens);
|
|
67
67
|
_chunk4QH2MTXKjs.writeTrace.call(void 0, `Executor schema tokenized options \u2699\uFE0F
|
|
68
68
|
${_chunk4QH2MTXKjs.formatLogMessage.call(void 0, tokenized)}
|
|
69
69
|
`, config);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 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
|
|
3
|
+
var _chunk6BXA3PGHjs = require('./chunk-6BXA3PGH.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunk4QH2MTXKjs = require('./chunk-4QH2MTXK.js');
|
|
@@ -27,7 +27,7 @@ async function helmDependencyGeneratorFn(tree, options, config) {
|
|
|
27
27
|
};
|
|
28
28
|
}
|
|
29
29
|
_chunk3GQAWCBQjs.__name.call(void 0, helmDependencyGeneratorFn, "helmDependencyGeneratorFn");
|
|
30
|
-
var generator_default =
|
|
30
|
+
var generator_default = _chunk6BXA3PGHjs.withRunGenerator.call(void 0, "Helm Dependency", helmDependencyGeneratorFn);
|
|
31
31
|
function addDependencyToConfig(project, name, url) {
|
|
32
32
|
return {
|
|
33
33
|
...project,
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var _chunkIOT45LXVjs = require('./chunk-IOT45LXV.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunk7SAHBYCRjs = require('./chunk-7SAHBYCR.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -82,7 +82,7 @@ async function* publishExecutor(options, context) {
|
|
|
82
82
|
const sourceRoot = _nullishCoalesce(_optionalChain([projectConfig, 'optionalAccess', _6 => _6.sourceRoot]), () => ( workspaceRoot));
|
|
83
83
|
const projectName = _nullishCoalesce(_optionalChain([projectConfig, 'optionalAccess', _7 => _7.name]), () => ( context.projectName));
|
|
84
84
|
config.workspaceRoot = workspaceRoot;
|
|
85
|
-
const tokenized = await
|
|
85
|
+
const tokenized = await _chunk7SAHBYCRjs.applyWorkspaceTokens.call(void 0, options, {
|
|
86
86
|
config,
|
|
87
87
|
workspaceRoot,
|
|
88
88
|
projectRoot,
|
package/dist/executors.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-XO66D74Z.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkSXNPLQHCjs = require('./chunk-SXNPLQHC.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkO47HD2XSjs = require('./chunk-O47HD2XS.js');
|
|
8
8
|
require('./chunk-IOT45LXV.js');
|
|
9
|
-
require('./chunk-
|
|
9
|
+
require('./chunk-7SAHBYCR.js');
|
|
10
10
|
require('./chunk-4QH2MTXK.js');
|
|
11
11
|
require('./chunk-2GAU2GHG.js');
|
|
12
12
|
require('./chunk-LFNGKV6F.js');
|
|
@@ -15,4 +15,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.getRegistryVersion =
|
|
18
|
+
exports.getRegistryVersion = _chunkSXNPLQHCjs.getRegistryVersion; exports.serveExecutor = _chunkO47HD2XSjs.serveExecutor;
|
package/dist/executors.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import "./chunk-YSCEY447.mjs";
|
|
2
2
|
import {
|
|
3
3
|
getRegistryVersion
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-WWDN4BEK.mjs";
|
|
5
5
|
import {
|
|
6
6
|
serveExecutor
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-65PPRXAW.mjs";
|
|
8
8
|
import "./chunk-RVFKH45R.mjs";
|
|
9
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-F26OPCDG.mjs";
|
|
10
10
|
import "./chunk-EW7TITVO.mjs";
|
|
11
11
|
import "./chunk-6V45YKVB.mjs";
|
|
12
12
|
import "./chunk-UDLI3L7V.mjs";
|
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 _chunk6U6BC45Cjs = require('./chunk-6U6BC45C.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
8
|
-
require('./chunk-
|
|
9
|
-
require('./chunk-
|
|
7
|
+
var _chunkOABQKZJHjs = require('./chunk-OABQKZJH.js');
|
|
8
|
+
require('./chunk-6BXA3PGH.js');
|
|
9
|
+
require('./chunk-7SAHBYCR.js');
|
|
10
10
|
require('./chunk-4QH2MTXK.js');
|
|
11
11
|
require('./chunk-3GQAWCBQ.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
exports.helmChartGeneratorFn =
|
|
15
|
+
exports.helmChartGeneratorFn = _chunk6U6BC45Cjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkOABQKZJHjs.helmDependencyGeneratorFn;
|
package/dist/generators.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import "./chunk-3J7KBHMJ.mjs";
|
|
2
2
|
import {
|
|
3
3
|
helmChartGeneratorFn
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-6C5CWDYY.mjs";
|
|
5
5
|
import {
|
|
6
6
|
helmDependencyGeneratorFn
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-DQV7NKM7.mjs";
|
|
8
|
+
import "./chunk-IBVTMWHS.mjs";
|
|
9
|
+
import "./chunk-F26OPCDG.mjs";
|
|
10
10
|
import "./chunk-EW7TITVO.mjs";
|
|
11
11
|
import "./chunk-XUV4U54K.mjs";
|
|
12
12
|
export {
|
package/dist/index.js
CHANGED
|
@@ -7,20 +7,20 @@ var _chunkILJQ7PUYjs = require('./chunk-ILJQ7PUY.js');
|
|
|
7
7
|
require('./chunk-XO66D74Z.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkSXNPLQHCjs = require('./chunk-SXNPLQHC.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunkO47HD2XSjs = require('./chunk-O47HD2XS.js');
|
|
14
14
|
require('./chunk-IOT45LXV.js');
|
|
15
15
|
require('./chunk-DHBG5ASJ.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunk6U6BC45Cjs = require('./chunk-6U6BC45C.js');
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
var
|
|
22
|
-
require('./chunk-
|
|
23
|
-
require('./chunk-
|
|
21
|
+
var _chunkOABQKZJHjs = require('./chunk-OABQKZJH.js');
|
|
22
|
+
require('./chunk-6BXA3PGH.js');
|
|
23
|
+
require('./chunk-7SAHBYCR.js');
|
|
24
24
|
require('./chunk-4QH2MTXK.js');
|
|
25
25
|
require('./chunk-U76ID4TS.js');
|
|
26
26
|
|
|
@@ -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 = _chunkILJQ7PUYjs.createDependencies; exports.createHelmClient = _chunk2GAU2GHGjs.createHelmClient; exports.createNodes = _chunkILJQ7PUYjs.createNodes; exports.description = _chunkILJQ7PUYjs.description; exports.ensureInitialized = _chunkEAQFLLRBjs.ensureInitialized; exports.getRegistryVersion =
|
|
56
|
+
exports.AbstractHelmClient = _chunkLFNGKV6Fjs.AbstractHelmClient; exports.HelmClient = _chunk2GAU2GHGjs.HelmClient; exports.addToPrettierIgnore = _chunkT5WNZJODjs.addToPrettierIgnore; exports.createDependencies = _chunkILJQ7PUYjs.createDependencies; exports.createHelmClient = _chunk2GAU2GHGjs.createHelmClient; exports.createNodes = _chunkILJQ7PUYjs.createNodes; exports.description = _chunkILJQ7PUYjs.description; exports.ensureInitialized = _chunkEAQFLLRBjs.ensureInitialized; exports.getRegistryVersion = _chunkSXNPLQHCjs.getRegistryVersion; exports.helmChartGeneratorFn = _chunk6U6BC45Cjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkOABQKZJHjs.helmDependencyGeneratorFn; exports.name = _chunkILJQ7PUYjs.name; exports.resolveUserExistingPrettierConfig = _chunkT5WNZJODjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunkO47HD2XSjs.serveExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -7,20 +7,20 @@ import {
|
|
|
7
7
|
import "./chunk-YSCEY447.mjs";
|
|
8
8
|
import {
|
|
9
9
|
getRegistryVersion
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-WWDN4BEK.mjs";
|
|
11
11
|
import {
|
|
12
12
|
serveExecutor
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-65PPRXAW.mjs";
|
|
14
14
|
import "./chunk-RVFKH45R.mjs";
|
|
15
15
|
import "./chunk-3J7KBHMJ.mjs";
|
|
16
16
|
import {
|
|
17
17
|
helmChartGeneratorFn
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-6C5CWDYY.mjs";
|
|
19
19
|
import {
|
|
20
20
|
helmDependencyGeneratorFn
|
|
21
|
-
} from "./chunk-
|
|
22
|
-
import "./chunk-
|
|
23
|
-
import "./chunk-
|
|
21
|
+
} from "./chunk-DQV7NKM7.mjs";
|
|
22
|
+
import "./chunk-IBVTMWHS.mjs";
|
|
23
|
+
import "./chunk-F26OPCDG.mjs";
|
|
24
24
|
import "./chunk-EW7TITVO.mjs";
|
|
25
25
|
import "./chunk-WWU25UQ4.mjs";
|
|
26
26
|
import {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkSXNPLQHCjs = require('../../../chunk-SXNPLQHC.js');
|
|
5
5
|
require('../../../chunk-IOT45LXV.js');
|
|
6
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-7SAHBYCR.js');
|
|
7
7
|
require('../../../chunk-4QH2MTXK.js');
|
|
8
8
|
require('../../../chunk-3GQAWCBQ.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkSXNPLQHCjs.publishExecutor; exports.getRegistryVersion = _chunkSXNPLQHCjs.getRegistryVersion;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getRegistryVersion,
|
|
3
3
|
publishExecutor
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-WWDN4BEK.mjs";
|
|
5
5
|
import "../../../chunk-RVFKH45R.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-F26OPCDG.mjs";
|
|
7
7
|
import "../../../chunk-EW7TITVO.mjs";
|
|
8
8
|
import "../../../chunk-XUV4U54K.mjs";
|
|
9
9
|
export {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../../chunk-
|
|
4
|
+
var _chunkO47HD2XSjs = require('../../../chunk-O47HD2XS.js');
|
|
5
|
+
require('../../../chunk-7SAHBYCR.js');
|
|
6
6
|
require('../../../chunk-4QH2MTXK.js');
|
|
7
7
|
require('../../../chunk-2GAU2GHG.js');
|
|
8
8
|
require('../../../chunk-LFNGKV6F.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-3GQAWCBQ.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.default =
|
|
14
|
+
exports.default = _chunkO47HD2XSjs.executor_default; exports.serveExecutor = _chunkO47HD2XSjs.serveExecutor;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default,
|
|
3
3
|
serveExecutor
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-65PPRXAW.mjs";
|
|
5
|
+
import "../../../chunk-F26OPCDG.mjs";
|
|
6
6
|
import "../../../chunk-EW7TITVO.mjs";
|
|
7
7
|
import "../../../chunk-6V45YKVB.mjs";
|
|
8
8
|
import "../../../chunk-UDLI3L7V.mjs";
|
|
@@ -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-
|
|
4
|
+
var _chunk6U6BC45Cjs = require('../../../chunk-6U6BC45C.js');
|
|
5
|
+
require('../../../chunk-6BXA3PGH.js');
|
|
6
|
+
require('../../../chunk-7SAHBYCR.js');
|
|
7
7
|
require('../../../chunk-4QH2MTXK.js');
|
|
8
8
|
require('../../../chunk-3GQAWCBQ.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunk6U6BC45Cjs.generator_default; exports.helmChartGeneratorFn = _chunk6U6BC45Cjs.helmChartGeneratorFn;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
helmChartGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-6C5CWDYY.mjs";
|
|
5
|
+
import "../../../chunk-IBVTMWHS.mjs";
|
|
6
|
+
import "../../../chunk-F26OPCDG.mjs";
|
|
7
7
|
import "../../../chunk-EW7TITVO.mjs";
|
|
8
8
|
import "../../../chunk-XUV4U54K.mjs";
|
|
9
9
|
export {
|
|
@@ -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-
|
|
4
|
+
var _chunkOABQKZJHjs = require('../../../chunk-OABQKZJH.js');
|
|
5
|
+
require('../../../chunk-6BXA3PGH.js');
|
|
6
|
+
require('../../../chunk-7SAHBYCR.js');
|
|
7
7
|
require('../../../chunk-4QH2MTXK.js');
|
|
8
8
|
require('../../../chunk-3GQAWCBQ.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkOABQKZJHjs.generator_default; exports.helmDependencyGeneratorFn = _chunkOABQKZJHjs.helmDependencyGeneratorFn;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
helmDependencyGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-DQV7NKM7.mjs";
|
|
5
|
+
import "../../../chunk-IBVTMWHS.mjs";
|
|
6
|
+
import "../../../chunk-F26OPCDG.mjs";
|
|
7
7
|
import "../../../chunk-EW7TITVO.mjs";
|
|
8
8
|
import "../../../chunk-XUV4U54K.mjs";
|
|
9
9
|
export {
|