@storm-software/terraform-tools 0.62.3 → 0.62.5
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 +18 -0
- package/README.md +1 -1
- package/dist/{chunk-P7TIR2I6.js → chunk-2NXAAPRN.js} +2 -5
- package/dist/{chunk-4UUC5PL5.mjs → chunk-5MZLXAHB.mjs} +1 -1
- package/dist/{chunk-O6ULIZTX.js → chunk-6AKHBMSA.js} +2 -2
- package/dist/{chunk-ASN7N3MD.mjs → chunk-EOCIL5BE.mjs} +1 -1
- package/dist/{chunk-VM73HSDX.mjs → chunk-ET3UGY2L.mjs} +1 -1
- package/dist/{chunk-C3TATPNG.js → chunk-FZN35W4X.js} +2 -2
- package/dist/{chunk-LDL6GDGI.mjs → chunk-L4WE6GUL.mjs} +1 -1
- package/dist/{chunk-EBBFG7FE.js → chunk-N3EQIDHT.js} +2 -2
- package/dist/{chunk-OW3Z6C4U.mjs → chunk-NBKNLXBU.mjs} +1 -1
- package/dist/{chunk-YAQKI2DU.js → chunk-PD7YZBRS.js} +108 -108
- package/dist/{chunk-EDARDEZL.js → chunk-UHFIUDKJ.js} +2 -2
- package/dist/{chunk-LLEL65DB.mjs → chunk-V2SHLAIZ.mjs} +1 -1
- package/dist/{chunk-VD7U2ISL.mjs → chunk-WYONVDTO.mjs} +2 -5
- package/dist/{chunk-OZAMHBE3.js → chunk-XZU22PSP.js} +2 -2
- package/dist/executors.js +6 -6
- package/dist/executors.mjs +6 -6
- package/dist/generators.js +3 -3
- package/dist/generators.mjs +2 -2
- package/dist/index.js +8 -8
- package/dist/index.mjs +7 -7
- package/dist/src/base/index.js +3 -3
- package/dist/src/base/index.mjs +2 -2
- package/dist/src/base/terraform-executor.js +3 -3
- package/dist/src/base/terraform-executor.mjs +2 -2
- package/dist/src/executors/apply/executor.js +4 -4
- package/dist/src/executors/apply/executor.mjs +3 -3
- package/dist/src/executors/destroy/executor.js +4 -4
- package/dist/src/executors/destroy/executor.mjs +3 -3
- package/dist/src/executors/output/executor.js +4 -4
- package/dist/src/executors/output/executor.mjs +3 -3
- package/dist/src/executors/plan/executor.js +4 -4
- package/dist/src/executors/plan/executor.mjs +3 -3
- package/dist/src/generators/init/init.js +3 -3
- package/dist/src/generators/init/init.mjs +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# Changelog for Storm Ops - Terraform Tools
|
|
4
|
+
|
|
5
|
+
## [0.62.4](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.62.4) (2025-08-08)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update workspace dependencies and README markdown
|
|
10
|
+
([67e119b05](https://github.com/storm-software/storm-ops/commit/67e119b05))
|
|
11
|
+
|
|
12
|
+
## [0.62.3](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.62.3) (2025-08-07)
|
|
13
|
+
|
|
14
|
+
### Miscellaneous
|
|
15
|
+
|
|
16
|
+
- **monorepo:** Regenerate README files and update `wrangler`
|
|
17
|
+
([2231aafa7](https://github.com/storm-software/storm-ops/commit/2231aafa7))
|
|
18
|
+
|
|
1
19
|

|
|
2
20
|
|
|
3
21
|
# Changelog for Storm Ops - Terraform Tools
|
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 -->
|
|
@@ -1073,16 +1073,13 @@ schemaRegistry.add(packageManagerSchema, {
|
|
|
1073
1073
|
description: "The JavaScript/TypeScript package manager used by the repository"
|
|
1074
1074
|
});
|
|
1075
1075
|
var timezoneSchema = z._default(
|
|
1076
|
-
z.string().check(z.trim()
|
|
1076
|
+
z.string().check(z.trim()),
|
|
1077
1077
|
"America/New_York"
|
|
1078
1078
|
);
|
|
1079
1079
|
schemaRegistry.add(timezoneSchema, {
|
|
1080
1080
|
description: "The default timezone of the workspace"
|
|
1081
1081
|
});
|
|
1082
|
-
var localeSchema = z._default(
|
|
1083
|
-
z.string().check(z.trim(), z.toLowerCase()),
|
|
1084
|
-
"en-US"
|
|
1085
|
-
);
|
|
1082
|
+
var localeSchema = z._default(z.string().check(z.trim()), "en-US");
|
|
1086
1083
|
schemaRegistry.add(localeSchema, {
|
|
1087
1084
|
description: "The default locale of the workspace"
|
|
1088
1085
|
});
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkFZN35W4Xjs = require('./chunk-FZN35W4X.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/apply/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkFZN35W4Xjs.withTerraformExecutor.call(void 0, "apply");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -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(); } }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunk2NXAAPRNjs = require('./chunk-2NXAAPRN.js');
|
|
4
4
|
|
|
5
5
|
// ../config-tools/src/utilities/run.ts
|
|
6
6
|
var _child_process = require('child_process');
|
|
@@ -24,7 +24,7 @@ var run = (config, command, cwd = _nullishCoalesce(config.workspaceRoot, () => (
|
|
|
24
24
|
// src/base/terraform-executor.ts
|
|
25
25
|
var _shelljs = require('shelljs');
|
|
26
26
|
var withTerraformExecutor = (command, executorOptions = {}) => async (_options, context) => {
|
|
27
|
-
return
|
|
27
|
+
return _chunk2NXAAPRNjs.withRunExecutor.call(void 0,
|
|
28
28
|
`Terraform \`${command}\` Command Executor`,
|
|
29
29
|
async (options, context2, config) => {
|
|
30
30
|
if (!_shelljs.which.call(void 0, "tofu") || !_shelljs.which.call(void 0, "terraform")) {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkFZN35W4Xjs = require('./chunk-FZN35W4X.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/plan/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkFZN35W4Xjs.withTerraformExecutor.call(void 0, "plan");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunk2NXAAPRNjs = require('./chunk-2NXAAPRN.js');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
var _chunk3RG5ZIWIjs = require('./chunk-3RG5ZIWI.js');
|
|
@@ -147,7 +147,7 @@ async function cargoBuildExecutor(options, context) {
|
|
|
147
147
|
const command = buildCargoCommand("build", options, context);
|
|
148
148
|
return await cargoCommand(...command);
|
|
149
149
|
}
|
|
150
|
-
var executor_default =
|
|
150
|
+
var executor_default = _chunk2NXAAPRNjs.withRunExecutor.call(void 0,
|
|
151
151
|
"Cargo - Build",
|
|
152
152
|
cargoBuildExecutor,
|
|
153
153
|
{
|
|
@@ -167,7 +167,7 @@ async function cargoCheckExecutor(options, context) {
|
|
|
167
167
|
const command = buildCargoCommand("check", options, context);
|
|
168
168
|
return await cargoCommand(...command);
|
|
169
169
|
}
|
|
170
|
-
var executor_default2 =
|
|
170
|
+
var executor_default2 = _chunk2NXAAPRNjs.withRunExecutor.call(void 0,
|
|
171
171
|
"Cargo - Check",
|
|
172
172
|
cargoCheckExecutor,
|
|
173
173
|
{
|
|
@@ -186,7 +186,7 @@ async function cargoClippyExecutor(options, context) {
|
|
|
186
186
|
const command = buildCargoCommand("clippy", options, context);
|
|
187
187
|
return await cargoCommand(...command);
|
|
188
188
|
}
|
|
189
|
-
var executor_default3 =
|
|
189
|
+
var executor_default3 = _chunk2NXAAPRNjs.withRunExecutor.call(void 0,
|
|
190
190
|
"Cargo - Clippy",
|
|
191
191
|
cargoClippyExecutor,
|
|
192
192
|
{
|
|
@@ -209,7 +209,7 @@ async function cargoDocExecutor(options, context) {
|
|
|
209
209
|
const command = buildCargoCommand("doc", options, context);
|
|
210
210
|
return await cargoCommand(...command);
|
|
211
211
|
}
|
|
212
|
-
var executor_default4 =
|
|
212
|
+
var executor_default4 = _chunk2NXAAPRNjs.withRunExecutor.call(void 0,
|
|
213
213
|
"Cargo - Doc",
|
|
214
214
|
cargoDocExecutor,
|
|
215
215
|
{
|
|
@@ -235,7 +235,7 @@ async function cargoFormatExecutor(options, context) {
|
|
|
235
235
|
const command = buildCargoCommand("fmt", options, context);
|
|
236
236
|
return await cargoCommand(...command);
|
|
237
237
|
}
|
|
238
|
-
var executor_default5 =
|
|
238
|
+
var executor_default5 = _chunk2NXAAPRNjs.withRunExecutor.call(void 0,
|
|
239
239
|
"Cargo - Format",
|
|
240
240
|
cargoFormatExecutor,
|
|
241
241
|
{
|
|
@@ -314,9 +314,9 @@ var copyAssets = async (config, assets, outputPath, projectRoot, sourceRoot, gen
|
|
|
314
314
|
output: "src/"
|
|
315
315
|
});
|
|
316
316
|
}
|
|
317
|
-
|
|
317
|
+
_chunk2NXAAPRNjs.writeTrace.call(void 0,
|
|
318
318
|
`\u{1F4DD} Copying the following assets to the output directory:
|
|
319
|
-
${pendingAssets.map((pendingAsset) => typeof pendingAsset === "string" ? ` - ${pendingAsset} -> ${outputPath}` : ` - ${pendingAsset.input}/${pendingAsset.glob} -> ${
|
|
319
|
+
${pendingAssets.map((pendingAsset) => typeof pendingAsset === "string" ? ` - ${pendingAsset} -> ${outputPath}` : ` - ${pendingAsset.input}/${pendingAsset.glob} -> ${_chunk2NXAAPRNjs.joinPaths.call(void 0, outputPath, pendingAsset.output)}`).join("\n")}`,
|
|
320
320
|
config
|
|
321
321
|
);
|
|
322
322
|
const assetHandler = new (0, _copyassetshandler.CopyAssetsHandler)({
|
|
@@ -326,20 +326,20 @@ ${pendingAssets.map((pendingAsset) => typeof pendingAsset === "string" ? ` - ${p
|
|
|
326
326
|
assets: pendingAssets
|
|
327
327
|
});
|
|
328
328
|
await assetHandler.processAllAssetsOnce();
|
|
329
|
-
|
|
329
|
+
_chunk2NXAAPRNjs.writeTrace.call(void 0, "Completed copying assets to the output directory", config);
|
|
330
330
|
if (includeSrc === true) {
|
|
331
|
-
|
|
332
|
-
`\u{1F4DD} Adding banner and writing source files: ${
|
|
331
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0,
|
|
332
|
+
`\u{1F4DD} Adding banner and writing source files: ${_chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
333
333
|
outputPath,
|
|
334
334
|
"src"
|
|
335
335
|
)}`,
|
|
336
336
|
config
|
|
337
337
|
);
|
|
338
338
|
const files = await _glob.glob.call(void 0, [
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
339
|
+
_chunk2NXAAPRNjs.joinPaths.call(void 0, config.workspaceRoot, outputPath, "src/**/*.ts"),
|
|
340
|
+
_chunk2NXAAPRNjs.joinPaths.call(void 0, config.workspaceRoot, outputPath, "src/**/*.tsx"),
|
|
341
|
+
_chunk2NXAAPRNjs.joinPaths.call(void 0, config.workspaceRoot, outputPath, "src/**/*.js"),
|
|
342
|
+
_chunk2NXAAPRNjs.joinPaths.call(void 0, config.workspaceRoot, outputPath, "src/**/*.jsx")
|
|
343
343
|
]);
|
|
344
344
|
await Promise.allSettled(
|
|
345
345
|
files.map(
|
|
@@ -394,7 +394,7 @@ var addPackageDependencies = async (workspaceRoot3, projectRoot, projectName, pa
|
|
|
394
394
|
)) {
|
|
395
395
|
const projectNode = project.node;
|
|
396
396
|
if (projectNode.data.root) {
|
|
397
|
-
const projectPackageJsonPath =
|
|
397
|
+
const projectPackageJsonPath = _chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
398
398
|
workspaceRoot3,
|
|
399
399
|
projectNode.data.root,
|
|
400
400
|
"package.json"
|
|
@@ -412,11 +412,11 @@ var addPackageDependencies = async (workspaceRoot3, projectRoot, projectName, pa
|
|
|
412
412
|
}
|
|
413
413
|
}
|
|
414
414
|
if (localPackages.length > 0) {
|
|
415
|
-
|
|
415
|
+
_chunk2NXAAPRNjs.writeTrace.call(void 0,
|
|
416
416
|
`\u{1F4E6} Adding local packages to package.json: ${localPackages.map((p) => p.name).join(", ")}`
|
|
417
417
|
);
|
|
418
418
|
const projectJsonFile = await _promises.readFile.call(void 0,
|
|
419
|
-
|
|
419
|
+
_chunk2NXAAPRNjs.joinPaths.call(void 0, projectRoot, "project.json"),
|
|
420
420
|
"utf8"
|
|
421
421
|
);
|
|
422
422
|
const projectJson = JSON.parse(projectJsonFile);
|
|
@@ -429,7 +429,7 @@ var addPackageDependencies = async (workspaceRoot3, projectRoot, projectName, pa
|
|
|
429
429
|
}
|
|
430
430
|
const implicitDependencies = _optionalChain([projectConfigurations, 'access', _13 => _13.projects, 'optionalAccess', _14 => _14[projectName2], 'access', _15 => _15.implicitDependencies, 'optionalAccess', _16 => _16.reduce, 'call', _17 => _17((ret, dep) => {
|
|
431
431
|
if (_optionalChain([projectConfigurations, 'access', _18 => _18.projects, 'optionalAccess', _19 => _19[dep]])) {
|
|
432
|
-
const depPackageJsonPath =
|
|
432
|
+
const depPackageJsonPath = _chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
433
433
|
workspaceRoot3,
|
|
434
434
|
projectConfigurations.projects[dep].root,
|
|
435
435
|
"package.json"
|
|
@@ -460,14 +460,14 @@ var addPackageDependencies = async (workspaceRoot3, projectRoot, projectName, pa
|
|
|
460
460
|
return ret;
|
|
461
461
|
}, _nullishCoalesce(packageJson.devDependencies, () => ( {})));
|
|
462
462
|
} else {
|
|
463
|
-
|
|
463
|
+
_chunk2NXAAPRNjs.writeTrace.call(void 0, "\u{1F4E6} No local packages dependencies to add to package.json");
|
|
464
464
|
}
|
|
465
465
|
return packageJson;
|
|
466
466
|
};
|
|
467
467
|
var addWorkspacePackageJsonFields = async (workspaceConfig, projectRoot, sourceRoot, projectName, includeSrc = false, packageJson) => {
|
|
468
|
-
const workspaceRoot3 = workspaceConfig.workspaceRoot ? workspaceConfig.workspaceRoot :
|
|
468
|
+
const workspaceRoot3 = workspaceConfig.workspaceRoot ? workspaceConfig.workspaceRoot : _chunk2NXAAPRNjs.findWorkspaceRoot.call(void 0, );
|
|
469
469
|
const workspacePackageJsonContent = await _promises.readFile.call(void 0,
|
|
470
|
-
|
|
470
|
+
_chunk2NXAAPRNjs.joinPaths.call(void 0, workspaceRoot3, "package.json"),
|
|
471
471
|
"utf8"
|
|
472
472
|
);
|
|
473
473
|
const workspacePackageJson = JSON.parse(workspacePackageJsonContent);
|
|
@@ -478,7 +478,7 @@ var addWorkspacePackageJsonFields = async (workspaceConfig, projectRoot, sourceR
|
|
|
478
478
|
if (distSrc.startsWith("/")) {
|
|
479
479
|
distSrc = distSrc.substring(1);
|
|
480
480
|
}
|
|
481
|
-
packageJson.source ??= `${
|
|
481
|
+
packageJson.source ??= `${_chunk2NXAAPRNjs.joinPaths.call(void 0, distSrc, "index.ts").replaceAll("\\", "/")}`;
|
|
482
482
|
}
|
|
483
483
|
packageJson.files ??= ["dist/**/*"];
|
|
484
484
|
if (includeSrc === true && !packageJson.files.includes("src")) {
|
|
@@ -503,7 +503,7 @@ var addWorkspacePackageJsonFields = async (workspaceConfig, projectRoot, sourceR
|
|
|
503
503
|
packageJson.contributors = [packageJson.author];
|
|
504
504
|
}
|
|
505
505
|
packageJson.repository ??= workspacePackageJson.repository;
|
|
506
|
-
packageJson.repository.directory ??= projectRoot ? projectRoot :
|
|
506
|
+
packageJson.repository.directory ??= projectRoot ? projectRoot : _chunk2NXAAPRNjs.joinPaths.call(void 0, "packages", projectName);
|
|
507
507
|
return packageJson;
|
|
508
508
|
};
|
|
509
509
|
|
|
@@ -537,11 +537,11 @@ var _createtaskgraph = require('nx/src/tasks-runner/create-task-graph');
|
|
|
537
537
|
// ../esbuild/src/assets.ts
|
|
538
538
|
async function copyBuildAssets(context) {
|
|
539
539
|
if (!_optionalChain([context, 'access', _28 => _28.result, 'optionalAccess', _29 => _29.errors, 'access', _30 => _30.length]) && _optionalChain([context, 'access', _31 => _31.options, 'access', _32 => _32.assets, 'optionalAccess', _33 => _33.length])) {
|
|
540
|
-
|
|
540
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0,
|
|
541
541
|
` \u{1F4CB} Copying ${context.options.assets.length} asset files to output directory: ${context.outputPath}`,
|
|
542
542
|
context.workspaceConfig
|
|
543
543
|
);
|
|
544
|
-
const stopwatch =
|
|
544
|
+
const stopwatch = _chunk2NXAAPRNjs.getStopwatch.call(void 0, `${context.options.name} asset copy`);
|
|
545
545
|
await copyAssets(
|
|
546
546
|
context.workspaceConfig,
|
|
547
547
|
_nullishCoalesce(context.options.assets, () => ( [])),
|
|
@@ -622,15 +622,15 @@ async function resolveContext(userOptions) {
|
|
|
622
622
|
if (!workspaceRoot3) {
|
|
623
623
|
throw new Error("Cannot find Nx workspace root");
|
|
624
624
|
}
|
|
625
|
-
const workspaceConfig = await
|
|
625
|
+
const workspaceConfig = await _chunk2NXAAPRNjs.getWorkspaceConfig.call(void 0, true, {
|
|
626
626
|
workspaceRoot: workspaceRoot3.dir
|
|
627
627
|
});
|
|
628
|
-
|
|
629
|
-
const stopwatch =
|
|
628
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0, " \u2699\uFE0F Resolving build options", workspaceConfig);
|
|
629
|
+
const stopwatch = _chunk2NXAAPRNjs.getStopwatch.call(void 0, "Build options resolution");
|
|
630
630
|
const projectGraph = await _devkit.createProjectGraphAsync.call(void 0, {
|
|
631
631
|
exitOnError: true
|
|
632
632
|
});
|
|
633
|
-
const projectJsonPath =
|
|
633
|
+
const projectJsonPath = _chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
634
634
|
workspaceRoot3.dir,
|
|
635
635
|
projectRoot,
|
|
636
636
|
"project.json"
|
|
@@ -649,7 +649,7 @@ async function resolveContext(userOptions) {
|
|
|
649
649
|
}
|
|
650
650
|
const options = _defu2.default.call(void 0, userOptions, DEFAULT_BUILD_OPTIONS);
|
|
651
651
|
options.name ??= projectName;
|
|
652
|
-
const packageJsonPath =
|
|
652
|
+
const packageJsonPath = _chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
653
653
|
workspaceRoot3.dir,
|
|
654
654
|
options.projectRoot,
|
|
655
655
|
"package.json"
|
|
@@ -661,7 +661,7 @@ async function resolveContext(userOptions) {
|
|
|
661
661
|
const define = _defu2.default.call(void 0, _nullishCoalesce(options.define, () => ( {})), _nullishCoalesce(env, () => ( {})));
|
|
662
662
|
const resolvedOptions = {
|
|
663
663
|
...options,
|
|
664
|
-
tsconfig: userOptions.tsconfig === null ? void 0 : userOptions.tsconfig ? userOptions.tsconfig :
|
|
664
|
+
tsconfig: userOptions.tsconfig === null ? void 0 : userOptions.tsconfig ? userOptions.tsconfig : _chunk2NXAAPRNjs.joinPaths.call(void 0, workspaceRoot3.dir, projectRoot, "tsconfig.json"),
|
|
665
665
|
metafile: userOptions.mode === "development",
|
|
666
666
|
clean: false,
|
|
667
667
|
env,
|
|
@@ -686,8 +686,8 @@ async function resolveContext(userOptions) {
|
|
|
686
686
|
projectConfigurations,
|
|
687
687
|
projectName,
|
|
688
688
|
projectGraph,
|
|
689
|
-
sourceRoot: resolvedOptions.sourceRoot || projectJson.sourceRoot ||
|
|
690
|
-
outputPath: resolvedOptions.outputPath ||
|
|
689
|
+
sourceRoot: resolvedOptions.sourceRoot || projectJson.sourceRoot || _chunk2NXAAPRNjs.joinPaths.call(void 0, resolvedOptions.projectRoot, "src"),
|
|
690
|
+
outputPath: resolvedOptions.outputPath || _chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
691
691
|
workspaceConfig.workspaceRoot,
|
|
692
692
|
"dist",
|
|
693
693
|
resolvedOptions.projectRoot
|
|
@@ -696,10 +696,10 @@ async function resolveContext(userOptions) {
|
|
|
696
696
|
};
|
|
697
697
|
context.options.esbuildPlugins = [..._nullishCoalesce(context.options.esbuildPlugins, () => ( []))];
|
|
698
698
|
if (context.options.verbose) {
|
|
699
|
-
|
|
699
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0,
|
|
700
700
|
` \u2699\uFE0F Build options resolved:
|
|
701
701
|
|
|
702
|
-
${
|
|
702
|
+
${_chunk2NXAAPRNjs.formatLogMessage.call(void 0, context.options)}`,
|
|
703
703
|
workspaceConfig
|
|
704
704
|
);
|
|
705
705
|
}
|
|
@@ -711,10 +711,10 @@ ${_chunkP7TIR2I6js.formatLogMessage.call(void 0, context.options)}`,
|
|
|
711
711
|
|
|
712
712
|
|
|
713
713
|
async function generatePackageJson(context) {
|
|
714
|
-
if (context.options.generatePackageJson !== false && _fs.existsSync.call(void 0,
|
|
715
|
-
|
|
716
|
-
const stopwatch =
|
|
717
|
-
const packageJsonPath =
|
|
714
|
+
if (context.options.generatePackageJson !== false && _fs.existsSync.call(void 0, _chunk2NXAAPRNjs.joinPaths.call(void 0, context.options.projectRoot, "package.json"))) {
|
|
715
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0, " \u270D\uFE0F Writing package.json file", context.workspaceConfig);
|
|
716
|
+
const stopwatch = _chunk2NXAAPRNjs.getStopwatch.call(void 0, "Write package.json file");
|
|
717
|
+
const packageJsonPath = _chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
718
718
|
context.options.projectRoot,
|
|
719
719
|
"project.json"
|
|
720
720
|
);
|
|
@@ -722,7 +722,7 @@ async function generatePackageJson(context) {
|
|
|
722
722
|
throw new Error("Cannot find package.json configuration");
|
|
723
723
|
}
|
|
724
724
|
const packageJsonFile = await _promises2.default.readFile(
|
|
725
|
-
|
|
725
|
+
_chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
726
726
|
context.workspaceConfig.workspaceRoot,
|
|
727
727
|
context.options.projectRoot,
|
|
728
728
|
"package.json"
|
|
@@ -828,7 +828,7 @@ async function generatePackageJson(context) {
|
|
|
828
828
|
}
|
|
829
829
|
}
|
|
830
830
|
await _devkit.writeJsonFile.call(void 0,
|
|
831
|
-
|
|
831
|
+
_chunk2NXAAPRNjs.joinPaths.call(void 0, context.outputPath, "package.json"),
|
|
832
832
|
packageJson
|
|
833
833
|
);
|
|
834
834
|
stopwatch();
|
|
@@ -903,10 +903,10 @@ var depsCheckPlugin = (bundle) => ({
|
|
|
903
903
|
const filteredMissingDeps = missingDependencies.filter((dep) => {
|
|
904
904
|
return !missingIgnore.some((pattern) => dep.match(pattern)) && !peerDependencies.includes(dep);
|
|
905
905
|
});
|
|
906
|
-
|
|
906
|
+
_chunk2NXAAPRNjs.writeWarning.call(void 0,
|
|
907
907
|
`Unused Dependencies: ${JSON.stringify(filteredUnusedDeps)}`
|
|
908
908
|
);
|
|
909
|
-
|
|
909
|
+
_chunk2NXAAPRNjs.writeError.call(void 0,
|
|
910
910
|
`Missing Dependencies: ${JSON.stringify(filteredMissingDeps)}`
|
|
911
911
|
);
|
|
912
912
|
if (filteredMissingDeps.length > 0) {
|
|
@@ -921,14 +921,14 @@ ${JSON.stringify(filteredMissingDeps)}
|
|
|
921
921
|
// ../esbuild/src/tsup.ts
|
|
922
922
|
var _tsup = require('tsup');
|
|
923
923
|
async function executeTsup(context) {
|
|
924
|
-
|
|
924
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0,
|
|
925
925
|
` \u{1F680} Running ${context.options.name} build`,
|
|
926
926
|
context.workspaceConfig
|
|
927
927
|
);
|
|
928
|
-
const stopwatch =
|
|
928
|
+
const stopwatch = _chunk2NXAAPRNjs.getStopwatch.call(void 0, `${context.options.name} build`);
|
|
929
929
|
await _tsup.build.call(void 0, {
|
|
930
930
|
...context.options,
|
|
931
|
-
outDir: context.options.distDir ?
|
|
931
|
+
outDir: context.options.distDir ? _chunk2NXAAPRNjs.joinPaths.call(void 0, context.outputPath, context.options.distDir) : context.outputPath,
|
|
932
932
|
workspaceConfig: context.workspaceConfig
|
|
933
933
|
});
|
|
934
934
|
stopwatch();
|
|
@@ -939,17 +939,17 @@ async function executeTsup(context) {
|
|
|
939
939
|
async function reportResults(context) {
|
|
940
940
|
if (_optionalChain([context, 'access', _36 => _36.result, 'optionalAccess', _37 => _37.errors, 'access', _38 => _38.length]) === 0) {
|
|
941
941
|
if (context.result.warnings.length > 0) {
|
|
942
|
-
|
|
942
|
+
_chunk2NXAAPRNjs.writeWarning.call(void 0,
|
|
943
943
|
` \u{1F6A7} The following warnings occurred during the build: ${context.result.warnings.map((warning) => warning.text).join("\n")}`,
|
|
944
944
|
context.workspaceConfig
|
|
945
945
|
);
|
|
946
946
|
}
|
|
947
|
-
|
|
947
|
+
_chunk2NXAAPRNjs.writeSuccess.call(void 0,
|
|
948
948
|
` \u{1F4E6} The ${context.options.name} build completed successfully`,
|
|
949
949
|
context.workspaceConfig
|
|
950
950
|
);
|
|
951
951
|
} else if (_optionalChain([context, 'access', _39 => _39.result, 'optionalAccess', _40 => _40.errors]) && _optionalChain([context, 'access', _41 => _41.result, 'optionalAccess', _42 => _42.errors, 'access', _43 => _43.length]) > 0) {
|
|
952
|
-
|
|
952
|
+
_chunk2NXAAPRNjs.writeError.call(void 0,
|
|
953
953
|
` \u274C The ${context.options.name} build failed with the following errors: ${context.result.errors.map((error) => error.text).join("\n")}`,
|
|
954
954
|
context.workspaceConfig
|
|
955
955
|
);
|
|
@@ -986,19 +986,19 @@ async function dependencyCheck(options) {
|
|
|
986
986
|
}
|
|
987
987
|
async function cleanOutputPath(context) {
|
|
988
988
|
if (context.clean !== false && context.outputPath) {
|
|
989
|
-
|
|
989
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0,
|
|
990
990
|
` \u{1F9F9} Cleaning ${context.options.name} output path: ${context.outputPath}`,
|
|
991
991
|
context.workspaceConfig
|
|
992
992
|
);
|
|
993
|
-
const stopwatch =
|
|
993
|
+
const stopwatch = _chunk2NXAAPRNjs.getStopwatch.call(void 0, `${context.options.name} output clean`);
|
|
994
994
|
await cleanDirectories(context.outputPath);
|
|
995
995
|
stopwatch();
|
|
996
996
|
}
|
|
997
997
|
return context;
|
|
998
998
|
}
|
|
999
999
|
async function build2(options) {
|
|
1000
|
-
|
|
1001
|
-
const stopwatch =
|
|
1000
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0, ` \u26A1 Executing Storm ESBuild pipeline`);
|
|
1001
|
+
const stopwatch = _chunk2NXAAPRNjs.getStopwatch.call(void 0, "ESBuild pipeline");
|
|
1002
1002
|
try {
|
|
1003
1003
|
const opts = Array.isArray(options) ? options : [options];
|
|
1004
1004
|
if (opts.length === 0) {
|
|
@@ -1013,9 +1013,9 @@ async function build2(options) {
|
|
|
1013
1013
|
executeTsup(context)
|
|
1014
1014
|
]);
|
|
1015
1015
|
await reportResults(context);
|
|
1016
|
-
|
|
1016
|
+
_chunk2NXAAPRNjs.writeSuccess.call(void 0, " \u{1F3C1} ESBuild pipeline build completed successfully");
|
|
1017
1017
|
} catch (error) {
|
|
1018
|
-
|
|
1018
|
+
_chunk2NXAAPRNjs.writeFatal.call(void 0,
|
|
1019
1019
|
"Fatal errors that the build process could not recover from have occured. The build process has been terminated."
|
|
1020
1020
|
);
|
|
1021
1021
|
throw error;
|
|
@@ -1026,7 +1026,7 @@ async function build2(options) {
|
|
|
1026
1026
|
|
|
1027
1027
|
// ../workspace-tools/src/executors/esbuild/executor.ts
|
|
1028
1028
|
async function esbuildExecutorFn(options, context, config) {
|
|
1029
|
-
|
|
1029
|
+
_chunk2NXAAPRNjs.writeInfo.call(void 0, "\u{1F4E6} Running Storm ESBuild executor on the workspace", config);
|
|
1030
1030
|
if (!_optionalChain([context, 'access', _44 => _44.projectsConfigurations, 'optionalAccess', _45 => _45.projects]) || !context.projectName || !context.projectsConfigurations.projects[context.projectName] || !_optionalChain([context, 'access', _46 => _46.projectsConfigurations, 'access', _47 => _47.projects, 'access', _48 => _48[context.projectName], 'optionalAccess', _49 => _49.root])) {
|
|
1031
1031
|
throw new Error(
|
|
1032
1032
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
@@ -1044,7 +1044,7 @@ async function esbuildExecutorFn(options, context, config) {
|
|
|
1044
1044
|
success: true
|
|
1045
1045
|
};
|
|
1046
1046
|
}
|
|
1047
|
-
var executor_default6 =
|
|
1047
|
+
var executor_default6 = _chunk2NXAAPRNjs.withRunExecutor.call(void 0,
|
|
1048
1048
|
"Storm ESBuild build",
|
|
1049
1049
|
esbuildExecutorFn,
|
|
1050
1050
|
{
|
|
@@ -1161,14 +1161,14 @@ async function sizeLimitExecutorFn(options, context, config) {
|
|
|
1161
1161
|
"The Size-Limit process failed because the context is not valid. Please run this command from a workspace."
|
|
1162
1162
|
);
|
|
1163
1163
|
}
|
|
1164
|
-
|
|
1164
|
+
_chunk2NXAAPRNjs.writeInfo.call(void 0, `\u{1F4CF} Running Size-Limit on ${context.projectName}`, config);
|
|
1165
1165
|
_sizelimit2.default.call(void 0, [_file2.default, _esbuild3.default, _esbuildwhy2.default], {
|
|
1166
1166
|
checks: _nullishCoalesce(_nullishCoalesce(options.entry, () => ( _optionalChain([context, 'access', _61 => _61.projectsConfigurations, 'access', _62 => _62.projects, 'access', _63 => _63[context.projectName], 'optionalAccess', _64 => _64.sourceRoot]))), () => ( _devkit.joinPathFragments.call(void 0,
|
|
1167
1167
|
_nullishCoalesce(_optionalChain([context, 'access', _65 => _65.projectsConfigurations, 'access', _66 => _66.projects, 'access', _67 => _67[context.projectName], 'optionalAccess', _68 => _68.root]), () => ( "./")),
|
|
1168
1168
|
"src"
|
|
1169
1169
|
)))
|
|
1170
1170
|
}).then((result) => {
|
|
1171
|
-
|
|
1171
|
+
_chunk2NXAAPRNjs.writeInfo.call(void 0,
|
|
1172
1172
|
`\u{1F4CF} ${context.projectName} Size-Limit result: ${JSON.stringify(result)}`,
|
|
1173
1173
|
config
|
|
1174
1174
|
);
|
|
@@ -1177,7 +1177,7 @@ async function sizeLimitExecutorFn(options, context, config) {
|
|
|
1177
1177
|
success: true
|
|
1178
1178
|
};
|
|
1179
1179
|
}
|
|
1180
|
-
var executor_default7 =
|
|
1180
|
+
var executor_default7 = _chunk2NXAAPRNjs.withRunExecutor.call(void 0,
|
|
1181
1181
|
"Size-Limit Performance Test Executor",
|
|
1182
1182
|
sizeLimitExecutorFn,
|
|
1183
1183
|
{
|
|
@@ -1195,12 +1195,12 @@ var _fsextra = require('fs-extra');
|
|
|
1195
1195
|
var _TypiaProgrammerjs = require('typia/lib/programmers/TypiaProgrammer.js');
|
|
1196
1196
|
async function typiaExecutorFn(options, _, config) {
|
|
1197
1197
|
if (options.clean !== false) {
|
|
1198
|
-
|
|
1198
|
+
_chunk2NXAAPRNjs.writeInfo.call(void 0, `\u{1F9F9} Cleaning output path: ${options.outputPath}`, config);
|
|
1199
1199
|
_fsextra.removeSync.call(void 0, options.outputPath);
|
|
1200
1200
|
}
|
|
1201
1201
|
await Promise.all(
|
|
1202
1202
|
options.entry.map((entry) => {
|
|
1203
|
-
|
|
1203
|
+
_chunk2NXAAPRNjs.writeInfo.call(void 0, `\u{1F680} Running Typia on entry: ${entry}`, config);
|
|
1204
1204
|
return _TypiaProgrammerjs.TypiaProgrammer.build({
|
|
1205
1205
|
input: entry,
|
|
1206
1206
|
output: options.outputPath,
|
|
@@ -1212,7 +1212,7 @@ async function typiaExecutorFn(options, _, config) {
|
|
|
1212
1212
|
success: true
|
|
1213
1213
|
};
|
|
1214
1214
|
}
|
|
1215
|
-
var executor_default8 =
|
|
1215
|
+
var executor_default8 = _chunk2NXAAPRNjs.withRunExecutor.call(void 0,
|
|
1216
1216
|
"Typia runtime validation generator",
|
|
1217
1217
|
typiaExecutorFn,
|
|
1218
1218
|
{
|
|
@@ -1233,7 +1233,7 @@ var executor_default8 = _chunkP7TIR2I6js.withRunExecutor.call(void 0,
|
|
|
1233
1233
|
|
|
1234
1234
|
var _jiti = require('jiti');
|
|
1235
1235
|
async function unbuildExecutorFn(options, context, config) {
|
|
1236
|
-
|
|
1236
|
+
_chunk2NXAAPRNjs.writeInfo.call(void 0, "\u{1F4E6} Running Storm Unbuild executor on the workspace", config);
|
|
1237
1237
|
if (!_optionalChain([context, 'access', _69 => _69.projectsConfigurations, 'optionalAccess', _70 => _70.projects]) || !context.projectName || !context.projectsConfigurations.projects[context.projectName]) {
|
|
1238
1238
|
throw new Error(
|
|
1239
1239
|
"The Build process failed because the context is not valid. Please run this command from a workspace root directory."
|
|
@@ -1250,7 +1250,7 @@ async function unbuildExecutorFn(options, context, config) {
|
|
|
1250
1250
|
);
|
|
1251
1251
|
}
|
|
1252
1252
|
const jiti = _jiti.createJiti.call(void 0, config.workspaceRoot, {
|
|
1253
|
-
fsCache: config.skipCache ? false :
|
|
1253
|
+
fsCache: config.skipCache ? false : _chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
1254
1254
|
config.workspaceRoot,
|
|
1255
1255
|
config.directories.cache || "node_modules/.cache/storm",
|
|
1256
1256
|
"jiti"
|
|
@@ -1272,7 +1272,7 @@ async function unbuildExecutorFn(options, context, config) {
|
|
|
1272
1272
|
{
|
|
1273
1273
|
stubOptions: {
|
|
1274
1274
|
jiti: {
|
|
1275
|
-
fsCache: config.skipCache ? false :
|
|
1275
|
+
fsCache: config.skipCache ? false : _chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
1276
1276
|
config.workspaceRoot,
|
|
1277
1277
|
config.directories.cache || "node_modules/.cache/storm",
|
|
1278
1278
|
"jiti"
|
|
@@ -1301,7 +1301,7 @@ async function unbuildExecutorFn(options, context, config) {
|
|
|
1301
1301
|
success: true
|
|
1302
1302
|
};
|
|
1303
1303
|
}
|
|
1304
|
-
var executor_default9 =
|
|
1304
|
+
var executor_default9 = _chunk2NXAAPRNjs.withRunExecutor.call(void 0,
|
|
1305
1305
|
"TypeScript Unbuild build",
|
|
1306
1306
|
unbuildExecutorFn,
|
|
1307
1307
|
{
|
|
@@ -1332,45 +1332,45 @@ var executor_default9 = _chunkP7TIR2I6js.withRunExecutor.call(void 0,
|
|
|
1332
1332
|
var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
1333
1333
|
skipReadingConfig: false
|
|
1334
1334
|
}) => async (tree, _options) => {
|
|
1335
|
-
const stopwatch =
|
|
1335
|
+
const stopwatch = _chunk2NXAAPRNjs.getStopwatch.call(void 0, name);
|
|
1336
1336
|
let options = _options;
|
|
1337
1337
|
let config;
|
|
1338
1338
|
try {
|
|
1339
|
-
|
|
1339
|
+
_chunk2NXAAPRNjs.writeInfo.call(void 0, `\u26A1 Running the ${name} generator...
|
|
1340
1340
|
|
|
1341
1341
|
`, config);
|
|
1342
|
-
const workspaceRoot3 =
|
|
1342
|
+
const workspaceRoot3 = _chunk2NXAAPRNjs.findWorkspaceRoot.call(void 0, );
|
|
1343
1343
|
if (!generatorOptions.skipReadingConfig) {
|
|
1344
|
-
|
|
1344
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0,
|
|
1345
1345
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
1346
1346
|
- workspaceRoot: ${workspaceRoot3}`,
|
|
1347
1347
|
config
|
|
1348
1348
|
);
|
|
1349
|
-
config = await
|
|
1349
|
+
config = await _chunk2NXAAPRNjs.getConfig.call(void 0, workspaceRoot3);
|
|
1350
1350
|
}
|
|
1351
1351
|
if (_optionalChain([generatorOptions, 'optionalAccess', _71 => _71.hooks, 'optionalAccess', _72 => _72.applyDefaultOptions])) {
|
|
1352
|
-
|
|
1352
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0, "Running the applyDefaultOptions hook...", config);
|
|
1353
1353
|
options = await Promise.resolve(
|
|
1354
1354
|
generatorOptions.hooks.applyDefaultOptions(options, config)
|
|
1355
1355
|
);
|
|
1356
|
-
|
|
1356
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0, "Completed the applyDefaultOptions hook", config);
|
|
1357
1357
|
}
|
|
1358
|
-
|
|
1358
|
+
_chunk2NXAAPRNjs.writeTrace.call(void 0,
|
|
1359
1359
|
`Generator schema options \u2699\uFE0F
|
|
1360
1360
|
${Object.keys(_nullishCoalesce(options, () => ( {}))).map((key) => ` - ${key}=${JSON.stringify(options[key])}`).join("\n")}`,
|
|
1361
1361
|
config
|
|
1362
1362
|
);
|
|
1363
|
-
const tokenized = await
|
|
1363
|
+
const tokenized = await _chunk2NXAAPRNjs.applyWorkspaceTokens.call(void 0,
|
|
1364
1364
|
options,
|
|
1365
1365
|
{ workspaceRoot: tree.root, config },
|
|
1366
|
-
|
|
1366
|
+
_chunk2NXAAPRNjs.applyWorkspaceBaseTokens
|
|
1367
1367
|
);
|
|
1368
1368
|
if (_optionalChain([generatorOptions, 'optionalAccess', _73 => _73.hooks, 'optionalAccess', _74 => _74.preProcess])) {
|
|
1369
|
-
|
|
1369
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0, "Running the preProcess hook...", config);
|
|
1370
1370
|
await Promise.resolve(
|
|
1371
1371
|
generatorOptions.hooks.preProcess(tokenized, config)
|
|
1372
1372
|
);
|
|
1373
|
-
|
|
1373
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0, "Completed the preProcess hook", config);
|
|
1374
1374
|
}
|
|
1375
1375
|
const result = await Promise.resolve(
|
|
1376
1376
|
generatorFn(tree, tokenized, config)
|
|
@@ -1385,21 +1385,21 @@ ${Object.keys(_nullishCoalesce(options, () => ( {}))).map((key) => ` - ${key}=${
|
|
|
1385
1385
|
}
|
|
1386
1386
|
}
|
|
1387
1387
|
if (_optionalChain([generatorOptions, 'optionalAccess', _84 => _84.hooks, 'optionalAccess', _85 => _85.postProcess])) {
|
|
1388
|
-
|
|
1388
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0, "Running the postProcess hook...", config);
|
|
1389
1389
|
await Promise.resolve(generatorOptions.hooks.postProcess(config));
|
|
1390
|
-
|
|
1390
|
+
_chunk2NXAAPRNjs.writeDebug.call(void 0, "Completed the postProcess hook", config);
|
|
1391
1391
|
}
|
|
1392
1392
|
return () => {
|
|
1393
|
-
|
|
1393
|
+
_chunk2NXAAPRNjs.writeSuccess.call(void 0, `Completed running the ${name} generator!
|
|
1394
1394
|
`, config);
|
|
1395
1395
|
};
|
|
1396
1396
|
} catch (error) {
|
|
1397
1397
|
return () => {
|
|
1398
|
-
|
|
1398
|
+
_chunk2NXAAPRNjs.writeFatal.call(void 0,
|
|
1399
1399
|
"A fatal error occurred while running the generator - the process was forced to terminate",
|
|
1400
1400
|
config
|
|
1401
1401
|
);
|
|
1402
|
-
|
|
1402
|
+
_chunk2NXAAPRNjs.writeError.call(void 0,
|
|
1403
1403
|
`An exception was thrown in the generator's process
|
|
1404
1404
|
- Details: ${error.message}
|
|
1405
1405
|
- Stacktrace: ${error.stack}`,
|
|
@@ -1465,16 +1465,16 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
1465
1465
|
const projectConfig = {
|
|
1466
1466
|
root: normalized.directory,
|
|
1467
1467
|
projectType: "library",
|
|
1468
|
-
sourceRoot:
|
|
1468
|
+
sourceRoot: _chunk2NXAAPRNjs.joinPaths.call(void 0, _nullishCoalesce(normalized.directory, () => ( "")), "src"),
|
|
1469
1469
|
targets: {
|
|
1470
1470
|
build: {
|
|
1471
1471
|
executor: options.buildExecutor,
|
|
1472
1472
|
outputs: ["{options.outputPath}"],
|
|
1473
1473
|
options: {
|
|
1474
|
-
entry: [
|
|
1474
|
+
entry: [_chunk2NXAAPRNjs.joinPaths.call(void 0, normalized.projectRoot, "src", "index.ts")],
|
|
1475
1475
|
outputPath: getOutputPath(normalized),
|
|
1476
|
-
tsconfig:
|
|
1477
|
-
project:
|
|
1476
|
+
tsconfig: _chunk2NXAAPRNjs.joinPaths.call(void 0, normalized.projectRoot, "tsconfig.json"),
|
|
1477
|
+
project: _chunk2NXAAPRNjs.joinPaths.call(void 0, normalized.projectRoot, "package.json"),
|
|
1478
1478
|
defaultConfiguration: "production",
|
|
1479
1479
|
platform: "neutral",
|
|
1480
1480
|
assets: [
|
|
@@ -1531,7 +1531,7 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
1531
1531
|
if (!normalized.importPath) {
|
|
1532
1532
|
normalized.importPath = normalized.name;
|
|
1533
1533
|
}
|
|
1534
|
-
const packageJsonPath =
|
|
1534
|
+
const packageJsonPath = _chunk2NXAAPRNjs.joinPaths.call(void 0, normalized.projectRoot, "package.json");
|
|
1535
1535
|
if (tree.exists(packageJsonPath)) {
|
|
1536
1536
|
_devkit.updateJson.call(void 0, tree, packageJsonPath, (json) => {
|
|
1537
1537
|
if (!normalized.importPath) {
|
|
@@ -1588,14 +1588,14 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
1588
1588
|
}));
|
|
1589
1589
|
}
|
|
1590
1590
|
_js.addTsConfigPath.call(void 0, tree, normalized.importPath, [
|
|
1591
|
-
|
|
1591
|
+
_chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
1592
1592
|
normalized.projectRoot,
|
|
1593
1593
|
"./src",
|
|
1594
1594
|
`index.${normalized.js ? "js" : "ts"}`
|
|
1595
1595
|
)
|
|
1596
1596
|
]);
|
|
1597
|
-
_js.addTsConfigPath.call(void 0, tree,
|
|
1598
|
-
|
|
1597
|
+
_js.addTsConfigPath.call(void 0, tree, _chunk2NXAAPRNjs.joinPaths.call(void 0, normalized.importPath, "/*"), [
|
|
1598
|
+
_chunk2NXAAPRNjs.joinPaths.call(void 0, normalized.projectRoot, "./src", "/*")
|
|
1599
1599
|
]);
|
|
1600
1600
|
if (tree.exists("package.json")) {
|
|
1601
1601
|
const packageJson = _devkit.readJson.call(void 0, tree, "package.json");
|
|
@@ -1606,7 +1606,7 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
1606
1606
|
description = packageJson.description;
|
|
1607
1607
|
}
|
|
1608
1608
|
}
|
|
1609
|
-
const tsconfigPath =
|
|
1609
|
+
const tsconfigPath = _chunk2NXAAPRNjs.joinPaths.call(void 0, normalized.projectRoot, "tsconfig.json");
|
|
1610
1610
|
if (tree.exists(tsconfigPath)) {
|
|
1611
1611
|
_devkit.updateJson.call(void 0, tree, tsconfigPath, (json) => {
|
|
1612
1612
|
json.composite ??= true;
|
|
@@ -1634,7 +1634,7 @@ function getOutputPath(options) {
|
|
|
1634
1634
|
} else {
|
|
1635
1635
|
parts.push(options.projectRoot);
|
|
1636
1636
|
}
|
|
1637
|
-
return
|
|
1637
|
+
return _chunk2NXAAPRNjs.joinPaths.call(void 0, ...parts);
|
|
1638
1638
|
}
|
|
1639
1639
|
function createProjectTsConfigJson(tree, options) {
|
|
1640
1640
|
const tsconfig = {
|
|
@@ -1642,7 +1642,7 @@ function createProjectTsConfigJson(tree, options) {
|
|
|
1642
1642
|
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _100 => _100.tsconfigOptions]), () => ( {})),
|
|
1643
1643
|
compilerOptions: {
|
|
1644
1644
|
...options.rootProject ? _js.tsConfigBaseOptions : {},
|
|
1645
|
-
outDir:
|
|
1645
|
+
outDir: _chunk2NXAAPRNjs.joinPaths.call(void 0, _devkit.offsetFromRoot.call(void 0, options.projectRoot), "dist/out-tsc"),
|
|
1646
1646
|
noEmit: true,
|
|
1647
1647
|
..._nullishCoalesce(_optionalChain([options, 'optionalAccess', _101 => _101.tsconfigOptions, 'optionalAccess', _102 => _102.compilerOptions]), () => ( {}))
|
|
1648
1648
|
},
|
|
@@ -1660,7 +1660,7 @@ function createProjectTsConfigJson(tree, options) {
|
|
|
1660
1660
|
"src/**/*.test.ts"
|
|
1661
1661
|
]
|
|
1662
1662
|
};
|
|
1663
|
-
_devkit.writeJson.call(void 0, tree,
|
|
1663
|
+
_devkit.writeJson.call(void 0, tree, _chunk2NXAAPRNjs.joinPaths.call(void 0, options.projectRoot, "tsconfig.json"), tsconfig);
|
|
1664
1664
|
}
|
|
1665
1665
|
async function normalizeOptions(tree, options, config) {
|
|
1666
1666
|
let importPath = options.importPath;
|
|
@@ -1725,7 +1725,7 @@ async function normalizeOptions(tree, options, config) {
|
|
|
1725
1725
|
|
|
1726
1726
|
// ../workspace-tools/src/generators/browser-library/generator.ts
|
|
1727
1727
|
async function browserLibraryGeneratorFn(tree, schema, config) {
|
|
1728
|
-
const filesDir =
|
|
1728
|
+
const filesDir = _chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
1729
1729
|
__dirname,
|
|
1730
1730
|
"src",
|
|
1731
1731
|
"generators",
|
|
@@ -1808,38 +1808,38 @@ var generator_default = withRunGenerator(
|
|
|
1808
1808
|
|
|
1809
1809
|
var _zod = require('zod'); var z = _interopRequireWildcard(_zod);
|
|
1810
1810
|
async function configSchemaGeneratorFn(tree, options, config) {
|
|
1811
|
-
|
|
1811
|
+
_chunk2NXAAPRNjs.writeInfo.call(void 0,
|
|
1812
1812
|
"\u{1F4E6} Running Storm Workspace Configuration JSON Schema generator",
|
|
1813
1813
|
config
|
|
1814
1814
|
);
|
|
1815
|
-
|
|
1815
|
+
_chunk2NXAAPRNjs.writeTrace.call(void 0,
|
|
1816
1816
|
`Determining the Storm Workspace Configuration JSON Schema...`,
|
|
1817
1817
|
config
|
|
1818
1818
|
);
|
|
1819
|
-
const jsonSchema = z.toJSONSchema(
|
|
1819
|
+
const jsonSchema = z.toJSONSchema(_chunk2NXAAPRNjs.workspaceConfigSchema, {
|
|
1820
1820
|
target: "draft-7",
|
|
1821
|
-
metadata:
|
|
1821
|
+
metadata: _chunk2NXAAPRNjs.schemaRegistry
|
|
1822
1822
|
});
|
|
1823
1823
|
jsonSchema.$id ??= "https://public.storm-cdn.com/schemas/storm-workspace.schema.json";
|
|
1824
1824
|
jsonSchema.title ??= "Storm Workspace Configuration JSON Schema";
|
|
1825
1825
|
jsonSchema.description ??= "This JSON Schema defines the structure of the Storm Workspace configuration file (`storm-workspace.json`). It is used to validate the configuration file and ensure that it adheres to the expected format.";
|
|
1826
|
-
|
|
1826
|
+
_chunk2NXAAPRNjs.writeTrace.call(void 0, jsonSchema, config);
|
|
1827
1827
|
if (!options.outputFile) {
|
|
1828
1828
|
throw new Error(
|
|
1829
1829
|
"The `outputFile` option is required. Please specify the output file path."
|
|
1830
1830
|
);
|
|
1831
1831
|
}
|
|
1832
1832
|
const outputPath = options.outputFile.replaceAll("{workspaceRoot}", "").replaceAll(
|
|
1833
|
-
_nullishCoalesce(_optionalChain([config, 'optionalAccess', _111 => _111.workspaceRoot]), () => (
|
|
1833
|
+
_nullishCoalesce(_optionalChain([config, 'optionalAccess', _111 => _111.workspaceRoot]), () => ( _chunk2NXAAPRNjs.findWorkspaceRoot.call(void 0, ))),
|
|
1834
1834
|
options.outputFile.startsWith("./") ? "" : "./"
|
|
1835
1835
|
);
|
|
1836
|
-
|
|
1836
|
+
_chunk2NXAAPRNjs.writeTrace.call(void 0,
|
|
1837
1837
|
`\u{1F4DD} Writing Storm Configuration JSON Schema to "${outputPath}"`,
|
|
1838
1838
|
config
|
|
1839
1839
|
);
|
|
1840
1840
|
_devkit.writeJson.call(void 0, tree, outputPath, jsonSchema, { spaces: 2 });
|
|
1841
1841
|
await _devkit.formatFiles.call(void 0, tree);
|
|
1842
|
-
|
|
1842
|
+
_chunk2NXAAPRNjs.writeSuccess.call(void 0,
|
|
1843
1843
|
"\u{1F680} Storm Configuration JSON Schema creation has completed successfully!",
|
|
1844
1844
|
config
|
|
1845
1845
|
);
|
|
@@ -1895,7 +1895,7 @@ async function initGenerator(tree, schema) {
|
|
|
1895
1895
|
|
|
1896
1896
|
|
|
1897
1897
|
async function neutralLibraryGeneratorFn(tree, schema, config) {
|
|
1898
|
-
const filesDir =
|
|
1898
|
+
const filesDir = _chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
1899
1899
|
__dirname,
|
|
1900
1900
|
"src",
|
|
1901
1901
|
"generators",
|
|
@@ -1954,7 +1954,7 @@ var generator_default3 = withRunGenerator(
|
|
|
1954
1954
|
|
|
1955
1955
|
|
|
1956
1956
|
async function nodeLibraryGeneratorFn(tree, schema, config) {
|
|
1957
|
-
const filesDir =
|
|
1957
|
+
const filesDir = _chunk2NXAAPRNjs.joinPaths.call(void 0,
|
|
1958
1958
|
__dirname,
|
|
1959
1959
|
"src",
|
|
1960
1960
|
"generators",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkFZN35W4Xjs = require('./chunk-FZN35W4X.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/output/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkFZN35W4Xjs.withTerraformExecutor.call(void 0, "output");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -1073,16 +1073,13 @@ schemaRegistry.add(packageManagerSchema, {
|
|
|
1073
1073
|
description: "The JavaScript/TypeScript package manager used by the repository"
|
|
1074
1074
|
});
|
|
1075
1075
|
var timezoneSchema = z._default(
|
|
1076
|
-
z.string().check(z.trim()
|
|
1076
|
+
z.string().check(z.trim()),
|
|
1077
1077
|
"America/New_York"
|
|
1078
1078
|
);
|
|
1079
1079
|
schemaRegistry.add(timezoneSchema, {
|
|
1080
1080
|
description: "The default timezone of the workspace"
|
|
1081
1081
|
});
|
|
1082
|
-
var localeSchema = z._default(
|
|
1083
|
-
z.string().check(z.trim(), z.toLowerCase()),
|
|
1084
|
-
"en-US"
|
|
1085
|
-
);
|
|
1082
|
+
var localeSchema = z._default(z.string().check(z.trim()), "en-US");
|
|
1086
1083
|
schemaRegistry.add(localeSchema, {
|
|
1087
1084
|
description: "The default locale of the workspace"
|
|
1088
1085
|
});
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkFZN35W4Xjs = require('./chunk-FZN35W4X.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/destroy/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkFZN35W4Xjs.withTerraformExecutor.call(void 0, "destroy");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
package/dist/executors.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";require('./chunk-E7SPQEPH.js');
|
|
2
|
-
require('./chunk-
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-XZU22PSP.js');
|
|
3
|
+
require('./chunk-UHFIUDKJ.js');
|
|
4
|
+
require('./chunk-N3EQIDHT.js');
|
|
5
|
+
require('./chunk-6AKHBMSA.js');
|
|
6
|
+
require('./chunk-FZN35W4X.js');
|
|
7
|
+
require('./chunk-2NXAAPRN.js');
|
|
8
8
|
require('./chunk-3RG5ZIWI.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import "./chunk-HYHKZPRR.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-L4WE6GUL.mjs";
|
|
3
|
+
import "./chunk-V2SHLAIZ.mjs";
|
|
4
|
+
import "./chunk-5MZLXAHB.mjs";
|
|
5
|
+
import "./chunk-ET3UGY2L.mjs";
|
|
6
|
+
import "./chunk-EOCIL5BE.mjs";
|
|
7
|
+
import "./chunk-WYONVDTO.mjs";
|
|
8
8
|
import "./chunk-URGPIQOV.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
|
|
5
|
-
require('./chunk-
|
|
4
|
+
var _chunkPD7YZBRSjs = require('./chunk-PD7YZBRS.js');
|
|
5
|
+
require('./chunk-2NXAAPRN.js');
|
|
6
6
|
require('./chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGenerator =
|
|
9
|
+
exports.initGenerator = _chunkPD7YZBRSjs.initGenerator;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-E7SPQEPH.js');
|
|
2
|
-
require('./chunk-
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-XZU22PSP.js');
|
|
3
|
+
require('./chunk-UHFIUDKJ.js');
|
|
4
|
+
require('./chunk-N3EQIDHT.js');
|
|
5
5
|
require('./chunk-N2YKXZ5R.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkPD7YZBRSjs = require('./chunk-PD7YZBRS.js');
|
|
9
9
|
require('./chunk-GUQOEBFW.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
var _chunkILC773N2js = require('./chunk-ILC773N2.js');
|
|
13
|
-
require('./chunk-
|
|
13
|
+
require('./chunk-6AKHBMSA.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
17
|
-
require('./chunk-
|
|
16
|
+
var _chunkFZN35W4Xjs = require('./chunk-FZN35W4X.js');
|
|
17
|
+
require('./chunk-2NXAAPRN.js');
|
|
18
18
|
require('./chunk-3RG5ZIWI.js');
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator =
|
|
23
|
+
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunkPD7YZBRSjs.initGenerator; exports.withTerraformExecutor = _chunkFZN35W4Xjs.withTerraformExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import "./chunk-HYHKZPRR.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-L4WE6GUL.mjs";
|
|
3
|
+
import "./chunk-V2SHLAIZ.mjs";
|
|
4
|
+
import "./chunk-5MZLXAHB.mjs";
|
|
5
5
|
import "./chunk-23KFTIT2.mjs";
|
|
6
6
|
import {
|
|
7
7
|
initGenerator
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-NBKNLXBU.mjs";
|
|
9
9
|
import "./chunk-CA7S5MOH.mjs";
|
|
10
10
|
import {
|
|
11
11
|
base_terraform_executor_untyped_default
|
|
12
12
|
} from "./chunk-EL25IDXP.mjs";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-ET3UGY2L.mjs";
|
|
14
14
|
import {
|
|
15
15
|
withTerraformExecutor
|
|
16
|
-
} from "./chunk-
|
|
17
|
-
import "./chunk-
|
|
16
|
+
} from "./chunk-EOCIL5BE.mjs";
|
|
17
|
+
import "./chunk-WYONVDTO.mjs";
|
|
18
18
|
import "./chunk-URGPIQOV.mjs";
|
|
19
19
|
export {
|
|
20
20
|
base_terraform_executor_untyped_default as baseTerraformExecutorSchema,
|
package/dist/src/base/index.js
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
var _chunkILC773N2js = require('../../chunk-ILC773N2.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
8
|
-
require('../../chunk-
|
|
7
|
+
var _chunkFZN35W4Xjs = require('../../chunk-FZN35W4X.js');
|
|
8
|
+
require('../../chunk-2NXAAPRN.js');
|
|
9
9
|
require('../../chunk-3RG5ZIWI.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.withTerraformExecutor =
|
|
13
|
+
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.withTerraformExecutor = _chunkFZN35W4Xjs.withTerraformExecutor;
|
package/dist/src/base/index.mjs
CHANGED
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
} from "../../chunk-EL25IDXP.mjs";
|
|
5
5
|
import {
|
|
6
6
|
withTerraformExecutor
|
|
7
|
-
} from "../../chunk-
|
|
8
|
-
import "../../chunk-
|
|
7
|
+
} from "../../chunk-EOCIL5BE.mjs";
|
|
8
|
+
import "../../chunk-WYONVDTO.mjs";
|
|
9
9
|
import "../../chunk-URGPIQOV.mjs";
|
|
10
10
|
export {
|
|
11
11
|
base_terraform_executor_untyped_default as baseTerraformExecutorSchema,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var _chunkFZN35W4Xjs = require('../../chunk-FZN35W4X.js');
|
|
4
|
+
require('../../chunk-2NXAAPRN.js');
|
|
5
5
|
require('../../chunk-3RG5ZIWI.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.withTerraformExecutor =
|
|
8
|
+
exports.withTerraformExecutor = _chunkFZN35W4Xjs.withTerraformExecutor;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunk6AKHBMSAjs = require('../../../chunk-6AKHBMSA.js');
|
|
4
|
+
require('../../../chunk-FZN35W4X.js');
|
|
5
|
+
require('../../../chunk-2NXAAPRN.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunk6AKHBMSAjs.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-ET3UGY2L.mjs";
|
|
4
|
+
import "../../../chunk-EOCIL5BE.mjs";
|
|
5
|
+
import "../../../chunk-WYONVDTO.mjs";
|
|
6
6
|
import "../../../chunk-URGPIQOV.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkXZU22PSPjs = require('../../../chunk-XZU22PSP.js');
|
|
4
|
+
require('../../../chunk-FZN35W4X.js');
|
|
5
|
+
require('../../../chunk-2NXAAPRN.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkXZU22PSPjs.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-L4WE6GUL.mjs";
|
|
4
|
+
import "../../../chunk-EOCIL5BE.mjs";
|
|
5
|
+
import "../../../chunk-WYONVDTO.mjs";
|
|
6
6
|
import "../../../chunk-URGPIQOV.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkUHFIUDKJjs = require('../../../chunk-UHFIUDKJ.js');
|
|
4
|
+
require('../../../chunk-FZN35W4X.js');
|
|
5
|
+
require('../../../chunk-2NXAAPRN.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkUHFIUDKJjs.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-V2SHLAIZ.mjs";
|
|
4
|
+
import "../../../chunk-EOCIL5BE.mjs";
|
|
5
|
+
import "../../../chunk-WYONVDTO.mjs";
|
|
6
6
|
import "../../../chunk-URGPIQOV.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkN3EQIDHTjs = require('../../../chunk-N3EQIDHT.js');
|
|
4
|
+
require('../../../chunk-FZN35W4X.js');
|
|
5
|
+
require('../../../chunk-2NXAAPRN.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkN3EQIDHTjs.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-5MZLXAHB.mjs";
|
|
4
|
+
import "../../../chunk-EOCIL5BE.mjs";
|
|
5
|
+
import "../../../chunk-WYONVDTO.mjs";
|
|
6
6
|
import "../../../chunk-URGPIQOV.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
|
|
5
|
-
require('../../../chunk-
|
|
4
|
+
var _chunkPD7YZBRSjs = require('../../../chunk-PD7YZBRS.js');
|
|
5
|
+
require('../../../chunk-2NXAAPRN.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkPD7YZBRSjs.init_default; exports.initGenerator = _chunkPD7YZBRSjs.initGenerator;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
initGenerator,
|
|
3
3
|
init_default
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-NBKNLXBU.mjs";
|
|
5
|
+
import "../../../chunk-WYONVDTO.mjs";
|
|
6
6
|
import "../../../chunk-URGPIQOV.mjs";
|
|
7
7
|
export {
|
|
8
8
|
init_default as default,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/terraform-tools",
|
|
3
|
-
"version": "0.62.
|
|
3
|
+
"version": "0.62.5",
|
|
4
4
|
"description": "Tools for managing Terraform infrastructure within a Nx workspace.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -135,5 +135,5 @@
|
|
|
135
135
|
"publishConfig": { "access": "public" },
|
|
136
136
|
"executors": "./executors.json",
|
|
137
137
|
"generators": "./generators.json",
|
|
138
|
-
"gitHead": "
|
|
138
|
+
"gitHead": "dd148e6f766439815722095415f6b77d8b9b705f"
|
|
139
139
|
}
|