@storm-software/pulumi-tools 0.20.2 → 0.20.3
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 +12 -0
- package/README.md +1 -1
- package/dist/{chunk-KG67CMSC.js → chunk-47XMMLVB.js} +63 -63
- package/dist/{chunk-SNOV5KTY.js → chunk-7IIO5K6T.js} +2 -2
- package/dist/{chunk-F7ZUX72D.mjs → chunk-AA4IBBGW.mjs} +1 -1
- package/dist/{chunk-4UHP4ZUN.mjs → chunk-D7U6D4PF.mjs} +1 -1
- package/dist/{chunk-UKXKHZFG.mjs → chunk-FI5OKN5C.mjs} +1 -1
- package/dist/{chunk-626GAUDI.js → chunk-GJ6YG27P.js} +2 -2
- package/dist/{chunk-DPMU7YXN.js → chunk-J2WRWAXQ.js} +3 -3
- package/dist/{chunk-KNVDJKA2.mjs → chunk-JQ364IAG.mjs} +1 -1
- package/dist/{chunk-JN2CK3MK.mjs → chunk-OIVTWIIB.mjs} +1 -1
- package/dist/{chunk-HIOVDGOJ.js → chunk-PNLWTHXS.js} +2 -2
- package/dist/{chunk-IHTUIO6G.mjs → chunk-PWFMLPOH.mjs} +1 -1
- package/dist/{chunk-4B46JWK7.js → chunk-SL4EXQIU.js} +5 -5
- package/dist/{chunk-5EDXLR5B.js → chunk-TOJ7Q4MA.js} +2 -2
- package/dist/{chunk-JC4YT6CF.js → chunk-VF22JQJU.js} +2 -2
- package/dist/{chunk-INP454TY.mjs → chunk-XYGR5MTV.mjs} +1 -1
- package/dist/{chunk-YHYDCPRY.mjs → chunk-XZMMJRYJ.mjs} +1 -1
- package/dist/executors.js +7 -7
- package/dist/executors.mjs +7 -7
- package/dist/generators.js +3 -3
- package/dist/generators.mjs +2 -2
- package/dist/index.js +9 -9
- package/dist/index.mjs +8 -8
- package/dist/src/base/base-executor.js +3 -3
- package/dist/src/base/base-executor.mjs +2 -2
- package/dist/src/base/index.js +3 -3
- package/dist/src/base/index.mjs +2 -2
- package/dist/src/executors/config/executor.js +4 -4
- package/dist/src/executors/config/executor.mjs +3 -3
- package/dist/src/executors/import/executor.js +4 -4
- package/dist/src/executors/import/executor.mjs +3 -3
- package/dist/src/executors/preview/executor.js +4 -4
- package/dist/src/executors/preview/executor.mjs +3 -3
- package/dist/src/executors/refresh/executor.js +4 -4
- package/dist/src/executors/refresh/executor.mjs +3 -3
- package/dist/src/executors/up/executor.js +4 -4
- package/dist/src/executors/up/executor.mjs +3 -3
- package/dist/src/generators/init/generator.js +3 -3
- package/dist/src/generators/init/generator.mjs +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pulumi Tools
|
|
4
4
|
|
|
5
|
+
## [0.20.2](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.20.2) (2025-09-18)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update workspace package links
|
|
10
|
+
([89e2511ad](https://github.com/storm-software/storm-ops/commit/89e2511ad))
|
|
11
|
+
|
|
12
|
+
### Updated Dependencies
|
|
13
|
+
|
|
14
|
+
- Updated config-tools to 1.185.2
|
|
15
|
+
- Updated config to 1.131.2
|
|
16
|
+
|
|
5
17
|
## [0.20.1](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.20.1) (2025-09-18)
|
|
6
18
|
|
|
7
19
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -334,7 +334,7 @@ var correctPaths = function(path3) {
|
|
|
334
334
|
return ".";
|
|
335
335
|
}
|
|
336
336
|
path3 = normalizeWindowsPath(path3);
|
|
337
|
-
const isUNCPath = path3.match(_UNC_REGEX);
|
|
337
|
+
const isUNCPath = _optionalChain([path3, 'optionalAccess', _27 => _27.match, 'call', _28 => _28(_UNC_REGEX)]);
|
|
338
338
|
const isPathAbsolute = isAbsolute(path3);
|
|
339
339
|
const trailingSeparator = path3[path3.length - 1] === "/";
|
|
340
340
|
path3 = normalizeString(path3, !isPathAbsolute);
|
|
@@ -550,7 +550,7 @@ var applyWorkspaceBaseTokens = async (option, tokenParams) => {
|
|
|
550
550
|
if (result.includes(`{${optionKey}}`)) {
|
|
551
551
|
result = result.replaceAll(
|
|
552
552
|
`{${optionKey}}`,
|
|
553
|
-
_optionalChain([tokenParams, 'optionalAccess',
|
|
553
|
+
_optionalChain([tokenParams, 'optionalAccess', _29 => _29[optionKey]]) || ""
|
|
554
554
|
);
|
|
555
555
|
}
|
|
556
556
|
}
|
|
@@ -572,7 +572,7 @@ var applyWorkspaceBaseTokens = async (option, tokenParams) => {
|
|
|
572
572
|
if (result.includes("{workspaceRoot}")) {
|
|
573
573
|
result = result.replaceAll(
|
|
574
574
|
"{workspaceRoot}",
|
|
575
|
-
_nullishCoalesce(_nullishCoalesce(tokenParams.workspaceRoot, () => ( _optionalChain([tokenParams, 'access',
|
|
575
|
+
_nullishCoalesce(_nullishCoalesce(tokenParams.workspaceRoot, () => ( _optionalChain([tokenParams, 'access', _30 => _30.config, 'optionalAccess', _31 => _31.workspaceRoot]))), () => ( findWorkspaceRoot()))
|
|
576
576
|
);
|
|
577
577
|
}
|
|
578
578
|
return result;
|
|
@@ -1277,7 +1277,7 @@ function applyDefaultConfig(config) {
|
|
|
1277
1277
|
if (!config.contact) {
|
|
1278
1278
|
config.contact = `${config.homepage}/contact`;
|
|
1279
1279
|
}
|
|
1280
|
-
if (!_optionalChain([config, 'access',
|
|
1280
|
+
if (!_optionalChain([config, 'access', _32 => _32.error, 'optionalAccess', _33 => _33.codesFile]) || !_optionalChain([config, 'optionalAccess', _34 => _34.error, 'optionalAccess', _35 => _35.url])) {
|
|
1281
1281
|
config.error ??= { codesFile: STORM_DEFAULT_ERROR_CODES_FILE };
|
|
1282
1282
|
if (config.homepage) {
|
|
1283
1283
|
config.error.url ??= `${config.homepage}/errors`;
|
|
@@ -1295,7 +1295,7 @@ var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
|
1295
1295
|
cwd: workspacePath,
|
|
1296
1296
|
packageJson: true,
|
|
1297
1297
|
name: fileName,
|
|
1298
|
-
envName: _optionalChain([fileName, 'optionalAccess',
|
|
1298
|
+
envName: _optionalChain([fileName, 'optionalAccess', _36 => _36.toUpperCase, 'call', _37 => _37()]),
|
|
1299
1299
|
jitiOptions: {
|
|
1300
1300
|
debug: false,
|
|
1301
1301
|
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(
|
|
@@ -1309,7 +1309,7 @@ var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
|
1309
1309
|
cwd: workspacePath,
|
|
1310
1310
|
packageJson: true,
|
|
1311
1311
|
name: fileName,
|
|
1312
|
-
envName: _optionalChain([fileName, 'optionalAccess',
|
|
1312
|
+
envName: _optionalChain([fileName, 'optionalAccess', _38 => _38.toUpperCase, 'call', _39 => _39()]),
|
|
1313
1313
|
jitiOptions: {
|
|
1314
1314
|
debug: false,
|
|
1315
1315
|
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : joinPaths(
|
|
@@ -1343,7 +1343,7 @@ var getConfigFile = async (filePath, additionalFileNames = []) => {
|
|
|
1343
1343
|
)
|
|
1344
1344
|
);
|
|
1345
1345
|
for (const result2 of results) {
|
|
1346
|
-
if (_optionalChain([result2, 'optionalAccess',
|
|
1346
|
+
if (_optionalChain([result2, 'optionalAccess', _40 => _40.config]) && _optionalChain([result2, 'optionalAccess', _41 => _41.configFile]) && Object.keys(result2.config).length > 0) {
|
|
1347
1347
|
if (!config.skipConfigLogging && !result2.config.skipConfigLogging) {
|
|
1348
1348
|
writeTrace(
|
|
1349
1349
|
`Found alternative configuration file "${result2.configFile.includes(`${workspacePath}/`) ? result2.configFile.replace(`${workspacePath}/`, "") : result2.configFile}" at "${workspacePath}"`,
|
|
@@ -1582,16 +1582,16 @@ var getBaseThemeColorsEnv = (prefix) => {
|
|
|
1582
1582
|
var setExtensionEnv = (extensionName, extension) => {
|
|
1583
1583
|
for (const key of Object.keys(_nullishCoalesce(extension, () => ( {})))) {
|
|
1584
1584
|
if (extension[key]) {
|
|
1585
|
-
const result = _nullishCoalesce(_optionalChain([key, 'optionalAccess',
|
|
1585
|
+
const result = _nullishCoalesce(_optionalChain([key, 'optionalAccess', _42 => _42.replace, 'call', _43 => _43(
|
|
1586
1586
|
/([A-Z])+/g,
|
|
1587
|
-
(input) => input ? _optionalChain([input, 'access',
|
|
1588
|
-
), 'access',
|
|
1587
|
+
(input) => input ? _optionalChain([input, 'access', _44 => _44[0], 'optionalAccess', _45 => _45.toUpperCase, 'call', _46 => _46()]) + input.slice(1) : ""
|
|
1588
|
+
), 'access', _47 => _47.split, 'call', _48 => _48(/(?=[A-Z])|[.\-\s_]/), 'access', _49 => _49.map, 'call', _50 => _50((x) => x.toLowerCase())]), () => ( []));
|
|
1589
1589
|
let extensionKey;
|
|
1590
1590
|
if (result.length === 0) {
|
|
1591
1591
|
return;
|
|
1592
1592
|
}
|
|
1593
1593
|
if (result.length === 1) {
|
|
1594
|
-
extensionKey = _nullishCoalesce(_optionalChain([result, 'access',
|
|
1594
|
+
extensionKey = _nullishCoalesce(_optionalChain([result, 'access', _51 => _51[0], 'optionalAccess', _52 => _52.toUpperCase, 'call', _53 => _53()]), () => ( ""));
|
|
1595
1595
|
} else {
|
|
1596
1596
|
extensionKey = result.reduce((ret, part) => {
|
|
1597
1597
|
return `${ret}_${part.toLowerCase()}`;
|
|
@@ -1779,7 +1779,7 @@ var setConfigEnv = (config) => {
|
|
|
1779
1779
|
process.env.NODE_ENV = config.mode;
|
|
1780
1780
|
process.env.ENVIRONMENT = config.mode;
|
|
1781
1781
|
}
|
|
1782
|
-
if (_optionalChain([config, 'access',
|
|
1782
|
+
if (_optionalChain([config, 'access', _54 => _54.colors, 'optionalAccess', _55 => _55.base, 'optionalAccess', _56 => _56.light]) || _optionalChain([config, 'access', _57 => _57.colors, 'optionalAccess', _58 => _58.base, 'optionalAccess', _59 => _59.dark])) {
|
|
1783
1783
|
for (const key of Object.keys(config.colors)) {
|
|
1784
1784
|
setThemeColorsEnv(`${prefix}COLOR_${key}_`, config.colors[key]);
|
|
1785
1785
|
}
|
|
@@ -1840,7 +1840,7 @@ var setConfigEnv = (config) => {
|
|
|
1840
1840
|
}
|
|
1841
1841
|
};
|
|
1842
1842
|
var setThemeColorsEnv = (prefix, config) => {
|
|
1843
|
-
return _optionalChain([config, 'optionalAccess',
|
|
1843
|
+
return _optionalChain([config, 'optionalAccess', _60 => _60.light, 'optionalAccess', _61 => _61.brand]) || _optionalChain([config, 'optionalAccess', _62 => _62.dark, 'optionalAccess', _63 => _63.brand]) ? setMultiThemeColorsEnv(prefix, config) : setSingleThemeColorsEnv(prefix, config);
|
|
1844
1844
|
};
|
|
1845
1845
|
var setSingleThemeColorsEnv = (prefix, config) => {
|
|
1846
1846
|
if (config.dark) {
|
|
@@ -1952,7 +1952,7 @@ var _extension_cache = /* @__PURE__ */ new WeakMap();
|
|
|
1952
1952
|
var _static_cache = void 0;
|
|
1953
1953
|
var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot3, skipLogs = false, useDefault = true) => {
|
|
1954
1954
|
let result;
|
|
1955
|
-
if (!_optionalChain([_static_cache, 'optionalAccess',
|
|
1955
|
+
if (!_optionalChain([_static_cache, 'optionalAccess', _64 => _64.data]) || !_optionalChain([_static_cache, 'optionalAccess', _65 => _65.timestamp]) || _static_cache.timestamp < Date.now() - 8e3) {
|
|
1956
1956
|
let _workspaceRoot = workspaceRoot3;
|
|
1957
1957
|
if (!_workspaceRoot) {
|
|
1958
1958
|
_workspaceRoot = findWorkspaceRoot();
|
|
@@ -1983,7 +1983,7 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot3, s
|
|
|
1983
1983
|
result.workspaceRoot ??= _workspaceRoot;
|
|
1984
1984
|
} catch (error) {
|
|
1985
1985
|
throw new Error(
|
|
1986
|
-
`Failed to parse Storm Workspace configuration${_optionalChain([error, 'optionalAccess',
|
|
1986
|
+
`Failed to parse Storm Workspace configuration${_optionalChain([error, 'optionalAccess', _66 => _66.message]) ? `: ${error.message}` : ""}
|
|
1987
1987
|
|
|
1988
1988
|
Please ensure your configuration file is valid JSON and matches the expected schema. The current workspace configuration input is: ${formatLogMessage(
|
|
1989
1989
|
configInput
|
|
@@ -2058,7 +2058,7 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
2058
2058
|
let options = _options;
|
|
2059
2059
|
let config = {};
|
|
2060
2060
|
try {
|
|
2061
|
-
if (!_optionalChain([context, 'access',
|
|
2061
|
+
if (!_optionalChain([context, 'access', _67 => _67.projectsConfigurations, 'optionalAccess', _68 => _68.projects]) || !context.projectName || !context.projectsConfigurations.projects[context.projectName]) {
|
|
2062
2062
|
throw new Error(
|
|
2063
2063
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
2064
2064
|
);
|
|
@@ -2081,7 +2081,7 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
2081
2081
|
);
|
|
2082
2082
|
config = await getConfig(workspaceRoot3);
|
|
2083
2083
|
}
|
|
2084
|
-
if (_optionalChain([executorOptions, 'optionalAccess',
|
|
2084
|
+
if (_optionalChain([executorOptions, 'optionalAccess', _69 => _69.hooks, 'optionalAccess', _70 => _70.applyDefaultOptions])) {
|
|
2085
2085
|
writeDebug("Running the applyDefaultOptions hook...", config);
|
|
2086
2086
|
options = await Promise.resolve(
|
|
2087
2087
|
executorOptions.hooks.applyDefaultOptions(options, config)
|
|
@@ -2109,7 +2109,7 @@ ${formatLogMessage(tokenized)}
|
|
|
2109
2109
|
`,
|
|
2110
2110
|
config
|
|
2111
2111
|
);
|
|
2112
|
-
if (_optionalChain([executorOptions, 'optionalAccess',
|
|
2112
|
+
if (_optionalChain([executorOptions, 'optionalAccess', _71 => _71.hooks, 'optionalAccess', _72 => _72.preProcess])) {
|
|
2113
2113
|
writeDebug("Running the preProcess hook...", config);
|
|
2114
2114
|
await Promise.resolve(
|
|
2115
2115
|
executorOptions.hooks.preProcess(tokenized, config)
|
|
@@ -2117,7 +2117,7 @@ ${formatLogMessage(tokenized)}
|
|
|
2117
2117
|
writeDebug("Completed the preProcess hook", config);
|
|
2118
2118
|
}
|
|
2119
2119
|
const ret = executorFn(tokenized, context, config);
|
|
2120
|
-
if (_isFunction2(_optionalChain([ret, 'optionalAccess',
|
|
2120
|
+
if (_isFunction2(_optionalChain([ret, 'optionalAccess', _73 => _73.next]))) {
|
|
2121
2121
|
const asyncGen = ret;
|
|
2122
2122
|
for await (const iter of asyncGen) {
|
|
2123
2123
|
void iter;
|
|
@@ -2126,7 +2126,7 @@ ${formatLogMessage(tokenized)}
|
|
|
2126
2126
|
const result = await Promise.resolve(
|
|
2127
2127
|
ret
|
|
2128
2128
|
);
|
|
2129
|
-
if (result && (!result.success || result.error && _optionalChain([result, 'optionalAccess',
|
|
2129
|
+
if (result && (!result.success || result.error && _optionalChain([result, 'optionalAccess', _74 => _74.error, 'optionalAccess', _75 => _75.message]) && typeof _optionalChain([result, 'optionalAccess', _76 => _76.error, 'optionalAccess', _77 => _77.message]) === "string" && _optionalChain([result, 'optionalAccess', _78 => _78.error, 'optionalAccess', _79 => _79.name]) && typeof _optionalChain([result, 'optionalAccess', _80 => _80.error, 'optionalAccess', _81 => _81.name]) === "string")) {
|
|
2130
2130
|
writeTrace(
|
|
2131
2131
|
`Failure determined by the ${name} executor
|
|
2132
2132
|
${formatLogMessage(result)}`,
|
|
@@ -2134,10 +2134,10 @@ ${formatLogMessage(result)}`,
|
|
|
2134
2134
|
);
|
|
2135
2135
|
console.error(result);
|
|
2136
2136
|
throw new Error(`The ${name} executor failed to run`, {
|
|
2137
|
-
cause: _optionalChain([result, 'optionalAccess',
|
|
2137
|
+
cause: _optionalChain([result, 'optionalAccess', _82 => _82.error])
|
|
2138
2138
|
});
|
|
2139
2139
|
}
|
|
2140
|
-
if (_optionalChain([executorOptions, 'optionalAccess',
|
|
2140
|
+
if (_optionalChain([executorOptions, 'optionalAccess', _83 => _83.hooks, 'optionalAccess', _84 => _84.postProcess])) {
|
|
2141
2141
|
writeDebug("Running the postProcess hook...", config);
|
|
2142
2142
|
await Promise.resolve(executorOptions.hooks.postProcess(config));
|
|
2143
2143
|
writeDebug("Completed the postProcess hook", config);
|
|
@@ -2167,7 +2167,7 @@ ${formatLogMessage(result)}`,
|
|
|
2167
2167
|
};
|
|
2168
2168
|
var _isFunction2 = (value) => {
|
|
2169
2169
|
try {
|
|
2170
|
-
return value instanceof Function || typeof value === "function" || !!(_optionalChain([value, 'optionalAccess',
|
|
2170
|
+
return value instanceof Function || typeof value === "function" || !!(_optionalChain([value, 'optionalAccess', _85 => _85.constructor]) && _optionalChain([value, 'optionalAccess', _86 => _86.call]) && _optionalChain([value, 'optionalAccess', _87 => _87.apply]));
|
|
2171
2171
|
} catch (e) {
|
|
2172
2172
|
return false;
|
|
2173
2173
|
}
|
|
@@ -2193,7 +2193,7 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
2193
2193
|
);
|
|
2194
2194
|
config = await getConfig(workspaceRoot3);
|
|
2195
2195
|
}
|
|
2196
|
-
if (_optionalChain([generatorOptions, 'optionalAccess',
|
|
2196
|
+
if (_optionalChain([generatorOptions, 'optionalAccess', _88 => _88.hooks, 'optionalAccess', _89 => _89.applyDefaultOptions])) {
|
|
2197
2197
|
writeDebug("Running the applyDefaultOptions hook...", config);
|
|
2198
2198
|
options = await Promise.resolve(
|
|
2199
2199
|
generatorOptions.hooks.applyDefaultOptions(options, config)
|
|
@@ -2210,7 +2210,7 @@ ${Object.keys(_nullishCoalesce(options, () => ( {}))).map((key) => ` - ${key}=${
|
|
|
2210
2210
|
{ workspaceRoot: tree.root, config },
|
|
2211
2211
|
applyWorkspaceBaseTokens
|
|
2212
2212
|
);
|
|
2213
|
-
if (_optionalChain([generatorOptions, 'optionalAccess',
|
|
2213
|
+
if (_optionalChain([generatorOptions, 'optionalAccess', _90 => _90.hooks, 'optionalAccess', _91 => _91.preProcess])) {
|
|
2214
2214
|
writeDebug("Running the preProcess hook...", config);
|
|
2215
2215
|
await Promise.resolve(
|
|
2216
2216
|
generatorOptions.hooks.preProcess(tokenized, config)
|
|
@@ -2221,15 +2221,15 @@ ${Object.keys(_nullishCoalesce(options, () => ( {}))).map((key) => ` - ${key}=${
|
|
|
2221
2221
|
generatorFn(tree, tokenized, config)
|
|
2222
2222
|
);
|
|
2223
2223
|
if (result) {
|
|
2224
|
-
if (result.success === false || result.error && _optionalChain([result, 'optionalAccess',
|
|
2224
|
+
if (result.success === false || result.error && _optionalChain([result, 'optionalAccess', _92 => _92.error, 'optionalAccess', _93 => _93.message]) && typeof _optionalChain([result, 'optionalAccess', _94 => _94.error, 'optionalAccess', _95 => _95.message]) === "string" && _optionalChain([result, 'optionalAccess', _96 => _96.error, 'optionalAccess', _97 => _97.name]) && typeof _optionalChain([result, 'optionalAccess', _98 => _98.error, 'optionalAccess', _99 => _99.name]) === "string") {
|
|
2225
2225
|
throw new Error(`The ${name} generator failed to run`, {
|
|
2226
|
-
cause: _optionalChain([result, 'optionalAccess',
|
|
2226
|
+
cause: _optionalChain([result, 'optionalAccess', _100 => _100.error])
|
|
2227
2227
|
});
|
|
2228
2228
|
} else if (result.success && result.data) {
|
|
2229
2229
|
return result;
|
|
2230
2230
|
}
|
|
2231
2231
|
}
|
|
2232
|
-
if (_optionalChain([generatorOptions, 'optionalAccess',
|
|
2232
|
+
if (_optionalChain([generatorOptions, 'optionalAccess', _101 => _101.hooks, 'optionalAccess', _102 => _102.postProcess])) {
|
|
2233
2233
|
writeDebug("Running the postProcess hook...", config);
|
|
2234
2234
|
await Promise.resolve(generatorOptions.hooks.postProcess(config));
|
|
2235
2235
|
writeDebug("Completed the postProcess hook", config);
|
|
@@ -2344,10 +2344,10 @@ async function cargoCommand(...args) {
|
|
|
2344
2344
|
}
|
|
2345
2345
|
function cargoCommandSync(args = "", options) {
|
|
2346
2346
|
const normalizedOptions = {
|
|
2347
|
-
stdio: _nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
2347
|
+
stdio: _nullishCoalesce(_optionalChain([options, 'optionalAccess', _103 => _103.stdio]), () => ( "inherit")),
|
|
2348
2348
|
env: {
|
|
2349
2349
|
...process.env,
|
|
2350
|
-
..._optionalChain([options, 'optionalAccess',
|
|
2350
|
+
..._optionalChain([options, 'optionalAccess', _104 => _104.env])
|
|
2351
2351
|
}
|
|
2352
2352
|
};
|
|
2353
2353
|
try {
|
|
@@ -2380,7 +2380,7 @@ function cargoMetadata() {
|
|
|
2380
2380
|
}
|
|
2381
2381
|
function runProcess(processCmd, ...args) {
|
|
2382
2382
|
const metadata = cargoMetadata();
|
|
2383
|
-
const targetDir = _nullishCoalesce(_optionalChain([metadata, 'optionalAccess',
|
|
2383
|
+
const targetDir = _nullishCoalesce(_optionalChain([metadata, 'optionalAccess', _105 => _105.target_directory]), () => ( _devkit.joinPathFragments.call(void 0, _devkit.workspaceRoot, "dist")));
|
|
2384
2384
|
return new Promise((resolve2) => {
|
|
2385
2385
|
if (process.env.VERCEL) {
|
|
2386
2386
|
return resolve2({ success: true });
|
|
@@ -2644,7 +2644,7 @@ var addPackageDependencies = async (workspaceRoot3, projectRoot, projectName, pa
|
|
|
2644
2644
|
);
|
|
2645
2645
|
const localPackages = [];
|
|
2646
2646
|
for (const project of projectDependencies.dependencies.filter(
|
|
2647
|
-
(dep) => dep.node.type === "lib" && _optionalChain([dep, 'access',
|
|
2647
|
+
(dep) => dep.node.type === "lib" && _optionalChain([dep, 'access', _106 => _106.node, 'access', _107 => _107.data, 'optionalAccess', _108 => _108.root]) !== projectRoot && _optionalChain([dep, 'access', _109 => _109.node, 'access', _110 => _110.data, 'optionalAccess', _111 => _111.root]) !== workspaceRoot3
|
|
2648
2648
|
)) {
|
|
2649
2649
|
const projectNode = project.node;
|
|
2650
2650
|
if (projectNode.data.root) {
|
|
@@ -2676,13 +2676,13 @@ var addPackageDependencies = async (workspaceRoot3, projectRoot, projectName, pa
|
|
|
2676
2676
|
const projectJson = JSON.parse(projectJsonFile);
|
|
2677
2677
|
const projectName2 = projectJson.name;
|
|
2678
2678
|
const projectConfigurations = _projectgraph.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
|
|
2679
|
-
if (!_optionalChain([projectConfigurations, 'optionalAccess',
|
|
2679
|
+
if (!_optionalChain([projectConfigurations, 'optionalAccess', _112 => _112.projects, 'optionalAccess', _113 => _113[projectName2]])) {
|
|
2680
2680
|
throw new Error(
|
|
2681
2681
|
"The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project."
|
|
2682
2682
|
);
|
|
2683
2683
|
}
|
|
2684
|
-
const implicitDependencies = _optionalChain([projectConfigurations, 'access',
|
|
2685
|
-
if (_optionalChain([projectConfigurations, 'access',
|
|
2684
|
+
const implicitDependencies = _optionalChain([projectConfigurations, 'access', _114 => _114.projects, 'optionalAccess', _115 => _115[projectName2], 'access', _116 => _116.implicitDependencies, 'optionalAccess', _117 => _117.reduce, 'call', _118 => _118((ret, dep) => {
|
|
2685
|
+
if (_optionalChain([projectConfigurations, 'access', _119 => _119.projects, 'optionalAccess', _120 => _120[dep]])) {
|
|
2686
2686
|
const depPackageJsonPath = joinPaths(
|
|
2687
2687
|
workspaceRoot3,
|
|
2688
2688
|
projectConfigurations.projects[dep].root,
|
|
@@ -2702,13 +2702,13 @@ var addPackageDependencies = async (workspaceRoot3, projectRoot, projectName, pa
|
|
|
2702
2702
|
return ret;
|
|
2703
2703
|
}, [])]);
|
|
2704
2704
|
packageJson.dependencies = localPackages.reduce((ret, localPackage) => {
|
|
2705
|
-
if (!ret[localPackage.name] && !_optionalChain([implicitDependencies, 'optionalAccess',
|
|
2705
|
+
if (!ret[localPackage.name] && !_optionalChain([implicitDependencies, 'optionalAccess', _121 => _121.includes, 'call', _122 => _122(localPackage.name)]) && _optionalChain([packageJson, 'access', _123 => _123.devDependencies, 'optionalAccess', _124 => _124[localPackage.name]]) === void 0) {
|
|
2706
2706
|
ret[localPackage.name] = `^${localPackage.version || "0.0.1"}`;
|
|
2707
2707
|
}
|
|
2708
2708
|
return ret;
|
|
2709
2709
|
}, _nullishCoalesce(packageJson.dependencies, () => ( {})));
|
|
2710
2710
|
packageJson.devDependencies = localPackages.reduce((ret, localPackage) => {
|
|
2711
|
-
if (!ret[localPackage.name] && _optionalChain([implicitDependencies, 'optionalAccess',
|
|
2711
|
+
if (!ret[localPackage.name] && _optionalChain([implicitDependencies, 'optionalAccess', _125 => _125.includes, 'call', _126 => _126(localPackage.name)]) && _optionalChain([packageJson, 'access', _127 => _127.dependencies, 'optionalAccess', _128 => _128[localPackage.name]]) === void 0) {
|
|
2712
2712
|
ret[localPackage.name] = `^${localPackage.version || "0.0.1"}`;
|
|
2713
2713
|
}
|
|
2714
2714
|
return ret;
|
|
@@ -2790,7 +2790,7 @@ var _createtaskgraph = require('nx/src/tasks-runner/create-task-graph');
|
|
|
2790
2790
|
|
|
2791
2791
|
// ../esbuild/src/assets.ts
|
|
2792
2792
|
async function copyBuildAssets(context) {
|
|
2793
|
-
if (!_optionalChain([context, 'access',
|
|
2793
|
+
if (!_optionalChain([context, 'access', _129 => _129.result, 'optionalAccess', _130 => _130.errors, 'access', _131 => _131.length]) && _optionalChain([context, 'access', _132 => _132.options, 'access', _133 => _133.assets, 'optionalAccess', _134 => _134.length])) {
|
|
2794
2794
|
writeDebug(
|
|
2795
2795
|
` \u{1F4CB} Copying ${context.options.assets.length} asset files to output directory: ${context.outputPath}`,
|
|
2796
2796
|
context.workspaceConfig
|
|
@@ -2896,7 +2896,7 @@ async function resolveContext(userOptions) {
|
|
|
2896
2896
|
const projectJson = JSON.parse(projectJsonFile);
|
|
2897
2897
|
const projectName = projectJson.name || userOptions.name;
|
|
2898
2898
|
const projectConfigurations = _devkit.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
|
|
2899
|
-
if (!_optionalChain([projectConfigurations, 'optionalAccess',
|
|
2899
|
+
if (!_optionalChain([projectConfigurations, 'optionalAccess', _135 => _135.projects, 'optionalAccess', _136 => _136[projectName]])) {
|
|
2900
2900
|
throw new Error(
|
|
2901
2901
|
"The Build process failed because the project does not have a valid configuration in the project.json file. Check if the file exists in the root of the project."
|
|
2902
2902
|
);
|
|
@@ -3109,7 +3109,7 @@ async function executeTsup(context) {
|
|
|
3109
3109
|
|
|
3110
3110
|
// ../esbuild/src/build.ts
|
|
3111
3111
|
async function reportResults(context) {
|
|
3112
|
-
if (_optionalChain([context, 'access',
|
|
3112
|
+
if (_optionalChain([context, 'access', _137 => _137.result, 'optionalAccess', _138 => _138.errors, 'access', _139 => _139.length]) === 0) {
|
|
3113
3113
|
if (context.result.warnings.length > 0) {
|
|
3114
3114
|
writeWarning(
|
|
3115
3115
|
` \u{1F6A7} The following warnings occurred during the build: ${context.result.warnings.map((warning) => warning.text).join("\n")}`,
|
|
@@ -3120,7 +3120,7 @@ async function reportResults(context) {
|
|
|
3120
3120
|
` \u{1F4E6} The ${context.options.name} build completed successfully`,
|
|
3121
3121
|
context.workspaceConfig
|
|
3122
3122
|
);
|
|
3123
|
-
} else if (_optionalChain([context, 'access',
|
|
3123
|
+
} else if (_optionalChain([context, 'access', _140 => _140.result, 'optionalAccess', _141 => _141.errors]) && _optionalChain([context, 'access', _142 => _142.result, 'optionalAccess', _143 => _143.errors, 'access', _144 => _144.length]) > 0) {
|
|
3124
3124
|
writeError(
|
|
3125
3125
|
` \u274C The ${context.options.name} build failed with the following errors: ${context.result.errors.map((error) => error.text).join("\n")}`,
|
|
3126
3126
|
context.workspaceConfig
|
|
@@ -3173,7 +3173,7 @@ async function build(options) {
|
|
|
3173
3173
|
// ../workspace-tools/src/executors/esbuild/executor.ts
|
|
3174
3174
|
async function esbuildExecutorFn(options, context, config) {
|
|
3175
3175
|
writeInfo("\u{1F4E6} Running Storm ESBuild executor on the workspace", config);
|
|
3176
|
-
if (!_optionalChain([context, 'access',
|
|
3176
|
+
if (!_optionalChain([context, 'access', _145 => _145.projectsConfigurations, 'optionalAccess', _146 => _146.projects]) || !context.projectName || !context.projectsConfigurations.projects[context.projectName] || !_optionalChain([context, 'access', _147 => _147.projectsConfigurations, 'access', _148 => _148.projects, 'access', _149 => _149[context.projectName], 'optionalAccess', _150 => _150.root])) {
|
|
3177
3177
|
throw new Error(
|
|
3178
3178
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
3179
3179
|
);
|
|
@@ -3182,10 +3182,10 @@ async function esbuildExecutorFn(options, context, config) {
|
|
|
3182
3182
|
...options,
|
|
3183
3183
|
projectRoot: (
|
|
3184
3184
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
3185
|
-
_optionalChain([context, 'access',
|
|
3185
|
+
_optionalChain([context, 'access', _151 => _151.projectsConfigurations, 'access', _152 => _152.projects, 'optionalAccess', _153 => _153[context.projectName], 'access', _154 => _154.root])
|
|
3186
3186
|
),
|
|
3187
3187
|
name: context.projectName,
|
|
3188
|
-
sourceRoot: _optionalChain([context, 'access',
|
|
3188
|
+
sourceRoot: _optionalChain([context, 'access', _155 => _155.projectsConfigurations, 'access', _156 => _156.projects, 'optionalAccess', _157 => _157[context.projectName], 'optionalAccess', _158 => _158.sourceRoot]),
|
|
3189
3189
|
format: options.format,
|
|
3190
3190
|
platform: options.format
|
|
3191
3191
|
});
|
|
@@ -3318,15 +3318,15 @@ var _esbuildwhy = require('@size-limit/esbuild-why'); var _esbuildwhy2 = _intero
|
|
|
3318
3318
|
var _file = require('@size-limit/file'); var _file2 = _interopRequireDefault(_file);
|
|
3319
3319
|
var _sizelimit = require('size-limit'); var _sizelimit2 = _interopRequireDefault(_sizelimit);
|
|
3320
3320
|
async function sizeLimitExecutorFn(options, context, config) {
|
|
3321
|
-
if (!_optionalChain([context, 'optionalAccess',
|
|
3321
|
+
if (!_optionalChain([context, 'optionalAccess', _159 => _159.projectName]) || !_optionalChain([context, 'access', _160 => _160.projectsConfigurations, 'optionalAccess', _161 => _161.projects]) || !context.projectsConfigurations.projects[context.projectName]) {
|
|
3322
3322
|
throw new Error(
|
|
3323
3323
|
"The Size-Limit process failed because the context is not valid. Please run this command from a workspace."
|
|
3324
3324
|
);
|
|
3325
3325
|
}
|
|
3326
3326
|
writeInfo(`\u{1F4CF} Running Size-Limit on ${context.projectName}`, config);
|
|
3327
3327
|
_sizelimit2.default.call(void 0, [_file2.default, _esbuild2.default, _esbuildwhy2.default], {
|
|
3328
|
-
checks: _nullishCoalesce(_nullishCoalesce(options.entry, () => ( _optionalChain([context, 'access',
|
|
3329
|
-
_nullishCoalesce(_optionalChain([context, 'access',
|
|
3328
|
+
checks: _nullishCoalesce(_nullishCoalesce(options.entry, () => ( _optionalChain([context, 'access', _162 => _162.projectsConfigurations, 'access', _163 => _163.projects, 'access', _164 => _164[context.projectName], 'optionalAccess', _165 => _165.sourceRoot]))), () => ( _devkit.joinPathFragments.call(void 0,
|
|
3329
|
+
_nullishCoalesce(_optionalChain([context, 'access', _166 => _166.projectsConfigurations, 'access', _167 => _167.projects, 'access', _168 => _168[context.projectName], 'optionalAccess', _169 => _169.root]), () => ( "./")),
|
|
3330
3330
|
"src"
|
|
3331
3331
|
)))
|
|
3332
3332
|
}).then((result) => {
|
|
@@ -3396,7 +3396,7 @@ var executor_default8 = withRunExecutor(
|
|
|
3396
3396
|
var _jiti = require('jiti');
|
|
3397
3397
|
async function unbuildExecutorFn(options, context, config) {
|
|
3398
3398
|
writeInfo("\u{1F4E6} Running Storm Unbuild executor on the workspace", config);
|
|
3399
|
-
if (!_optionalChain([context, 'access',
|
|
3399
|
+
if (!_optionalChain([context, 'access', _170 => _170.projectsConfigurations, 'optionalAccess', _171 => _171.projects]) || !context.projectName || !context.projectsConfigurations.projects[context.projectName]) {
|
|
3400
3400
|
throw new Error(
|
|
3401
3401
|
"The Build process failed because the context is not valid. Please run this command from a workspace root directory."
|
|
3402
3402
|
);
|
|
@@ -3595,15 +3595,15 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
3595
3595
|
_devkit.addProjectConfiguration.call(void 0, tree, normalized.name, projectConfig);
|
|
3596
3596
|
let repository = {
|
|
3597
3597
|
type: "github",
|
|
3598
|
-
url: _optionalChain([config, 'optionalAccess',
|
|
3598
|
+
url: _optionalChain([config, 'optionalAccess', _172 => _172.repository]) || `https://github.com/${(typeof _optionalChain([config, 'optionalAccess', _173 => _173.organization]) === "string" ? _optionalChain([config, 'optionalAccess', _174 => _174.organization]) : _optionalChain([config, 'optionalAccess', _175 => _175.organization, 'optionalAccess', _176 => _176.name])) || "storm-software"}/${_optionalChain([config, 'optionalAccess', _177 => _177.namespace]) || _optionalChain([config, 'optionalAccess', _178 => _178.name]) || "repository"}.git`
|
|
3599
3599
|
};
|
|
3600
3600
|
let description = options.description || "A package developed by Storm Software used to create modern, scalable web applications.";
|
|
3601
3601
|
if (tree.exists("package.json")) {
|
|
3602
3602
|
const packageJson = _devkit.readJson.call(void 0, tree, "package.json");
|
|
3603
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3603
|
+
if (_optionalChain([packageJson, 'optionalAccess', _179 => _179.repository])) {
|
|
3604
3604
|
repository = packageJson.repository;
|
|
3605
3605
|
}
|
|
3606
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3606
|
+
if (_optionalChain([packageJson, 'optionalAccess', _180 => _180.description])) {
|
|
3607
3607
|
description = packageJson.description;
|
|
3608
3608
|
}
|
|
3609
3609
|
}
|
|
@@ -3658,9 +3658,9 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
3658
3658
|
_devkit.updateJson.call(void 0, tree, "package.json", (json) => ({
|
|
3659
3659
|
...json,
|
|
3660
3660
|
pnpm: {
|
|
3661
|
-
..._optionalChain([json, 'optionalAccess',
|
|
3661
|
+
..._optionalChain([json, 'optionalAccess', _181 => _181.pnpm]),
|
|
3662
3662
|
overrides: {
|
|
3663
|
-
..._optionalChain([json, 'optionalAccess',
|
|
3663
|
+
..._optionalChain([json, 'optionalAccess', _182 => _182.pnpm, 'optionalAccess', _183 => _183.overrides]),
|
|
3664
3664
|
[_nullishCoalesce(normalized.importPath, () => ( ""))]: "workspace:*"
|
|
3665
3665
|
}
|
|
3666
3666
|
}
|
|
@@ -3678,10 +3678,10 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
3678
3678
|
]);
|
|
3679
3679
|
if (tree.exists("package.json")) {
|
|
3680
3680
|
const packageJson = _devkit.readJson.call(void 0, tree, "package.json");
|
|
3681
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3681
|
+
if (_optionalChain([packageJson, 'optionalAccess', _184 => _184.repository])) {
|
|
3682
3682
|
repository = packageJson.repository;
|
|
3683
3683
|
}
|
|
3684
|
-
if (_optionalChain([packageJson, 'optionalAccess',
|
|
3684
|
+
if (_optionalChain([packageJson, 'optionalAccess', _185 => _185.description])) {
|
|
3685
3685
|
description = packageJson.description;
|
|
3686
3686
|
}
|
|
3687
3687
|
}
|
|
@@ -3718,22 +3718,22 @@ function getOutputPath(options) {
|
|
|
3718
3718
|
function createProjectTsConfigJson(tree, options) {
|
|
3719
3719
|
const tsconfig = {
|
|
3720
3720
|
extends: options.rootProject ? void 0 : _js.getRelativePathToRootTsConfig.call(void 0, tree, options.projectRoot),
|
|
3721
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3721
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _186 => _186.tsconfigOptions]), () => ( {})),
|
|
3722
3722
|
compilerOptions: {
|
|
3723
3723
|
...options.rootProject ? _js.tsConfigBaseOptions : {},
|
|
3724
3724
|
outDir: joinPaths(_devkit.offsetFromRoot.call(void 0, options.projectRoot), "dist/out-tsc"),
|
|
3725
3725
|
noEmit: true,
|
|
3726
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3726
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _187 => _187.tsconfigOptions, 'optionalAccess', _188 => _188.compilerOptions]), () => ( {}))
|
|
3727
3727
|
},
|
|
3728
|
-
files: [..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3728
|
+
files: [..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _189 => _189.tsconfigOptions, 'optionalAccess', _190 => _190.files]), () => ( []))],
|
|
3729
3729
|
include: [
|
|
3730
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3730
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _191 => _191.tsconfigOptions, 'optionalAccess', _192 => _192.include]), () => ( [])),
|
|
3731
3731
|
"src/**/*.ts",
|
|
3732
3732
|
"src/**/*.js",
|
|
3733
3733
|
"bin/**/*"
|
|
3734
3734
|
],
|
|
3735
3735
|
exclude: [
|
|
3736
|
-
..._nullishCoalesce(_optionalChain([options, 'optionalAccess',
|
|
3736
|
+
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _193 => _193.tsconfigOptions, 'optionalAccess', _194 => _194.exclude]), () => ( [])),
|
|
3737
3737
|
"jest.config.ts",
|
|
3738
3738
|
"src/**/*.spec.ts",
|
|
3739
3739
|
"src/**/*.test.ts"
|
|
@@ -3743,8 +3743,8 @@ function createProjectTsConfigJson(tree, options) {
|
|
|
3743
3743
|
}
|
|
3744
3744
|
async function normalizeOptions(tree, options, config) {
|
|
3745
3745
|
let importPath = options.importPath;
|
|
3746
|
-
if (!importPath && _optionalChain([config, 'optionalAccess',
|
|
3747
|
-
importPath = `@${_optionalChain([config, 'optionalAccess',
|
|
3746
|
+
if (!importPath && _optionalChain([config, 'optionalAccess', _195 => _195.namespace])) {
|
|
3747
|
+
importPath = `@${_optionalChain([config, 'optionalAccess', _196 => _196.namespace])}/${options.name}`;
|
|
3748
3748
|
}
|
|
3749
3749
|
if (options.publishable) {
|
|
3750
3750
|
if (!importPath) {
|
|
@@ -3909,7 +3909,7 @@ async function configSchemaGeneratorFn(tree, options, config) {
|
|
|
3909
3909
|
);
|
|
3910
3910
|
}
|
|
3911
3911
|
const outputPath = options.outputFile.replaceAll("{workspaceRoot}", "").replaceAll(
|
|
3912
|
-
_nullishCoalesce(_optionalChain([config, 'optionalAccess',
|
|
3912
|
+
_nullishCoalesce(_optionalChain([config, 'optionalAccess', _197 => _197.workspaceRoot]), () => ( findWorkspaceRoot())),
|
|
3913
3913
|
options.outputFile.startsWith("./") ? "" : "./"
|
|
3914
3914
|
);
|
|
3915
3915
|
writeTrace(
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkJ2WRWAXQjs = require('./chunk-J2WRWAXQ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/up/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkJ2WRWAXQjs.withPulumiExecutor.call(void 0, "up", (options) => [
|
|
7
7
|
"--suppress-progress",
|
|
8
8
|
options.stack && `--stack=${options.stack}`,
|
|
9
9
|
options.skipPreview && "--skip-preview",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkJ2WRWAXQjs = require('./chunk-J2WRWAXQ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/config/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkJ2WRWAXQjs.withPulumiExecutor.call(void 0, "config", (options) => [
|
|
7
7
|
options.action,
|
|
8
8
|
options.showSecrets && `--show-secrets`,
|
|
9
9
|
options.secret && `--secret`,
|
|
@@ -1,13 +1,13 @@
|
|
|
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 _chunk47XMMLVBjs = require('./chunk-47XMMLVB.js');
|
|
5
5
|
|
|
6
6
|
// src/base/base-executor.ts
|
|
7
7
|
var _path = require('path');
|
|
8
8
|
var _shelljs = require('shelljs');
|
|
9
9
|
var withPulumiExecutor = (command, argsMapper, executorOptions = {}) => async (_options, context) => {
|
|
10
|
-
return
|
|
10
|
+
return _chunk47XMMLVBjs.withRunExecutor.call(void 0,
|
|
11
11
|
`Pulumi \`${command}\` Command Executor`,
|
|
12
12
|
async (options, context2, config) => {
|
|
13
13
|
if (!_shelljs.which.call(void 0, "pulumi")) {
|
|
@@ -21,7 +21,7 @@ var withPulumiExecutor = (command, argsMapper, executorOptions = {}) => async (_
|
|
|
21
21
|
);
|
|
22
22
|
}
|
|
23
23
|
const { sourceRoot } = context2.projectsConfigurations.projects[context2.projectName];
|
|
24
|
-
|
|
24
|
+
_chunk47XMMLVBjs.run.call(void 0,
|
|
25
25
|
config,
|
|
26
26
|
["pulumi", command, ...argsMapper(options)].filter(Boolean).join(" "),
|
|
27
27
|
_path.join.call(void 0, config.workspaceRoot, options.root || sourceRoot),
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkJ2WRWAXQjs = require('./chunk-J2WRWAXQ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/preview/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkJ2WRWAXQjs.withPulumiExecutor.call(void 0,
|
|
7
7
|
"preview",
|
|
8
8
|
(options) => [
|
|
9
9
|
options.stack && `--stack=${options.stack}`,
|
|
@@ -5,7 +5,7 @@ var _chunkQDPXTR73js = require('./chunk-QDPXTR73.js');
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunk47XMMLVBjs = require('./chunk-47XMMLVB.js');
|
|
9
9
|
|
|
10
10
|
// src/generators/init/generator.ts
|
|
11
11
|
|
|
@@ -18,7 +18,7 @@ var _devkit = require('@nx/devkit');
|
|
|
18
18
|
var _fs = require('fs');
|
|
19
19
|
var _path = require('path');
|
|
20
20
|
async function initGeneratorFn(tree, options, config) {
|
|
21
|
-
const task =
|
|
21
|
+
const task = _chunk47XMMLVBjs.initGenerator.call(void 0, tree, options);
|
|
22
22
|
_devkit.addProjectConfiguration.call(void 0, tree, options.name || "deployment", {
|
|
23
23
|
root: options.directory || "./deployment",
|
|
24
24
|
projectType: "application",
|
|
@@ -54,14 +54,14 @@ async function initGeneratorFn(tree, options, config) {
|
|
|
54
54
|
}
|
|
55
55
|
return task;
|
|
56
56
|
}
|
|
57
|
-
var generator_default =
|
|
57
|
+
var generator_default = _chunk47XMMLVBjs.withRunGenerator.call(void 0,
|
|
58
58
|
"Initialize Storm Pulumi workspace",
|
|
59
59
|
initGeneratorFn
|
|
60
60
|
);
|
|
61
61
|
function generateNewPulumiProject(tree, options, config) {
|
|
62
62
|
return () => {
|
|
63
63
|
const template = _chunkQDPXTR73js.getCloudTemplateName.call(void 0, options.provider);
|
|
64
|
-
|
|
64
|
+
_chunk47XMMLVBjs.run.call(void 0,
|
|
65
65
|
config,
|
|
66
66
|
[
|
|
67
67
|
`pulumi new ${template}`,
|
|
@@ -85,7 +85,7 @@ function loginToPulumi(tree, options, config) {
|
|
|
85
85
|
if (options.login.startsWith("file://")) {
|
|
86
86
|
options.login = `file://${tree.root}/${options.directory || "./deployment"}/${options.login.replace("file://", "")}`;
|
|
87
87
|
}
|
|
88
|
-
|
|
88
|
+
_chunk47XMMLVBjs.run.call(void 0,
|
|
89
89
|
config,
|
|
90
90
|
["pulumi login", options.login].filter(Boolean).join(" "),
|
|
91
91
|
_path.join.call(void 0, config.workspaceRoot, options.directory || "./deployment"),
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkJ2WRWAXQjs = require('./chunk-J2WRWAXQ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/import/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkJ2WRWAXQjs.withPulumiExecutor.call(void 0, "import", (options) => [
|
|
7
7
|
options.target,
|
|
8
8
|
options.name,
|
|
9
9
|
options.id,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkJ2WRWAXQjs = require('./chunk-J2WRWAXQ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/refresh/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkJ2WRWAXQjs.withPulumiExecutor.call(void 0,
|
|
7
7
|
"refresh",
|
|
8
8
|
(options) => [
|
|
9
9
|
"--suppress-progress",
|
|
@@ -338,7 +338,7 @@ var correctPaths = function(path3) {
|
|
|
338
338
|
return ".";
|
|
339
339
|
}
|
|
340
340
|
path3 = normalizeWindowsPath(path3);
|
|
341
|
-
const isUNCPath = path3
|
|
341
|
+
const isUNCPath = path3?.match(_UNC_REGEX);
|
|
342
342
|
const isPathAbsolute = isAbsolute(path3);
|
|
343
343
|
const trailingSeparator = path3[path3.length - 1] === "/";
|
|
344
344
|
path3 = normalizeString(path3, !isPathAbsolute);
|
package/dist/executors.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";require('./chunk-XO62WWX4.js');
|
|
2
|
-
require('./chunk-
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
8
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-TOJ7Q4MA.js');
|
|
3
|
+
require('./chunk-PNLWTHXS.js');
|
|
4
|
+
require('./chunk-VF22JQJU.js');
|
|
5
|
+
require('./chunk-7IIO5K6T.js');
|
|
6
|
+
require('./chunk-GJ6YG27P.js');
|
|
7
|
+
require('./chunk-J2WRWAXQ.js');
|
|
8
|
+
require('./chunk-47XMMLVB.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import "./chunk-UV4HQO3Y.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-PWFMLPOH.mjs";
|
|
3
|
+
import "./chunk-XYGR5MTV.mjs";
|
|
4
|
+
import "./chunk-OIVTWIIB.mjs";
|
|
5
|
+
import "./chunk-FI5OKN5C.mjs";
|
|
6
|
+
import "./chunk-D7U6D4PF.mjs";
|
|
7
|
+
import "./chunk-JQ364IAG.mjs";
|
|
8
|
+
import "./chunk-XZMMJRYJ.mjs";
|
|
9
9
|
import "./chunk-QFSU34UE.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkSL4EXQIUjs = require('./chunk-SL4EXQIU.js');
|
|
5
5
|
require('./chunk-QDPXTR73.js');
|
|
6
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-47XMMLVB.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkSL4EXQIUjs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import "./chunk-23KFTIT2.mjs";
|
|
2
2
|
import {
|
|
3
3
|
initGeneratorFn
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-AA4IBBGW.mjs";
|
|
5
5
|
import "./chunk-5TB4HFDP.mjs";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-XZMMJRYJ.mjs";
|
|
7
7
|
import "./chunk-QFSU34UE.mjs";
|
|
8
8
|
export {
|
|
9
9
|
initGeneratorFn
|
package/dist/index.js
CHANGED
|
@@ -8,24 +8,24 @@
|
|
|
8
8
|
|
|
9
9
|
var _chunk7I63VQP3js = require('./chunk-7I63VQP3.js');
|
|
10
10
|
require('./chunk-XO62WWX4.js');
|
|
11
|
-
require('./chunk-
|
|
12
|
-
require('./chunk-
|
|
13
|
-
require('./chunk-
|
|
14
|
-
require('./chunk-
|
|
11
|
+
require('./chunk-TOJ7Q4MA.js');
|
|
12
|
+
require('./chunk-PNLWTHXS.js');
|
|
13
|
+
require('./chunk-VF22JQJU.js');
|
|
14
|
+
require('./chunk-7IIO5K6T.js');
|
|
15
15
|
require('./chunk-N2YKXZ5R.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkSL4EXQIUjs = require('./chunk-SL4EXQIU.js');
|
|
19
19
|
require('./chunk-GUQOEBFW.js');
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
var _chunkQDPXTR73js = require('./chunk-QDPXTR73.js');
|
|
24
|
-
require('./chunk-
|
|
24
|
+
require('./chunk-GJ6YG27P.js');
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
var
|
|
28
|
-
require('./chunk-
|
|
27
|
+
var _chunkJ2WRWAXQjs = require('./chunk-J2WRWAXQ.js');
|
|
28
|
+
require('./chunk-47XMMLVB.js');
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
|
|
@@ -37,4 +37,4 @@ require('./chunk-KG67CMSC.js');
|
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
exports.Provider = _chunkQDPXTR73js.Provider; exports.ec2Instance = _chunk7I63VQP3js.ec2Instance; exports.getAWSTemplateName = _chunk7I63VQP3js.getAWSTemplateName; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.getProviderOpts = _chunk7I63VQP3js.getProviderOpts; exports.initGeneratorFn =
|
|
40
|
+
exports.Provider = _chunkQDPXTR73js.Provider; exports.ec2Instance = _chunk7I63VQP3js.ec2Instance; exports.getAWSTemplateName = _chunk7I63VQP3js.getAWSTemplateName; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.getProviderOpts = _chunk7I63VQP3js.getProviderOpts; exports.initGeneratorFn = _chunkSL4EXQIUjs.initGeneratorFn; exports.securityGroup = _chunk7I63VQP3js.securityGroup; exports.subnet = _chunk7I63VQP3js.subnet; exports.vpc = _chunk7I63VQP3js.vpc; exports.withPulumiExecutor = _chunkJ2WRWAXQjs.withPulumiExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -8,24 +8,24 @@ import {
|
|
|
8
8
|
vpc
|
|
9
9
|
} from "./chunk-S6XCS2TA.mjs";
|
|
10
10
|
import "./chunk-UV4HQO3Y.mjs";
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-PWFMLPOH.mjs";
|
|
12
|
+
import "./chunk-XYGR5MTV.mjs";
|
|
13
|
+
import "./chunk-OIVTWIIB.mjs";
|
|
14
|
+
import "./chunk-FI5OKN5C.mjs";
|
|
15
15
|
import "./chunk-23KFTIT2.mjs";
|
|
16
16
|
import {
|
|
17
17
|
initGeneratorFn
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-AA4IBBGW.mjs";
|
|
19
19
|
import "./chunk-CA7S5MOH.mjs";
|
|
20
20
|
import {
|
|
21
21
|
Provider,
|
|
22
22
|
getCloudTemplateName
|
|
23
23
|
} from "./chunk-5TB4HFDP.mjs";
|
|
24
|
-
import "./chunk-
|
|
24
|
+
import "./chunk-D7U6D4PF.mjs";
|
|
25
25
|
import {
|
|
26
26
|
withPulumiExecutor
|
|
27
|
-
} from "./chunk-
|
|
28
|
-
import "./chunk-
|
|
27
|
+
} from "./chunk-JQ364IAG.mjs";
|
|
28
|
+
import "./chunk-XZMMJRYJ.mjs";
|
|
29
29
|
import "./chunk-QFSU34UE.mjs";
|
|
30
30
|
export {
|
|
31
31
|
Provider,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var _chunkJ2WRWAXQjs = require('../../chunk-J2WRWAXQ.js');
|
|
4
|
+
require('../../chunk-47XMMLVB.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.withPulumiExecutor =
|
|
7
|
+
exports.withPulumiExecutor = _chunkJ2WRWAXQjs.withPulumiExecutor;
|
package/dist/src/base/index.js
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
var _chunkQDPXTR73js = require('../../chunk-QDPXTR73.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
9
|
-
require('../../chunk-
|
|
8
|
+
var _chunkJ2WRWAXQjs = require('../../chunk-J2WRWAXQ.js');
|
|
9
|
+
require('../../chunk-47XMMLVB.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.Provider = _chunkQDPXTR73js.Provider; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.withPulumiExecutor =
|
|
14
|
+
exports.Provider = _chunkQDPXTR73js.Provider; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.withPulumiExecutor = _chunkJ2WRWAXQjs.withPulumiExecutor;
|
package/dist/src/base/index.mjs
CHANGED
|
@@ -5,8 +5,8 @@ import {
|
|
|
5
5
|
} from "../../chunk-5TB4HFDP.mjs";
|
|
6
6
|
import {
|
|
7
7
|
withPulumiExecutor
|
|
8
|
-
} from "../../chunk-
|
|
9
|
-
import "../../chunk-
|
|
8
|
+
} from "../../chunk-JQ364IAG.mjs";
|
|
9
|
+
import "../../chunk-XZMMJRYJ.mjs";
|
|
10
10
|
import "../../chunk-QFSU34UE.mjs";
|
|
11
11
|
export {
|
|
12
12
|
Provider,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkGJ6YG27Pjs = require('../../../chunk-GJ6YG27P.js');
|
|
4
|
+
require('../../../chunk-J2WRWAXQ.js');
|
|
5
|
+
require('../../../chunk-47XMMLVB.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkGJ6YG27Pjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-D7U6D4PF.mjs";
|
|
4
|
+
import "../../../chunk-JQ364IAG.mjs";
|
|
5
|
+
import "../../../chunk-XZMMJRYJ.mjs";
|
|
6
6
|
import "../../../chunk-QFSU34UE.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkTOJ7Q4MAjs = require('../../../chunk-TOJ7Q4MA.js');
|
|
4
|
+
require('../../../chunk-J2WRWAXQ.js');
|
|
5
|
+
require('../../../chunk-47XMMLVB.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkTOJ7Q4MAjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-PWFMLPOH.mjs";
|
|
4
|
+
import "../../../chunk-JQ364IAG.mjs";
|
|
5
|
+
import "../../../chunk-XZMMJRYJ.mjs";
|
|
6
6
|
import "../../../chunk-QFSU34UE.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkPNLWTHXSjs = require('../../../chunk-PNLWTHXS.js');
|
|
4
|
+
require('../../../chunk-J2WRWAXQ.js');
|
|
5
|
+
require('../../../chunk-47XMMLVB.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkPNLWTHXSjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-XYGR5MTV.mjs";
|
|
4
|
+
import "../../../chunk-JQ364IAG.mjs";
|
|
5
|
+
import "../../../chunk-XZMMJRYJ.mjs";
|
|
6
6
|
import "../../../chunk-QFSU34UE.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkVF22JQJUjs = require('../../../chunk-VF22JQJU.js');
|
|
4
|
+
require('../../../chunk-J2WRWAXQ.js');
|
|
5
|
+
require('../../../chunk-47XMMLVB.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkVF22JQJUjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-OIVTWIIB.mjs";
|
|
4
|
+
import "../../../chunk-JQ364IAG.mjs";
|
|
5
|
+
import "../../../chunk-XZMMJRYJ.mjs";
|
|
6
6
|
import "../../../chunk-QFSU34UE.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunk7IIO5K6Tjs = require('../../../chunk-7IIO5K6T.js');
|
|
4
|
+
require('../../../chunk-J2WRWAXQ.js');
|
|
5
|
+
require('../../../chunk-47XMMLVB.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunk7IIO5K6Tjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-FI5OKN5C.mjs";
|
|
4
|
+
import "../../../chunk-JQ364IAG.mjs";
|
|
5
|
+
import "../../../chunk-XZMMJRYJ.mjs";
|
|
6
6
|
import "../../../chunk-QFSU34UE.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkSL4EXQIUjs = require('../../../chunk-SL4EXQIU.js');
|
|
5
5
|
require('../../../chunk-QDPXTR73.js');
|
|
6
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-47XMMLVB.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkSL4EXQIUjs.generator_default; exports.initGeneratorFn = _chunkSL4EXQIUjs.initGeneratorFn;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
initGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-AA4IBBGW.mjs";
|
|
5
5
|
import "../../../chunk-5TB4HFDP.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-XZMMJRYJ.mjs";
|
|
7
7
|
import "../../../chunk-QFSU34UE.mjs";
|
|
8
8
|
export {
|
|
9
9
|
generator_default as default,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/pulumi-tools",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.3",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Tools for managing Pulumi infrastructure within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -156,8 +156,8 @@
|
|
|
156
156
|
"@pulumi/aws": "^6.83.0",
|
|
157
157
|
"@pulumi/awsx": "^2.22.0",
|
|
158
158
|
"@pulumi/pulumi": "^3.197.0",
|
|
159
|
-
"@storm-software/config": "^1.131.
|
|
160
|
-
"@storm-software/config-tools": "^1.185.
|
|
159
|
+
"@storm-software/config": "^1.131.3",
|
|
160
|
+
"@storm-software/config-tools": "^1.185.3",
|
|
161
161
|
"defu": "6.1.4",
|
|
162
162
|
"shelljs": "^0.8.5"
|
|
163
163
|
},
|
|
@@ -171,5 +171,5 @@
|
|
|
171
171
|
"publishConfig": { "access": "public" },
|
|
172
172
|
"executors": "./executors.json",
|
|
173
173
|
"generators": "./generators.json",
|
|
174
|
-
"gitHead": "
|
|
174
|
+
"gitHead": "1b9f901274134d51c4200e5797348cf9587203dc"
|
|
175
175
|
}
|