@storm-software/k8s-tools 0.42.82 → 0.42.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/{chunk-JWWVDXXA.js → chunk-5KOGMQTW.js} +2 -2
- package/dist/{chunk-WUI64UM3.mjs → chunk-7R63AGBK.mjs} +1 -1
- package/dist/{chunk-R5XTR64Y.js → chunk-BAP6PTS2.js} +4 -4
- package/dist/{chunk-GQHL2X2U.mjs → chunk-C4ZGS3L3.mjs} +1 -1
- package/dist/{chunk-THSQOTVY.mjs → chunk-GJQHODNI.mjs} +2 -2
- package/dist/{chunk-6U6QCDDI.js → chunk-HDXZYG3N.js} +3 -3
- package/dist/{chunk-AVT6D33I.mjs → chunk-HXMLPGRB.mjs} +8 -4
- package/dist/{chunk-HYI5ZGH3.js → chunk-IBAKQ6JT.js} +4 -4
- package/dist/{chunk-JEJFWZGL.mjs → chunk-LWRIUXY4.mjs} +2 -2
- package/dist/{chunk-Y3TX76XG.mjs → chunk-NAS5PXQT.mjs} +7 -3
- package/dist/{chunk-6EZ7L5LJ.js → chunk-PJSA4K3H.js} +48 -17
- package/dist/{chunk-POMLH52H.js → chunk-Q7ATSVB3.js} +24 -20
- package/dist/{chunk-VOCKSQJV.js → chunk-R2KZRP7B.js} +28 -24
- package/dist/{chunk-TEPKZKZN.mjs → chunk-TOP3LZ4E.mjs} +31 -0
- package/dist/{chunk-WOUPAI3R.mjs → chunk-U6GM7OXA.mjs} +2 -2
- package/dist/{chunk-R7SGBN76.js → chunk-XRJWCLHZ.js} +6 -6
- package/dist/executors.js +5 -5
- package/dist/executors.mjs +4 -4
- package/dist/generators.js +6 -6
- package/dist/generators.mjs +5 -5
- package/dist/index.js +9 -9
- package/dist/index.mjs +8 -8
- 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.js +4 -4
- package/dist/src/executors/helm-package/executor.mjs +3 -3
- 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.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 +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - K8s Tools
|
|
4
4
|
|
|
5
|
+
## [0.42.82](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.42.82) (01/14/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **workspace-tools** to **v1.294.26**
|
|
10
|
+
- Updated **config-tools** to **v1.188.80**
|
|
11
|
+
|
|
5
12
|
## [0.42.81](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.42.81) (01/14/2026)
|
|
6
13
|
|
|
7
14
|
### Updated Dependencies
|
|
@@ -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 _chunkPJSA4K3Hjs = require('./chunk-PJSA4K3H.js');
|
|
4
4
|
|
|
5
5
|
// ../config-tools/src/utilities/apply-workspace-tokens.ts
|
|
6
6
|
var applyWorkspaceBaseTokens = async (option, tokenParams) => {
|
|
@@ -37,7 +37,7 @@ var applyWorkspaceBaseTokens = async (option, tokenParams) => {
|
|
|
37
37
|
if (result.includes("{workspaceRoot}")) {
|
|
38
38
|
result = result.replaceAll(
|
|
39
39
|
"{workspaceRoot}",
|
|
40
|
-
_nullishCoalesce(_nullishCoalesce(tokenParams.workspaceRoot, () => ( _optionalChain([tokenParams, 'access', _2 => _2.config, 'optionalAccess', _3 => _3.workspaceRoot]))), () => (
|
|
40
|
+
_nullishCoalesce(_nullishCoalesce(tokenParams.workspaceRoot, () => ( _optionalChain([tokenParams, 'access', _2 => _2.config, 'optionalAccess', _3 => _3.workspaceRoot]))), () => ( _chunkPJSA4K3Hjs.findWorkspaceRoot.call(void 0, )))
|
|
41
41
|
);
|
|
42
42
|
}
|
|
43
43
|
return result;
|
|
@@ -1,9 +1,9 @@
|
|
|
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
|
-
var
|
|
3
|
+
var _chunkQ7ATSVB3js = require('./chunk-Q7ATSVB3.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkPJSA4K3Hjs = require('./chunk-PJSA4K3H.js');
|
|
7
7
|
|
|
8
8
|
// src/generators/helm-dependency/generator.ts
|
|
9
9
|
|
|
@@ -13,7 +13,7 @@ var _chunk6EZ7L5LJjs = require('./chunk-6EZ7L5LJ.js');
|
|
|
13
13
|
var _devkit = require('@nx/devkit');
|
|
14
14
|
var _yaml = require('yaml');
|
|
15
15
|
async function helmDependencyGeneratorFn(tree, options, config) {
|
|
16
|
-
|
|
16
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "\u{1F4DD} Preparing to add Helm Dependency", config);
|
|
17
17
|
const project = _devkit.readProjectConfiguration.call(void 0, tree, options.project);
|
|
18
18
|
if (!_optionalChain([project, 'access', _ => _.targets, 'optionalAccess', _2 => _2["helm-package"]])) {
|
|
19
19
|
throw new Error(
|
|
@@ -39,7 +39,7 @@ async function helmDependencyGeneratorFn(tree, options, config) {
|
|
|
39
39
|
success: true
|
|
40
40
|
};
|
|
41
41
|
}
|
|
42
|
-
var generator_default =
|
|
42
|
+
var generator_default = _chunkQ7ATSVB3js.withRunGenerator.call(void 0,
|
|
43
43
|
"Helm Dependency",
|
|
44
44
|
helmDependencyGeneratorFn
|
|
45
45
|
);
|
|
@@ -8,7 +8,7 @@ var _chunkKBSSJUPWjs = require('./chunk-KBSSJUPW.js');
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunkPJSA4K3Hjs = require('./chunk-PJSA4K3H.js');
|
|
12
12
|
|
|
13
13
|
// src/plugins/docker/_dockerfile.ts
|
|
14
14
|
|
|
@@ -42,8 +42,8 @@ var createNodesV2 = [
|
|
|
42
42
|
if (_optionalChain([projectJson, 'optionalAccess', _ => _.name])) {
|
|
43
43
|
return {};
|
|
44
44
|
}
|
|
45
|
-
const workspaceRoot =
|
|
46
|
-
const config = await
|
|
45
|
+
const workspaceRoot = _chunkPJSA4K3Hjs.findWorkspaceRoot.call(void 0, );
|
|
46
|
+
const config = await _chunkPJSA4K3Hjs.getConfig.call(void 0, workspaceRoot);
|
|
47
47
|
Object.keys(projectJson).forEach((key) => {
|
|
48
48
|
if (!project[key]) {
|
|
49
49
|
project[key] = projectJson[key];
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
applyWorkspaceBaseTokens,
|
|
3
3
|
applyWorkspaceTokens
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-C4ZGS3L3.mjs";
|
|
5
5
|
import {
|
|
6
|
+
brandIcon,
|
|
6
7
|
findWorkspaceRoot,
|
|
7
8
|
getConfig,
|
|
8
9
|
getStopwatch,
|
|
@@ -12,7 +13,7 @@ import {
|
|
|
12
13
|
writeInfo,
|
|
13
14
|
writeSuccess,
|
|
14
15
|
writeTrace
|
|
15
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-TOP3LZ4E.mjs";
|
|
16
17
|
|
|
17
18
|
// ../workspace-tools/src/base/base-generator.ts
|
|
18
19
|
var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
@@ -22,9 +23,12 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
22
23
|
let options = _options;
|
|
23
24
|
let config;
|
|
24
25
|
try {
|
|
25
|
-
writeInfo(
|
|
26
|
+
writeInfo(
|
|
27
|
+
`${brandIcon(config)} Running the ${name} generator...
|
|
26
28
|
|
|
27
|
-
`,
|
|
29
|
+
`,
|
|
30
|
+
config
|
|
31
|
+
);
|
|
28
32
|
const workspaceRoot = findWorkspaceRoot();
|
|
29
33
|
if (!generatorOptions.skipReadingConfig) {
|
|
30
34
|
writeDebug(
|
|
@@ -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
|
|
3
|
+
var _chunkQ7ATSVB3js = require('./chunk-Q7ATSVB3.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkPJSA4K3Hjs = require('./chunk-PJSA4K3H.js');
|
|
7
7
|
|
|
8
8
|
// src/generators/helm-chart/generator.ts
|
|
9
9
|
|
|
@@ -14,7 +14,7 @@ var _chunk6EZ7L5LJjs = require('./chunk-6EZ7L5LJ.js');
|
|
|
14
14
|
var _devkit = require('@nx/devkit');
|
|
15
15
|
var _path = require('path');
|
|
16
16
|
async function helmChartGeneratorFn(tree, options, config) {
|
|
17
|
-
|
|
17
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "\u{1F4DD} Preparing to write Helm Chart", config);
|
|
18
18
|
const project = _devkit.readProjectConfiguration.call(void 0, tree, options.project);
|
|
19
19
|
if (_optionalChain([project, 'access', _ => _.targets, 'optionalAccess', _2 => _2["helm-package"]])) {
|
|
20
20
|
throw new Error(
|
|
@@ -55,7 +55,7 @@ async function helmChartGeneratorFn(tree, options, config) {
|
|
|
55
55
|
success: true
|
|
56
56
|
};
|
|
57
57
|
}
|
|
58
|
-
var generator_default =
|
|
58
|
+
var generator_default = _chunkQ7ATSVB3js.withRunGenerator.call(void 0,
|
|
59
59
|
"Helm Chart",
|
|
60
60
|
helmChartGeneratorFn
|
|
61
61
|
);
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
applyWorkspaceProjectTokens,
|
|
3
3
|
applyWorkspaceTokens
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-C4ZGS3L3.mjs";
|
|
5
5
|
import {
|
|
6
|
+
brandIcon,
|
|
6
7
|
findWorkspaceRoot,
|
|
7
8
|
formatLogMessage,
|
|
8
9
|
getConfig,
|
|
@@ -14,7 +15,7 @@ import {
|
|
|
14
15
|
writeSuccess,
|
|
15
16
|
writeTrace,
|
|
16
17
|
writeWarning
|
|
17
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-TOP3LZ4E.mjs";
|
|
18
19
|
import {
|
|
19
20
|
createHelmClient
|
|
20
21
|
} from "./chunk-HK6QKQTS.mjs";
|
|
@@ -36,7 +37,10 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
36
37
|
const sourceRoot = context.projectsConfigurations.projects[context.projectName].sourceRoot || projectRoot || workspaceRoot;
|
|
37
38
|
const projectName = context.projectName;
|
|
38
39
|
config.workspaceRoot = workspaceRoot;
|
|
39
|
-
writeInfo(
|
|
40
|
+
writeInfo(
|
|
41
|
+
`${brandIcon(config)} Running the ${name} executor for ${projectName} `,
|
|
42
|
+
config
|
|
43
|
+
);
|
|
40
44
|
if (!executorOptions.skipReadingConfig) {
|
|
41
45
|
writeTrace(
|
|
42
46
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
@@ -62,6 +62,35 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
62
62
|
gradient: ["#1fb2a6", "#db2777", "#818cf8"]
|
|
63
63
|
}
|
|
64
64
|
};
|
|
65
|
+
function getColors(config) {
|
|
66
|
+
if (!_optionalChain([config, 'optionalAccess', _2 => _2.colors]) || typeof config.colors !== "object" || !config.colors["dark"] && (!config.colors["base"] || typeof config.colors !== "object" || !_optionalChain([config, 'access', _3 => _3.colors, 'access', _4 => _4["base"], 'optionalAccess', _5 => _5["dark"]]))) {
|
|
67
|
+
return DEFAULT_COLOR_CONFIG;
|
|
68
|
+
}
|
|
69
|
+
if (config.colors["base"]) {
|
|
70
|
+
if (typeof config.colors["base"]["dark"] === "object") {
|
|
71
|
+
return config.colors["base"]["dark"];
|
|
72
|
+
} else if (config.colors["base"]["dark"] === "string") {
|
|
73
|
+
return config.colors["base"];
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
if (typeof config.colors["dark"] === "object") {
|
|
77
|
+
return config.colors["dark"];
|
|
78
|
+
}
|
|
79
|
+
return _nullishCoalesce(config.colors, () => ( DEFAULT_COLOR_CONFIG));
|
|
80
|
+
}
|
|
81
|
+
function getColor(key, config) {
|
|
82
|
+
const colors = getColors(config);
|
|
83
|
+
const result = (typeof colors["dark"] === "object" ? colors["dark"][key] : colors[key]) || DEFAULT_COLOR_CONFIG["dark"][key] || DEFAULT_COLOR_CONFIG[key];
|
|
84
|
+
if (result) {
|
|
85
|
+
return result;
|
|
86
|
+
}
|
|
87
|
+
if (key === "link" || key === "debug") {
|
|
88
|
+
return getColor("info", config);
|
|
89
|
+
} else if (key === "fatal") {
|
|
90
|
+
return getColor("danger", config);
|
|
91
|
+
}
|
|
92
|
+
return getColor("brand", config);
|
|
93
|
+
}
|
|
65
94
|
|
|
66
95
|
// ../config-tools/src/logger/chalk.ts
|
|
67
96
|
var _chalk2 = require('chalk'); var _chalk3 = _interopRequireDefault(_chalk2);
|
|
@@ -90,7 +119,7 @@ var chalkDefault = {
|
|
|
90
119
|
};
|
|
91
120
|
var getChalk = () => {
|
|
92
121
|
let _chalk = _chalk3.default;
|
|
93
|
-
if (!_optionalChain([_chalk, 'optionalAccess',
|
|
122
|
+
if (!_optionalChain([_chalk, 'optionalAccess', _6 => _6.hex]) || !_optionalChain([_chalk, 'optionalAccess', _7 => _7.bold, 'optionalAccess', _8 => _8.hex]) || !_optionalChain([_chalk, 'optionalAccess', _9 => _9.bgHex]) || !_optionalChain([_chalk, 'optionalAccess', _10 => _10.whiteBright]) || !_optionalChain([_chalk, 'optionalAccess', _11 => _11.white])) {
|
|
94
123
|
_chalk = chalkDefault;
|
|
95
124
|
}
|
|
96
125
|
return _chalk;
|
|
@@ -178,7 +207,7 @@ var getLogLevelLabel = (logLevel = LogLevel.INFO) => {
|
|
|
178
207
|
|
|
179
208
|
// ../config-tools/src/logger/console.ts
|
|
180
209
|
var getLogFn = (logLevel = LogLevel.INFO, config = {}, _chalk = getChalk()) => {
|
|
181
|
-
const colors = !_optionalChain([config, 'access',
|
|
210
|
+
const colors = !_optionalChain([config, 'access', _12 => _12.colors, 'optionalAccess', _13 => _13.dark]) && !_optionalChain([config, 'access', _14 => _14.colors, 'optionalAccess', _15 => _15["base"]]) && !_optionalChain([config, 'access', _16 => _16.colors, 'optionalAccess', _17 => _17["base"], 'optionalAccess', _18 => _18.dark]) ? DEFAULT_COLOR_CONFIG : _optionalChain([config, 'access', _19 => _19.colors, 'optionalAccess', _20 => _20.dark]) && typeof config.colors.dark === "string" ? config.colors : _optionalChain([config, 'access', _21 => _21.colors, 'optionalAccess', _22 => _22["base"], 'optionalAccess', _23 => _23.dark]) && typeof config.colors["base"].dark === "string" ? config.colors["base"].dark : _optionalChain([config, 'access', _24 => _24.colors, 'optionalAccess', _25 => _25["base"]]) ? _optionalChain([config, 'access', _26 => _26.colors, 'optionalAccess', _27 => _27["base"]]) : DEFAULT_COLOR_CONFIG;
|
|
182
211
|
const configLogLevel = config.logLevel || process.env.STORM_LOG_LEVEL || LogLevelLabel.INFO;
|
|
183
212
|
if (logLevel > getLogLevel(configLogLevel) || logLevel <= LogLevel.SILENT || getLogLevel(configLogLevel) <= LogLevel.SILENT) {
|
|
184
213
|
return (_) => {
|
|
@@ -323,11 +352,12 @@ ${Object.keys(message).filter((key) => !skip.includes(key)).map(
|
|
|
323
352
|
};
|
|
324
353
|
var _isFunction = (value) => {
|
|
325
354
|
try {
|
|
326
|
-
return value instanceof Function || typeof value === "function" || !!(_optionalChain([value, 'optionalAccess',
|
|
355
|
+
return value instanceof Function || typeof value === "function" || !!(_optionalChain([value, 'optionalAccess', _28 => _28.constructor]) && _optionalChain([value, 'optionalAccess', _29 => _29.call]) && _optionalChain([value, 'optionalAccess', _30 => _30.apply]));
|
|
327
356
|
} catch (e) {
|
|
328
357
|
return false;
|
|
329
358
|
}
|
|
330
359
|
};
|
|
360
|
+
var brandIcon = (config = {}, _chalk = getChalk()) => _chalk.hex(getColor("brand", config))("\u{1F5F2}");
|
|
331
361
|
|
|
332
362
|
// ../config-tools/src/utilities/correct-paths.ts
|
|
333
363
|
var _DRIVE_LETTER_START_RE = /^[A-Za-z]:\//;
|
|
@@ -345,7 +375,7 @@ var correctPaths = function(path) {
|
|
|
345
375
|
return ".";
|
|
346
376
|
}
|
|
347
377
|
path = normalizeWindowsPath(path);
|
|
348
|
-
const isUNCPath = _optionalChain([path, 'optionalAccess',
|
|
378
|
+
const isUNCPath = _optionalChain([path, 'optionalAccess', _31 => _31.match, 'call', _32 => _32(_UNC_REGEX)]);
|
|
349
379
|
const isPathAbsolute = isAbsolute(path);
|
|
350
380
|
const trailingSeparator = path[path.length - 1] === "/";
|
|
351
381
|
path = normalizeString(path, !isPathAbsolute);
|
|
@@ -1232,7 +1262,7 @@ function applyDefaultConfig(config) {
|
|
|
1232
1262
|
if (!config.contact) {
|
|
1233
1263
|
config.contact = `${config.homepage}/contact`;
|
|
1234
1264
|
}
|
|
1235
|
-
if (!_optionalChain([config, 'access',
|
|
1265
|
+
if (!_optionalChain([config, 'access', _33 => _33.error, 'optionalAccess', _34 => _34.codesFile]) || !_optionalChain([config, 'optionalAccess', _35 => _35.error, 'optionalAccess', _36 => _36.url])) {
|
|
1236
1266
|
config.error ??= { codesFile: STORM_DEFAULT_ERROR_CODES_FILE };
|
|
1237
1267
|
if (config.homepage) {
|
|
1238
1268
|
config.error.url ??= `${config.homepage}/errors`;
|
|
@@ -1250,7 +1280,7 @@ var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
|
1250
1280
|
cwd: workspacePath,
|
|
1251
1281
|
packageJson: true,
|
|
1252
1282
|
name: fileName,
|
|
1253
|
-
envName: _optionalChain([fileName, 'optionalAccess',
|
|
1283
|
+
envName: _optionalChain([fileName, 'optionalAccess', _37 => _37.toUpperCase, 'call', _38 => _38()]),
|
|
1254
1284
|
jitiOptions: {
|
|
1255
1285
|
debug: false,
|
|
1256
1286
|
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(
|
|
@@ -1264,7 +1294,7 @@ var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
|
1264
1294
|
cwd: workspacePath,
|
|
1265
1295
|
packageJson: true,
|
|
1266
1296
|
name: fileName,
|
|
1267
|
-
envName: _optionalChain([fileName, 'optionalAccess',
|
|
1297
|
+
envName: _optionalChain([fileName, 'optionalAccess', _39 => _39.toUpperCase, 'call', _40 => _40()]),
|
|
1268
1298
|
jitiOptions: {
|
|
1269
1299
|
debug: false,
|
|
1270
1300
|
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(
|
|
@@ -1298,7 +1328,7 @@ var getConfigFile = async (filePath, additionalFileNames = []) => {
|
|
|
1298
1328
|
)
|
|
1299
1329
|
);
|
|
1300
1330
|
for (const result2 of results) {
|
|
1301
|
-
if (_optionalChain([result2, 'optionalAccess',
|
|
1331
|
+
if (_optionalChain([result2, 'optionalAccess', _41 => _41.config]) && _optionalChain([result2, 'optionalAccess', _42 => _42.configFile]) && Object.keys(result2.config).length > 0) {
|
|
1302
1332
|
if (!config.skipConfigLogging && !result2.config.skipConfigLogging) {
|
|
1303
1333
|
writeTrace(
|
|
1304
1334
|
`Found alternative configuration file "${result2.configFile.includes(`${workspacePath}/`) ? result2.configFile.replace(`${workspacePath}/`, "") : result2.configFile}" at "${workspacePath}"`,
|
|
@@ -1536,16 +1566,16 @@ var getBaseThemeColorsEnv = (prefix) => {
|
|
|
1536
1566
|
var setExtensionEnv = (extensionName, extension) => {
|
|
1537
1567
|
for (const key of Object.keys(_nullishCoalesce(extension, () => ( {})))) {
|
|
1538
1568
|
if (extension[key]) {
|
|
1539
|
-
const result = _nullishCoalesce(_optionalChain([key, 'optionalAccess',
|
|
1569
|
+
const result = _nullishCoalesce(_optionalChain([key, 'optionalAccess', _43 => _43.replace, 'call', _44 => _44(
|
|
1540
1570
|
/([A-Z])+/g,
|
|
1541
|
-
(input) => input ? _optionalChain([input, 'access',
|
|
1542
|
-
), 'access',
|
|
1571
|
+
(input) => input ? _optionalChain([input, 'access', _45 => _45[0], 'optionalAccess', _46 => _46.toUpperCase, 'call', _47 => _47()]) + input.slice(1) : ""
|
|
1572
|
+
), 'access', _48 => _48.split, 'call', _49 => _49(/(?=[A-Z])|[.\-\s_]/), 'access', _50 => _50.map, 'call', _51 => _51((x) => x.toLowerCase())]), () => ( []));
|
|
1543
1573
|
let extensionKey;
|
|
1544
1574
|
if (result.length === 0) {
|
|
1545
1575
|
return;
|
|
1546
1576
|
}
|
|
1547
1577
|
if (result.length === 1) {
|
|
1548
|
-
extensionKey = _nullishCoalesce(_optionalChain([result, 'access',
|
|
1578
|
+
extensionKey = _nullishCoalesce(_optionalChain([result, 'access', _52 => _52[0], 'optionalAccess', _53 => _53.toUpperCase, 'call', _54 => _54()]), () => ( ""));
|
|
1549
1579
|
} else {
|
|
1550
1580
|
extensionKey = result.reduce((ret, part) => {
|
|
1551
1581
|
return `${ret}_${part.toLowerCase()}`;
|
|
@@ -1733,7 +1763,7 @@ var setConfigEnv = (config) => {
|
|
|
1733
1763
|
process.env.NODE_ENV = config.mode;
|
|
1734
1764
|
process.env.ENVIRONMENT = config.mode;
|
|
1735
1765
|
}
|
|
1736
|
-
if (_optionalChain([config, 'access',
|
|
1766
|
+
if (_optionalChain([config, 'access', _55 => _55.colors, 'optionalAccess', _56 => _56.base, 'optionalAccess', _57 => _57.light]) || _optionalChain([config, 'access', _58 => _58.colors, 'optionalAccess', _59 => _59.base, 'optionalAccess', _60 => _60.dark])) {
|
|
1737
1767
|
for (const key of Object.keys(config.colors)) {
|
|
1738
1768
|
setThemeColorsEnv(`${prefix}COLOR_${key}_`, config.colors[key]);
|
|
1739
1769
|
}
|
|
@@ -1794,7 +1824,7 @@ var setConfigEnv = (config) => {
|
|
|
1794
1824
|
}
|
|
1795
1825
|
};
|
|
1796
1826
|
var setThemeColorsEnv = (prefix, config) => {
|
|
1797
|
-
return _optionalChain([config, 'optionalAccess',
|
|
1827
|
+
return _optionalChain([config, 'optionalAccess', _61 => _61.light, 'optionalAccess', _62 => _62.brand]) || _optionalChain([config, 'optionalAccess', _63 => _63.dark, 'optionalAccess', _64 => _64.brand]) ? setMultiThemeColorsEnv(prefix, config) : setSingleThemeColorsEnv(prefix, config);
|
|
1798
1828
|
};
|
|
1799
1829
|
var setSingleThemeColorsEnv = (prefix, config) => {
|
|
1800
1830
|
if (config.dark) {
|
|
@@ -1912,7 +1942,7 @@ var _extension_cache = /* @__PURE__ */ new WeakMap();
|
|
|
1912
1942
|
var _static_cache = void 0;
|
|
1913
1943
|
var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, skipLogs = false, useDefault = true) => {
|
|
1914
1944
|
let result;
|
|
1915
|
-
if (!_optionalChain([_static_cache, 'optionalAccess',
|
|
1945
|
+
if (!_optionalChain([_static_cache, 'optionalAccess', _65 => _65.data]) || !_optionalChain([_static_cache, 'optionalAccess', _66 => _66.timestamp]) || _static_cache.timestamp < Date.now() - 8e3) {
|
|
1916
1946
|
let _workspaceRoot = workspaceRoot;
|
|
1917
1947
|
if (!_workspaceRoot) {
|
|
1918
1948
|
_workspaceRoot = findWorkspaceRoot();
|
|
@@ -1946,7 +1976,7 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
|
|
|
1946
1976
|
result.workspaceRoot ??= _workspaceRoot;
|
|
1947
1977
|
} catch (error) {
|
|
1948
1978
|
throw new Error(
|
|
1949
|
-
`Failed to parse Storm Workspace configuration${_optionalChain([error, 'optionalAccess',
|
|
1979
|
+
`Failed to parse Storm Workspace configuration${_optionalChain([error, 'optionalAccess', _67 => _67.message]) ? `: ${error.message}` : ""}
|
|
1950
1980
|
|
|
1951
1981
|
Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${formatLogMessage(
|
|
1952
1982
|
configInput
|
|
@@ -2019,4 +2049,5 @@ function getConfig(workspaceRoot, skipLogs = false) {
|
|
|
2019
2049
|
|
|
2020
2050
|
|
|
2021
2051
|
|
|
2022
|
-
|
|
2052
|
+
|
|
2053
|
+
exports.writeFatal = writeFatal; exports.writeError = writeError; exports.writeWarning = writeWarning; exports.writeInfo = writeInfo; exports.writeSuccess = writeSuccess; exports.writeDebug = writeDebug; exports.writeTrace = writeTrace; exports.getStopwatch = getStopwatch; exports.formatLogMessage = formatLogMessage; exports.brandIcon = brandIcon; exports.findWorkspaceRoot = findWorkspaceRoot; exports.getConfig = getConfig;
|
|
@@ -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 _chunk5KOGMQTWjs = require('./chunk-5KOGMQTW.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -12,51 +12,55 @@ var _chunkJWWVDXXAjs = require('./chunk-JWWVDXXA.js');
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
|
|
16
|
+
var _chunkPJSA4K3Hjs = require('./chunk-PJSA4K3H.js');
|
|
16
17
|
|
|
17
18
|
// ../workspace-tools/src/base/base-generator.ts
|
|
18
19
|
var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
19
20
|
skipReadingConfig: false
|
|
20
21
|
}) => async (tree, _options) => {
|
|
21
|
-
const stopwatch =
|
|
22
|
+
const stopwatch = _chunkPJSA4K3Hjs.getStopwatch.call(void 0, name);
|
|
22
23
|
let options = _options;
|
|
23
24
|
let config;
|
|
24
25
|
try {
|
|
25
|
-
|
|
26
|
+
_chunkPJSA4K3Hjs.writeInfo.call(void 0,
|
|
27
|
+
`${_chunkPJSA4K3Hjs.brandIcon.call(void 0, config)} Running the ${name} generator...
|
|
26
28
|
|
|
27
|
-
`,
|
|
28
|
-
|
|
29
|
+
`,
|
|
30
|
+
config
|
|
31
|
+
);
|
|
32
|
+
const workspaceRoot = _chunkPJSA4K3Hjs.findWorkspaceRoot.call(void 0, );
|
|
29
33
|
if (!generatorOptions.skipReadingConfig) {
|
|
30
|
-
|
|
34
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0,
|
|
31
35
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
32
36
|
- workspaceRoot: ${workspaceRoot}`,
|
|
33
37
|
config
|
|
34
38
|
);
|
|
35
|
-
config = await
|
|
39
|
+
config = await _chunkPJSA4K3Hjs.getConfig.call(void 0, workspaceRoot);
|
|
36
40
|
}
|
|
37
41
|
if (_optionalChain([generatorOptions, 'optionalAccess', _ => _.hooks, 'optionalAccess', _2 => _2.applyDefaultOptions])) {
|
|
38
|
-
|
|
42
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "Running the applyDefaultOptions hook...", config);
|
|
39
43
|
options = await Promise.resolve(
|
|
40
44
|
generatorOptions.hooks.applyDefaultOptions(options, config)
|
|
41
45
|
);
|
|
42
|
-
|
|
46
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "Completed the applyDefaultOptions hook", config);
|
|
43
47
|
}
|
|
44
|
-
|
|
48
|
+
_chunkPJSA4K3Hjs.writeTrace.call(void 0,
|
|
45
49
|
`Generator schema options \u2699\uFE0F
|
|
46
50
|
${Object.keys(_nullishCoalesce(options, () => ( {}))).map((key) => ` - ${key}=${JSON.stringify(options[key])}`).join("\n")}`,
|
|
47
51
|
config
|
|
48
52
|
);
|
|
49
|
-
const tokenized = await
|
|
53
|
+
const tokenized = await _chunk5KOGMQTWjs.applyWorkspaceTokens.call(void 0,
|
|
50
54
|
options,
|
|
51
55
|
{ workspaceRoot: tree.root, config },
|
|
52
|
-
|
|
56
|
+
_chunk5KOGMQTWjs.applyWorkspaceBaseTokens
|
|
53
57
|
);
|
|
54
58
|
if (_optionalChain([generatorOptions, 'optionalAccess', _3 => _3.hooks, 'optionalAccess', _4 => _4.preProcess])) {
|
|
55
|
-
|
|
59
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "Running the preProcess hook...", config);
|
|
56
60
|
await Promise.resolve(
|
|
57
61
|
generatorOptions.hooks.preProcess(tokenized, config)
|
|
58
62
|
);
|
|
59
|
-
|
|
63
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "Completed the preProcess hook", config);
|
|
60
64
|
}
|
|
61
65
|
const result = await Promise.resolve(
|
|
62
66
|
generatorFn(tree, tokenized, config)
|
|
@@ -71,21 +75,21 @@ ${Object.keys(_nullishCoalesce(options, () => ( {}))).map((key) => ` - ${key}=${
|
|
|
71
75
|
}
|
|
72
76
|
}
|
|
73
77
|
if (_optionalChain([generatorOptions, 'optionalAccess', _14 => _14.hooks, 'optionalAccess', _15 => _15.postProcess])) {
|
|
74
|
-
|
|
78
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "Running the postProcess hook...", config);
|
|
75
79
|
await Promise.resolve(generatorOptions.hooks.postProcess(config));
|
|
76
|
-
|
|
80
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "Completed the postProcess hook", config);
|
|
77
81
|
}
|
|
78
82
|
return () => {
|
|
79
|
-
|
|
83
|
+
_chunkPJSA4K3Hjs.writeSuccess.call(void 0, `Completed running the ${name} generator!
|
|
80
84
|
`, config);
|
|
81
85
|
};
|
|
82
86
|
} catch (error) {
|
|
83
87
|
return () => {
|
|
84
|
-
|
|
88
|
+
_chunkPJSA4K3Hjs.writeFatal.call(void 0,
|
|
85
89
|
"A fatal error occurred while running the generator - the process was forced to terminate",
|
|
86
90
|
config
|
|
87
91
|
);
|
|
88
|
-
|
|
92
|
+
_chunkPJSA4K3Hjs.writeError.call(void 0,
|
|
89
93
|
`An exception was thrown in the generator's process
|
|
90
94
|
- Details: ${error.message}
|
|
91
95
|
- Stacktrace: ${error.stack}`,
|
|
@@ -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 _chunk5KOGMQTWjs = require('./chunk-5KOGMQTW.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -14,7 +14,8 @@ var _chunkJWWVDXXAjs = require('./chunk-JWWVDXXA.js');
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
|
|
18
|
+
var _chunkPJSA4K3Hjs = require('./chunk-PJSA4K3H.js');
|
|
18
19
|
|
|
19
20
|
|
|
20
21
|
var _chunk4AADQIGWjs = require('./chunk-4AADQIGW.js');
|
|
@@ -22,7 +23,7 @@ var _chunk4AADQIGWjs = require('./chunk-4AADQIGW.js');
|
|
|
22
23
|
// ../workspace-tools/src/base/base-executor.ts
|
|
23
24
|
var _defu = require('defu');
|
|
24
25
|
var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_options, context) => {
|
|
25
|
-
const stopwatch =
|
|
26
|
+
const stopwatch = _chunkPJSA4K3Hjs.getStopwatch.call(void 0, name);
|
|
26
27
|
let options = _options;
|
|
27
28
|
let config = {};
|
|
28
29
|
try {
|
|
@@ -31,14 +32,17 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
31
32
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
32
33
|
);
|
|
33
34
|
}
|
|
34
|
-
const workspaceRoot =
|
|
35
|
+
const workspaceRoot = _chunkPJSA4K3Hjs.findWorkspaceRoot.call(void 0, );
|
|
35
36
|
const projectRoot = context.projectsConfigurations.projects[context.projectName].root || workspaceRoot;
|
|
36
37
|
const sourceRoot = context.projectsConfigurations.projects[context.projectName].sourceRoot || projectRoot || workspaceRoot;
|
|
37
38
|
const projectName = context.projectName;
|
|
38
39
|
config.workspaceRoot = workspaceRoot;
|
|
39
|
-
|
|
40
|
+
_chunkPJSA4K3Hjs.writeInfo.call(void 0,
|
|
41
|
+
`${_chunkPJSA4K3Hjs.brandIcon.call(void 0, config)} Running the ${name} executor for ${projectName} `,
|
|
42
|
+
config
|
|
43
|
+
);
|
|
40
44
|
if (!executorOptions.skipReadingConfig) {
|
|
41
|
-
|
|
45
|
+
_chunkPJSA4K3Hjs.writeTrace.call(void 0,
|
|
42
46
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
43
47
|
- workspaceRoot: ${workspaceRoot}
|
|
44
48
|
- projectRoot: ${projectRoot}
|
|
@@ -47,42 +51,42 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
47
51
|
`,
|
|
48
52
|
config
|
|
49
53
|
);
|
|
50
|
-
config = await
|
|
54
|
+
config = await _chunkPJSA4K3Hjs.getConfig.call(void 0, workspaceRoot);
|
|
51
55
|
}
|
|
52
56
|
if (_optionalChain([executorOptions, 'optionalAccess', _3 => _3.hooks, 'optionalAccess', _4 => _4.applyDefaultOptions])) {
|
|
53
|
-
|
|
57
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "Running the applyDefaultOptions hook...", config);
|
|
54
58
|
options = await Promise.resolve(
|
|
55
59
|
executorOptions.hooks.applyDefaultOptions(options, config)
|
|
56
60
|
);
|
|
57
|
-
|
|
61
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "Completed the applyDefaultOptions hook", config);
|
|
58
62
|
}
|
|
59
|
-
|
|
63
|
+
_chunkPJSA4K3Hjs.writeTrace.call(void 0,
|
|
60
64
|
`Executor schema options \u2699\uFE0F
|
|
61
|
-
${
|
|
65
|
+
${_chunkPJSA4K3Hjs.formatLogMessage.call(void 0, options)}
|
|
62
66
|
`,
|
|
63
67
|
config
|
|
64
68
|
);
|
|
65
|
-
const tokenized = await
|
|
69
|
+
const tokenized = await _chunk5KOGMQTWjs.applyWorkspaceTokens.call(void 0,
|
|
66
70
|
options,
|
|
67
71
|
_defu.defu.call(void 0,
|
|
68
72
|
{ workspaceRoot, projectRoot, sourceRoot, projectName, config },
|
|
69
73
|
config,
|
|
70
74
|
context.projectsConfigurations.projects[context.projectName]
|
|
71
75
|
),
|
|
72
|
-
|
|
76
|
+
_chunk5KOGMQTWjs.applyWorkspaceProjectTokens
|
|
73
77
|
);
|
|
74
|
-
|
|
78
|
+
_chunkPJSA4K3Hjs.writeTrace.call(void 0,
|
|
75
79
|
`Executor schema tokenized options \u2699\uFE0F
|
|
76
|
-
${
|
|
80
|
+
${_chunkPJSA4K3Hjs.formatLogMessage.call(void 0, tokenized)}
|
|
77
81
|
`,
|
|
78
82
|
config
|
|
79
83
|
);
|
|
80
84
|
if (_optionalChain([executorOptions, 'optionalAccess', _5 => _5.hooks, 'optionalAccess', _6 => _6.preProcess])) {
|
|
81
|
-
|
|
85
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "Running the preProcess hook...", config);
|
|
82
86
|
await Promise.resolve(
|
|
83
87
|
executorOptions.hooks.preProcess(tokenized, config)
|
|
84
88
|
);
|
|
85
|
-
|
|
89
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "Completed the preProcess hook", config);
|
|
86
90
|
}
|
|
87
91
|
const ret = executorFn(tokenized, context, config);
|
|
88
92
|
if (_isFunction(_optionalChain([ret, 'optionalAccess', _7 => _7.next]))) {
|
|
@@ -97,7 +101,7 @@ ${_chunk6EZ7L5LJjs.formatLogMessage.call(void 0, tokenized)}
|
|
|
97
101
|
if (result && (!result.success || result.error && _optionalChain([result, 'optionalAccess', _8 => _8.error, 'optionalAccess', _9 => _9.message]) && typeof _optionalChain([result, 'optionalAccess', _10 => _10.error, 'optionalAccess', _11 => _11.message]) === "string" && _optionalChain([result, 'optionalAccess', _12 => _12.error, 'optionalAccess', _13 => _13.name]) && typeof _optionalChain([result, 'optionalAccess', _14 => _14.error, 'optionalAccess', _15 => _15.name]) === "string")) {
|
|
98
102
|
throw new Error(
|
|
99
103
|
`Failure determined while running the ${name} executor
|
|
100
|
-
${
|
|
104
|
+
${_chunkPJSA4K3Hjs.formatLogMessage.call(void 0,
|
|
101
105
|
result
|
|
102
106
|
)}`,
|
|
103
107
|
{
|
|
@@ -106,21 +110,21 @@ ${_chunk6EZ7L5LJjs.formatLogMessage.call(void 0,
|
|
|
106
110
|
);
|
|
107
111
|
}
|
|
108
112
|
if (_optionalChain([executorOptions, 'optionalAccess', _17 => _17.hooks, 'optionalAccess', _18 => _18.postProcess])) {
|
|
109
|
-
|
|
113
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "Running the postProcess hook...", config);
|
|
110
114
|
await Promise.resolve(executorOptions.hooks.postProcess(config));
|
|
111
|
-
|
|
115
|
+
_chunkPJSA4K3Hjs.writeDebug.call(void 0, "Completed the postProcess hook", config);
|
|
112
116
|
}
|
|
113
|
-
|
|
117
|
+
_chunkPJSA4K3Hjs.writeSuccess.call(void 0, `Completed running the ${name} task executor!
|
|
114
118
|
`, config);
|
|
115
119
|
return {
|
|
116
120
|
success: true
|
|
117
121
|
};
|
|
118
122
|
} catch (error) {
|
|
119
|
-
|
|
123
|
+
_chunkPJSA4K3Hjs.writeFatal.call(void 0,
|
|
120
124
|
"A fatal error occurred while running the executor - the process was forced to terminate",
|
|
121
125
|
config
|
|
122
126
|
);
|
|
123
|
-
|
|
127
|
+
_chunkPJSA4K3Hjs.writeError.call(void 0,
|
|
124
128
|
`An exception was thrown in the executor's process
|
|
125
129
|
- Details: ${error.message}
|
|
126
130
|
- Stacktrace: ${error.stack}`,
|
|
@@ -172,7 +176,7 @@ async function serveExecutor(options, context, config) {
|
|
|
172
176
|
remote: options.remote
|
|
173
177
|
});
|
|
174
178
|
} else {
|
|
175
|
-
|
|
179
|
+
_chunkPJSA4K3Hjs.writeWarning.call(void 0, `Chart packaged at: ${chartPath}`, config);
|
|
176
180
|
}
|
|
177
181
|
return {
|
|
178
182
|
success: true
|
|
@@ -62,6 +62,35 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
62
62
|
gradient: ["#1fb2a6", "#db2777", "#818cf8"]
|
|
63
63
|
}
|
|
64
64
|
};
|
|
65
|
+
function getColors(config) {
|
|
66
|
+
if (!config?.colors || typeof config.colors !== "object" || !config.colors["dark"] && (!config.colors["base"] || typeof config.colors !== "object" || !config.colors["base"]?.["dark"])) {
|
|
67
|
+
return DEFAULT_COLOR_CONFIG;
|
|
68
|
+
}
|
|
69
|
+
if (config.colors["base"]) {
|
|
70
|
+
if (typeof config.colors["base"]["dark"] === "object") {
|
|
71
|
+
return config.colors["base"]["dark"];
|
|
72
|
+
} else if (config.colors["base"]["dark"] === "string") {
|
|
73
|
+
return config.colors["base"];
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
if (typeof config.colors["dark"] === "object") {
|
|
77
|
+
return config.colors["dark"];
|
|
78
|
+
}
|
|
79
|
+
return config.colors ?? DEFAULT_COLOR_CONFIG;
|
|
80
|
+
}
|
|
81
|
+
function getColor(key, config) {
|
|
82
|
+
const colors = getColors(config);
|
|
83
|
+
const result = (typeof colors["dark"] === "object" ? colors["dark"][key] : colors[key]) || DEFAULT_COLOR_CONFIG["dark"][key] || DEFAULT_COLOR_CONFIG[key];
|
|
84
|
+
if (result) {
|
|
85
|
+
return result;
|
|
86
|
+
}
|
|
87
|
+
if (key === "link" || key === "debug") {
|
|
88
|
+
return getColor("info", config);
|
|
89
|
+
} else if (key === "fatal") {
|
|
90
|
+
return getColor("danger", config);
|
|
91
|
+
}
|
|
92
|
+
return getColor("brand", config);
|
|
93
|
+
}
|
|
65
94
|
|
|
66
95
|
// ../config-tools/src/logger/chalk.ts
|
|
67
96
|
import chalk from "chalk";
|
|
@@ -328,6 +357,7 @@ var _isFunction = (value) => {
|
|
|
328
357
|
return false;
|
|
329
358
|
}
|
|
330
359
|
};
|
|
360
|
+
var brandIcon = (config = {}, _chalk = getChalk()) => _chalk.hex(getColor("brand", config))("\u{1F5F2}");
|
|
331
361
|
|
|
332
362
|
// ../config-tools/src/utilities/correct-paths.ts
|
|
333
363
|
var _DRIVE_LETTER_START_RE = /^[A-Za-z]:\//;
|
|
@@ -2017,6 +2047,7 @@ export {
|
|
|
2017
2047
|
writeTrace,
|
|
2018
2048
|
getStopwatch,
|
|
2019
2049
|
formatLogMessage,
|
|
2050
|
+
brandIcon,
|
|
2020
2051
|
findWorkspaceRoot,
|
|
2021
2052
|
getConfig
|
|
2022
2053
|
};
|
|
@@ -3,11 +3,11 @@ import {
|
|
|
3
3
|
} from "./chunk-WS2G4IWW.mjs";
|
|
4
4
|
import {
|
|
5
5
|
applyWorkspaceTokens
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-C4ZGS3L3.mjs";
|
|
7
7
|
import {
|
|
8
8
|
findWorkspaceRoot,
|
|
9
9
|
getConfig
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-TOP3LZ4E.mjs";
|
|
11
11
|
|
|
12
12
|
// src/executors/container-publish/executor.ts
|
|
13
13
|
import {
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
var _chunkKBSSJUPWjs = require('./chunk-KBSSJUPW.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunk5KOGMQTWjs = require('./chunk-5KOGMQTW.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkPJSA4K3Hjs = require('./chunk-PJSA4K3H.js');
|
|
11
11
|
|
|
12
12
|
// src/executors/container-publish/executor.ts
|
|
13
13
|
|
|
@@ -64,7 +64,7 @@ var applyWorkspaceExecutorTokens = async (option, tokenizerOptions) => {
|
|
|
64
64
|
if (result.includes("{workspaceRoot}")) {
|
|
65
65
|
result = result.replaceAll(
|
|
66
66
|
"{workspaceRoot}",
|
|
67
|
-
_nullishCoalesce(tokenizerOptions.workspaceRoot, () => (
|
|
67
|
+
_nullishCoalesce(tokenizerOptions.workspaceRoot, () => ( _chunkPJSA4K3Hjs.findWorkspaceRoot.call(void 0, )))
|
|
68
68
|
);
|
|
69
69
|
}
|
|
70
70
|
return result;
|
|
@@ -80,8 +80,8 @@ async function* publishExecutor(options, context) {
|
|
|
80
80
|
console.info(
|
|
81
81
|
`\u{1F680} Running Storm Container Registry Publish executor on the ${context.projectName} crate`
|
|
82
82
|
);
|
|
83
|
-
const workspaceRoot =
|
|
84
|
-
const config = await
|
|
83
|
+
const workspaceRoot = _chunkPJSA4K3Hjs.findWorkspaceRoot.call(void 0, );
|
|
84
|
+
const config = await _chunkPJSA4K3Hjs.getConfig.call(void 0, workspaceRoot);
|
|
85
85
|
const projectConfig = _optionalChain([context, 'access', _2 => _2.projectsConfigurations, 'optionalAccess', _3 => _3.projects, 'access', _4 => _4[context.projectName]]);
|
|
86
86
|
if (!projectConfig) {
|
|
87
87
|
throw new Error(
|
|
@@ -92,7 +92,7 @@ async function* publishExecutor(options, context) {
|
|
|
92
92
|
const sourceRoot = _nullishCoalesce(_optionalChain([projectConfig, 'optionalAccess', _6 => _6.sourceRoot]), () => ( workspaceRoot));
|
|
93
93
|
const projectName = _nullishCoalesce(_optionalChain([projectConfig, 'optionalAccess', _7 => _7.name]), () => ( context.projectName));
|
|
94
94
|
config.workspaceRoot = workspaceRoot;
|
|
95
|
-
const tokenized = await
|
|
95
|
+
const tokenized = await _chunk5KOGMQTWjs.applyWorkspaceTokens.call(void 0,
|
|
96
96
|
options,
|
|
97
97
|
{
|
|
98
98
|
config,
|
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 _chunkXRJWCLHZjs = require('./chunk-XRJWCLHZ.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkR2KZRP7Bjs = require('./chunk-R2KZRP7B.js');
|
|
8
8
|
require('./chunk-KBSSJUPW.js');
|
|
9
|
-
require('./chunk-
|
|
10
|
-
require('./chunk-
|
|
9
|
+
require('./chunk-5KOGMQTW.js');
|
|
10
|
+
require('./chunk-PJSA4K3H.js');
|
|
11
11
|
require('./chunk-4AADQIGW.js');
|
|
12
12
|
require('./chunk-JSFRUBG5.js');
|
|
13
13
|
require('./chunk-XKOZIQT3.js');
|
|
@@ -15,4 +15,4 @@ require('./chunk-RECJ3G6F.js');
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
exports.getRegistryVersion =
|
|
18
|
+
exports.getRegistryVersion = _chunkXRJWCLHZjs.getRegistryVersion; exports.serveExecutor = _chunkR2KZRP7Bjs.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-U6GM7OXA.mjs";
|
|
5
5
|
import {
|
|
6
6
|
serveExecutor
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-NAS5PXQT.mjs";
|
|
8
8
|
import "./chunk-WS2G4IWW.mjs";
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-C4ZGS3L3.mjs";
|
|
10
|
+
import "./chunk-TOP3LZ4E.mjs";
|
|
11
11
|
import "./chunk-HK6QKQTS.mjs";
|
|
12
12
|
import "./chunk-YXXZO2AJ.mjs";
|
|
13
13
|
import "./chunk-HGXQ6SSU.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 _chunkIBAKQ6JTjs = require('./chunk-IBAKQ6JT.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
8
|
-
require('./chunk-
|
|
9
|
-
require('./chunk-
|
|
10
|
-
require('./chunk-
|
|
7
|
+
var _chunkBAP6PTS2js = require('./chunk-BAP6PTS2.js');
|
|
8
|
+
require('./chunk-Q7ATSVB3.js');
|
|
9
|
+
require('./chunk-5KOGMQTW.js');
|
|
10
|
+
require('./chunk-PJSA4K3H.js');
|
|
11
11
|
require('./chunk-RECJ3G6F.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
exports.helmChartGeneratorFn =
|
|
15
|
+
exports.helmChartGeneratorFn = _chunkIBAKQ6JTjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkBAP6PTS2js.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-GJQHODNI.mjs";
|
|
5
5
|
import {
|
|
6
6
|
helmDependencyGeneratorFn
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-LWRIUXY4.mjs";
|
|
8
|
+
import "./chunk-HXMLPGRB.mjs";
|
|
9
|
+
import "./chunk-C4ZGS3L3.mjs";
|
|
10
|
+
import "./chunk-TOP3LZ4E.mjs";
|
|
11
11
|
import "./chunk-KBO64DJX.mjs";
|
|
12
12
|
export {
|
|
13
13
|
helmChartGeneratorFn,
|
package/dist/index.js
CHANGED
|
@@ -2,25 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkHDXZYG3Njs = require('./chunk-HDXZYG3N.js');
|
|
6
6
|
require('./chunk-XO66D74Z.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkXRJWCLHZjs = require('./chunk-XRJWCLHZ.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
var
|
|
12
|
+
var _chunkR2KZRP7Bjs = require('./chunk-R2KZRP7B.js');
|
|
13
13
|
require('./chunk-KBSSJUPW.js');
|
|
14
14
|
require('./chunk-DHBG5ASJ.js');
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunkIBAKQ6JTjs = require('./chunk-IBAKQ6JT.js');
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
21
|
-
require('./chunk-
|
|
22
|
-
require('./chunk-
|
|
23
|
-
require('./chunk-
|
|
20
|
+
var _chunkBAP6PTS2js = require('./chunk-BAP6PTS2.js');
|
|
21
|
+
require('./chunk-Q7ATSVB3.js');
|
|
22
|
+
require('./chunk-5KOGMQTW.js');
|
|
23
|
+
require('./chunk-PJSA4K3H.js');
|
|
24
24
|
require('./chunk-U76ID4TS.js');
|
|
25
25
|
|
|
26
26
|
|
|
@@ -51,4 +51,4 @@ require('./chunk-RECJ3G6F.js');
|
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
exports.AbstractHelmClient = _chunkJSFRUBG5js.AbstractHelmClient; exports.HelmClient = _chunk4AADQIGWjs.HelmClient; exports.addToPrettierIgnore = _chunk7QVOU2PTjs.addToPrettierIgnore; exports.createHelmClient = _chunk4AADQIGWjs.createHelmClient; exports.createNodesV2 =
|
|
54
|
+
exports.AbstractHelmClient = _chunkJSFRUBG5js.AbstractHelmClient; exports.HelmClient = _chunk4AADQIGWjs.HelmClient; exports.addToPrettierIgnore = _chunk7QVOU2PTjs.addToPrettierIgnore; exports.createHelmClient = _chunk4AADQIGWjs.createHelmClient; exports.createNodesV2 = _chunkHDXZYG3Njs.createNodesV2; exports.description = _chunkHDXZYG3Njs.description; exports.ensureInitialized = _chunkXKOZIQT3js.ensureInitialized; exports.getRegistryVersion = _chunkXRJWCLHZjs.getRegistryVersion; exports.helmChartGeneratorFn = _chunkIBAKQ6JTjs.helmChartGeneratorFn; exports.helmDependencyGeneratorFn = _chunkBAP6PTS2js.helmDependencyGeneratorFn; exports.name = _chunkHDXZYG3Njs.name; exports.resolveUserExistingPrettierConfig = _chunk7QVOU2PTjs.resolveUserExistingPrettierConfig; exports.serveExecutor = _chunkR2KZRP7Bjs.serveExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -2,25 +2,25 @@ import {
|
|
|
2
2
|
createNodesV2,
|
|
3
3
|
description,
|
|
4
4
|
name
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-7R63AGBK.mjs";
|
|
6
6
|
import "./chunk-YSCEY447.mjs";
|
|
7
7
|
import {
|
|
8
8
|
getRegistryVersion
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-U6GM7OXA.mjs";
|
|
10
10
|
import {
|
|
11
11
|
serveExecutor
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-NAS5PXQT.mjs";
|
|
13
13
|
import "./chunk-WS2G4IWW.mjs";
|
|
14
14
|
import "./chunk-3J7KBHMJ.mjs";
|
|
15
15
|
import {
|
|
16
16
|
helmChartGeneratorFn
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-GJQHODNI.mjs";
|
|
18
18
|
import {
|
|
19
19
|
helmDependencyGeneratorFn
|
|
20
|
-
} from "./chunk-
|
|
21
|
-
import "./chunk-
|
|
22
|
-
import "./chunk-
|
|
23
|
-
import "./chunk-
|
|
20
|
+
} from "./chunk-LWRIUXY4.mjs";
|
|
21
|
+
import "./chunk-HXMLPGRB.mjs";
|
|
22
|
+
import "./chunk-C4ZGS3L3.mjs";
|
|
23
|
+
import "./chunk-TOP3LZ4E.mjs";
|
|
24
24
|
import "./chunk-WWU25UQ4.mjs";
|
|
25
25
|
import {
|
|
26
26
|
addToPrettierIgnore,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkXRJWCLHZjs = require('../../../chunk-XRJWCLHZ.js');
|
|
5
5
|
require('../../../chunk-KBSSJUPW.js');
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-5KOGMQTW.js');
|
|
7
|
+
require('../../../chunk-PJSA4K3H.js');
|
|
8
8
|
require('../../../chunk-RECJ3G6F.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkXRJWCLHZjs.publishExecutor; exports.getRegistryVersion = _chunkXRJWCLHZjs.getRegistryVersion;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getRegistryVersion,
|
|
3
3
|
publishExecutor
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-U6GM7OXA.mjs";
|
|
5
5
|
import "../../../chunk-WS2G4IWW.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-C4ZGS3L3.mjs";
|
|
7
|
+
import "../../../chunk-TOP3LZ4E.mjs";
|
|
8
8
|
import "../../../chunk-KBO64DJX.mjs";
|
|
9
9
|
export {
|
|
10
10
|
publishExecutor as default,
|
|
@@ -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 _chunkR2KZRP7Bjs = require('../../../chunk-R2KZRP7B.js');
|
|
5
|
+
require('../../../chunk-5KOGMQTW.js');
|
|
6
|
+
require('../../../chunk-PJSA4K3H.js');
|
|
7
7
|
require('../../../chunk-4AADQIGW.js');
|
|
8
8
|
require('../../../chunk-JSFRUBG5.js');
|
|
9
9
|
require('../../../chunk-XKOZIQT3.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-RECJ3G6F.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.default =
|
|
14
|
+
exports.default = _chunkR2KZRP7Bjs.executor_default; exports.serveExecutor = _chunkR2KZRP7Bjs.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-NAS5PXQT.mjs";
|
|
5
|
+
import "../../../chunk-C4ZGS3L3.mjs";
|
|
6
|
+
import "../../../chunk-TOP3LZ4E.mjs";
|
|
7
7
|
import "../../../chunk-HK6QKQTS.mjs";
|
|
8
8
|
import "../../../chunk-YXXZO2AJ.mjs";
|
|
9
9
|
import "../../../chunk-HGXQ6SSU.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-
|
|
7
|
-
require('../../../chunk-
|
|
4
|
+
var _chunkIBAKQ6JTjs = require('../../../chunk-IBAKQ6JT.js');
|
|
5
|
+
require('../../../chunk-Q7ATSVB3.js');
|
|
6
|
+
require('../../../chunk-5KOGMQTW.js');
|
|
7
|
+
require('../../../chunk-PJSA4K3H.js');
|
|
8
8
|
require('../../../chunk-RECJ3G6F.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkIBAKQ6JTjs.generator_default; exports.helmChartGeneratorFn = _chunkIBAKQ6JTjs.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-GJQHODNI.mjs";
|
|
5
|
+
import "../../../chunk-HXMLPGRB.mjs";
|
|
6
|
+
import "../../../chunk-C4ZGS3L3.mjs";
|
|
7
|
+
import "../../../chunk-TOP3LZ4E.mjs";
|
|
8
8
|
import "../../../chunk-KBO64DJX.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
|
|
5
|
-
require('../../../chunk-
|
|
6
|
-
require('../../../chunk-
|
|
7
|
-
require('../../../chunk-
|
|
4
|
+
var _chunkBAP6PTS2js = require('../../../chunk-BAP6PTS2.js');
|
|
5
|
+
require('../../../chunk-Q7ATSVB3.js');
|
|
6
|
+
require('../../../chunk-5KOGMQTW.js');
|
|
7
|
+
require('../../../chunk-PJSA4K3H.js');
|
|
8
8
|
require('../../../chunk-RECJ3G6F.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.default =
|
|
12
|
+
exports.default = _chunkBAP6PTS2js.generator_default; exports.helmDependencyGeneratorFn = _chunkBAP6PTS2js.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-LWRIUXY4.mjs";
|
|
5
|
+
import "../../../chunk-HXMLPGRB.mjs";
|
|
6
|
+
import "../../../chunk-C4ZGS3L3.mjs";
|
|
7
|
+
import "../../../chunk-TOP3LZ4E.mjs";
|
|
8
8
|
import "../../../chunk-KBO64DJX.mjs";
|
|
9
9
|
export {
|
|
10
10
|
generator_default as default,
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkHDXZYG3Njs = require('../../../chunk-HDXZYG3N.js');
|
|
6
6
|
require('../../../chunk-KBSSJUPW.js');
|
|
7
|
-
require('../../../chunk-
|
|
7
|
+
require('../../../chunk-PJSA4K3H.js');
|
|
8
8
|
require('../../../chunk-RECJ3G6F.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
exports.createNodesV2 =
|
|
13
|
+
exports.createNodesV2 = _chunkHDXZYG3Njs.createNodesV2; exports.description = _chunkHDXZYG3Njs.description; exports.name = _chunkHDXZYG3Njs.name;
|
|
@@ -2,9 +2,9 @@ import {
|
|
|
2
2
|
createNodesV2,
|
|
3
3
|
description,
|
|
4
4
|
name
|
|
5
|
-
} from "../../../chunk-
|
|
5
|
+
} from "../../../chunk-7R63AGBK.mjs";
|
|
6
6
|
import "../../../chunk-WS2G4IWW.mjs";
|
|
7
|
-
import "../../../chunk-
|
|
7
|
+
import "../../../chunk-TOP3LZ4E.mjs";
|
|
8
8
|
import "../../../chunk-KBO64DJX.mjs";
|
|
9
9
|
export {
|
|
10
10
|
createNodesV2,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/k8s-tools",
|
|
3
|
-
"version": "0.42.
|
|
3
|
+
"version": "0.42.83",
|
|
4
4
|
"description": "Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -140,9 +140,9 @@
|
|
|
140
140
|
"nx": { "optional": false }
|
|
141
141
|
},
|
|
142
142
|
"dependencies": {
|
|
143
|
-
"@storm-software/config": "^1.135.
|
|
144
|
-
"@storm-software/config-tools": "^1.
|
|
145
|
-
"@storm-software/workspace-tools": "^1.294.
|
|
143
|
+
"@storm-software/config": "^1.135.1",
|
|
144
|
+
"@storm-software/config-tools": "^1.189.0",
|
|
145
|
+
"@storm-software/workspace-tools": "^1.294.27",
|
|
146
146
|
"defu": "6.1.4",
|
|
147
147
|
"yaml": "^2.8.2"
|
|
148
148
|
},
|
|
@@ -160,5 +160,5 @@
|
|
|
160
160
|
"publishConfig": { "access": "public" },
|
|
161
161
|
"executors": "./executors.json",
|
|
162
162
|
"generators": "./generators.json",
|
|
163
|
-
"gitHead": "
|
|
163
|
+
"gitHead": "0305bdb839af50999ab4680248db5dd2c4994ef3"
|
|
164
164
|
}
|