@storm-software/terraform-tools 0.65.13 → 0.66.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/README.md +2 -1
- package/dist/{chunk-FY2OJVNK.js → chunk-A3YTHEDK.js} +17 -6
- package/dist/{chunk-E4ETCWP5.mjs → chunk-UQHOFHZA.mjs} +17 -6
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +1 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/dist/src/generators/init/init.js +2 -2
- package/dist/src/generators/init/init.mjs +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Terraform Tools
|
|
4
4
|
|
|
5
|
+
## [0.66.0](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.0) (2025-10-08)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **tsup:** Initial check-in of the `tsup` patched package
|
|
10
|
+
([e141da012](https://github.com/storm-software/storm-ops/commit/e141da012))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Update workspace package links
|
|
15
|
+
([8fb2a080f](https://github.com/storm-software/storm-ops/commit/8fb2a080f))
|
|
16
|
+
|
|
17
|
+
## [0.65.13](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.65.13) (2025-10-08)
|
|
18
|
+
|
|
19
|
+
### Miscellaneous
|
|
20
|
+
|
|
21
|
+
- **monorepo:** Update workspace package links
|
|
22
|
+
([ad9d018ff](https://github.com/storm-software/storm-ops/commit/ad9d018ff))
|
|
23
|
+
|
|
5
24
|
## [0.65.12](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.65.12) (2025-10-05)
|
|
6
25
|
|
|
7
26
|
### 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 -->
|
|
@@ -40,6 +40,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
+
|
|
43
44
|
## Table of Contents
|
|
44
45
|
|
|
45
46
|
- [Storm Terraform Tools](#storm-terraform-tools)
|
|
@@ -850,15 +850,26 @@ async function generatePackageJson(context) {
|
|
|
850
850
|
return context;
|
|
851
851
|
}
|
|
852
852
|
|
|
853
|
-
// ../
|
|
853
|
+
// ../tsup/src/index.ts
|
|
854
854
|
var _tsup = require('tsup');
|
|
855
|
+
async function build(options) {
|
|
856
|
+
_chunkPVFVZPEMjs.writeDebug.call(void 0,
|
|
857
|
+
` \u{1F680} Running ${options.name || "tsup"} build`,
|
|
858
|
+
options.workspaceConfig
|
|
859
|
+
);
|
|
860
|
+
const stopwatch = _chunkPVFVZPEMjs.getStopwatch.call(void 0, `${options.name || "tsup"} build`);
|
|
861
|
+
await _tsup.build.call(void 0, options);
|
|
862
|
+
stopwatch();
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
// ../esbuild/src/tsup.ts
|
|
855
866
|
async function executeTsup(context) {
|
|
856
867
|
_chunkPVFVZPEMjs.writeDebug.call(void 0,
|
|
857
868
|
` \u{1F680} Running ${context.options.name} build`,
|
|
858
869
|
context.workspaceConfig
|
|
859
870
|
);
|
|
860
871
|
const stopwatch = _chunkPVFVZPEMjs.getStopwatch.call(void 0, `${context.options.name} build`);
|
|
861
|
-
await
|
|
872
|
+
await build({
|
|
862
873
|
...context.options,
|
|
863
874
|
outDir: context.options.distDir ? _chunkPVFVZPEMjs.joinPaths.call(void 0, context.outputPath, context.options.distDir) : context.outputPath,
|
|
864
875
|
workspaceConfig: context.workspaceConfig
|
|
@@ -902,7 +913,7 @@ async function cleanOutputPath(context) {
|
|
|
902
913
|
}
|
|
903
914
|
return context;
|
|
904
915
|
}
|
|
905
|
-
async function
|
|
916
|
+
async function build2(options) {
|
|
906
917
|
_chunkPVFVZPEMjs.writeDebug.call(void 0, ` \u26A1 Executing Storm ESBuild pipeline`);
|
|
907
918
|
const stopwatch = _chunkPVFVZPEMjs.getStopwatch.call(void 0, "ESBuild pipeline");
|
|
908
919
|
try {
|
|
@@ -938,7 +949,7 @@ async function esbuildExecutorFn(options, context, config5) {
|
|
|
938
949
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
939
950
|
);
|
|
940
951
|
}
|
|
941
|
-
await
|
|
952
|
+
await build2({
|
|
942
953
|
...options,
|
|
943
954
|
projectRoot: (
|
|
944
955
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
@@ -1366,7 +1377,7 @@ async function cleanOutputPath2(options) {
|
|
|
1366
1377
|
}
|
|
1367
1378
|
return options;
|
|
1368
1379
|
}
|
|
1369
|
-
async function
|
|
1380
|
+
async function build3(options) {
|
|
1370
1381
|
_chunkPVFVZPEMjs.writeDebug.call(void 0, ` \u26A1 Executing Storm TSDown pipeline`);
|
|
1371
1382
|
const stopwatch = _chunkPVFVZPEMjs.getStopwatch.call(void 0, "TSDown pipeline");
|
|
1372
1383
|
try {
|
|
@@ -1411,7 +1422,7 @@ async function tsdownExecutorFn(options, context, config5) {
|
|
|
1411
1422
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
1412
1423
|
);
|
|
1413
1424
|
}
|
|
1414
|
-
await
|
|
1425
|
+
await build3({
|
|
1415
1426
|
...options,
|
|
1416
1427
|
projectRoot: (
|
|
1417
1428
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
@@ -853,15 +853,26 @@ async function generatePackageJson(context) {
|
|
|
853
853
|
return context;
|
|
854
854
|
}
|
|
855
855
|
|
|
856
|
-
// ../
|
|
856
|
+
// ../tsup/src/index.ts
|
|
857
857
|
import { build as tsup } from "tsup";
|
|
858
|
+
async function build(options) {
|
|
859
|
+
writeDebug(
|
|
860
|
+
` \u{1F680} Running ${options.name || "tsup"} build`,
|
|
861
|
+
options.workspaceConfig
|
|
862
|
+
);
|
|
863
|
+
const stopwatch = getStopwatch(`${options.name || "tsup"} build`);
|
|
864
|
+
await tsup(options);
|
|
865
|
+
stopwatch();
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
// ../esbuild/src/tsup.ts
|
|
858
869
|
async function executeTsup(context) {
|
|
859
870
|
writeDebug(
|
|
860
871
|
` \u{1F680} Running ${context.options.name} build`,
|
|
861
872
|
context.workspaceConfig
|
|
862
873
|
);
|
|
863
874
|
const stopwatch = getStopwatch(`${context.options.name} build`);
|
|
864
|
-
await
|
|
875
|
+
await build({
|
|
865
876
|
...context.options,
|
|
866
877
|
outDir: context.options.distDir ? joinPaths(context.outputPath, context.options.distDir) : context.outputPath,
|
|
867
878
|
workspaceConfig: context.workspaceConfig
|
|
@@ -905,7 +916,7 @@ async function cleanOutputPath(context) {
|
|
|
905
916
|
}
|
|
906
917
|
return context;
|
|
907
918
|
}
|
|
908
|
-
async function
|
|
919
|
+
async function build2(options) {
|
|
909
920
|
writeDebug(` \u26A1 Executing Storm ESBuild pipeline`);
|
|
910
921
|
const stopwatch = getStopwatch("ESBuild pipeline");
|
|
911
922
|
try {
|
|
@@ -941,7 +952,7 @@ async function esbuildExecutorFn(options, context, config5) {
|
|
|
941
952
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
942
953
|
);
|
|
943
954
|
}
|
|
944
|
-
await
|
|
955
|
+
await build2({
|
|
945
956
|
...options,
|
|
946
957
|
projectRoot: (
|
|
947
958
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
@@ -1369,7 +1380,7 @@ async function cleanOutputPath2(options) {
|
|
|
1369
1380
|
}
|
|
1370
1381
|
return options;
|
|
1371
1382
|
}
|
|
1372
|
-
async function
|
|
1383
|
+
async function build3(options) {
|
|
1373
1384
|
writeDebug(` \u26A1 Executing Storm TSDown pipeline`);
|
|
1374
1385
|
const stopwatch = getStopwatch("TSDown pipeline");
|
|
1375
1386
|
try {
|
|
@@ -1414,7 +1425,7 @@ async function tsdownExecutorFn(options, context, config5) {
|
|
|
1414
1425
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
1415
1426
|
);
|
|
1416
1427
|
}
|
|
1417
|
-
await
|
|
1428
|
+
await build3({
|
|
1418
1429
|
...options,
|
|
1419
1430
|
projectRoot: (
|
|
1420
1431
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
package/dist/generators.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkA3YTHEDKjs = require('./chunk-A3YTHEDK.js');
|
|
5
5
|
require('./chunk-PVFVZPEM.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.initGenerator =
|
|
8
|
+
exports.initGenerator = _chunkA3YTHEDKjs.initGenerator;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ require('./chunk-NT6AHANU.js');
|
|
|
5
5
|
require('./chunk-N2YKXZ5R.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkA3YTHEDKjs = require('./chunk-A3YTHEDK.js');
|
|
9
9
|
require('./chunk-GUQOEBFW.js');
|
|
10
10
|
|
|
11
11
|
|
|
@@ -19,4 +19,4 @@ require('./chunk-PVFVZPEM.js');
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator =
|
|
22
|
+
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunkA3YTHEDKjs.initGenerator; exports.withTerraformExecutor = _chunkTKJZM7NNjs.withTerraformExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkA3YTHEDKjs = require('../../../chunk-A3YTHEDK.js');
|
|
5
5
|
require('../../../chunk-PVFVZPEM.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkA3YTHEDKjs.init_default; exports.initGenerator = _chunkA3YTHEDKjs.initGenerator;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/terraform-tools",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.66.1",
|
|
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": "651479e4ac77f7f43fbecda5a2c9ff8e213642c7"
|
|
139
139
|
}
|