@storm-software/terraform-tools 0.65.13 → 0.66.0

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 CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  # Changelog for Storm Ops - Terraform Tools
4
4
 
5
+ ## [0.65.13](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.65.13) (2025-10-08)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update workspace package links
10
+ ([ad9d018ff](https://github.com/storm-software/storm-ops/commit/ad9d018ff))
11
+
5
12
  ## [0.65.12](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.65.12) (2025-10-05)
6
13
 
7
14
  ### 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
- [![Version](https://img.shields.io/badge/version-0.65.11-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.65.12-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
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
- // ../esbuild/src/tsup.ts
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 _tsup.build.call(void 0, {
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 build(options) {
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 build({
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 build2(options) {
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 build2({
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
- // ../esbuild/src/tsup.ts
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 tsup({
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 build(options) {
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 build({
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 build2(options) {
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 build2({
1428
+ await build3({
1418
1429
  ...options,
1419
1430
  projectRoot: (
1420
1431
  // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
2
2
 
3
3
 
4
- var _chunkFY2OJVNKjs = require('./chunk-FY2OJVNK.js');
4
+ var _chunkA3YTHEDKjs = require('./chunk-A3YTHEDK.js');
5
5
  require('./chunk-PVFVZPEM.js');
6
6
 
7
7
 
8
- exports.initGenerator = _chunkFY2OJVNKjs.initGenerator;
8
+ exports.initGenerator = _chunkA3YTHEDKjs.initGenerator;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-23KFTIT2.mjs";
2
2
  import {
3
3
  initGenerator
4
- } from "./chunk-E4ETCWP5.mjs";
4
+ } from "./chunk-UQHOFHZA.mjs";
5
5
  import "./chunk-3EVFQSSJ.mjs";
6
6
  import "./chunk-EQLCXKOK.mjs";
7
7
  export {
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 _chunkFY2OJVNKjs = require('./chunk-FY2OJVNK.js');
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 = _chunkFY2OJVNKjs.initGenerator; exports.withTerraformExecutor = _chunkTKJZM7NNjs.withTerraformExecutor;
22
+ exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunkA3YTHEDKjs.initGenerator; exports.withTerraformExecutor = _chunkTKJZM7NNjs.withTerraformExecutor;
package/dist/index.mjs CHANGED
@@ -5,7 +5,7 @@ import "./chunk-WNXMATN6.mjs";
5
5
  import "./chunk-23KFTIT2.mjs";
6
6
  import {
7
7
  initGenerator
8
- } from "./chunk-E4ETCWP5.mjs";
8
+ } from "./chunk-UQHOFHZA.mjs";
9
9
  import "./chunk-CA7S5MOH.mjs";
10
10
  import {
11
11
  base_terraform_executor_untyped_default
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkFY2OJVNKjs = require('../../../chunk-FY2OJVNK.js');
4
+ var _chunkA3YTHEDKjs = require('../../../chunk-A3YTHEDK.js');
5
5
  require('../../../chunk-PVFVZPEM.js');
6
6
 
7
7
 
8
8
 
9
- exports.default = _chunkFY2OJVNKjs.init_default; exports.initGenerator = _chunkFY2OJVNKjs.initGenerator;
9
+ exports.default = _chunkA3YTHEDKjs.init_default; exports.initGenerator = _chunkA3YTHEDKjs.initGenerator;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  initGenerator,
3
3
  init_default
4
- } from "../../../chunk-E4ETCWP5.mjs";
4
+ } from "../../../chunk-UQHOFHZA.mjs";
5
5
  import "../../../chunk-3EVFQSSJ.mjs";
6
6
  import "../../../chunk-EQLCXKOK.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/terraform-tools",
3
- "version": "0.65.13",
3
+ "version": "0.66.0",
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": "cf3b0a3f2a3390e2e62adeeb56c0571a6bf75b2d"
138
+ "gitHead": "13c6595478ff00d29f11ba7a5b6e37d249c1b9f4"
139
139
  }