@storm-software/terraform-tools 0.54.46 → 0.54.48

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,20 @@
2
2
 
3
3
  # Changelog for Storm Ops - Terraform Tools
4
4
 
5
+ ## [0.54.48](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.54.48) (2025-04-08)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate README markdown files
10
+ ([36df00f97](https://github.com/storm-software/storm-ops/commit/36df00f97))
11
+
12
+ ## [0.54.47](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.54.47) (2025-04-08)
13
+
14
+ ### Miscellaneous
15
+
16
+ - **monorepo:** Regenerate README markdown files
17
+ ([082eec9a5](https://github.com/storm-software/storm-ops/commit/082eec9a5))
18
+
5
19
  ## [0.54.46](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.54.46) (2025-04-07)
6
20
 
7
21
  ### 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.54.45-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.54.47-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 -->
@@ -1091,8 +1091,8 @@ var getEntryPoints = /* @__PURE__ */ __name(async (config, projectRoot, sourceRo
1091
1091
  entryPoints.push(...Object.entries(entry).map(([key, value]) => {
1092
1092
  if (typeof value === "string") {
1093
1093
  return {
1094
- in: key,
1095
- out: value
1094
+ in: value,
1095
+ out: key
1096
1096
  };
1097
1097
  } else {
1098
1098
  return {
@@ -1343,17 +1343,9 @@ async function generatePackageJson(context2) {
1343
1343
  packageJson.exports ??= {};
1344
1344
  packageJson.exports["./package.json"] ??= "./package.json";
1345
1345
  packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
1346
- const entryPoints = [
1347
- {
1348
- in: "./src/index.ts",
1349
- out: "./src/index.ts"
1350
- }
1351
- ];
1352
- if (context2.options.entryPoints) {
1353
- for (const entryPoint of entryPoints) {
1354
- const split = entryPoint.out.split(".");
1355
- split.pop();
1356
- const entry = split.join(".").replaceAll("\\", "/");
1346
+ for (const entryPoint of context2.options.entryPoints) {
1347
+ if (entryPoint.out) {
1348
+ const entry = entryPoint.out.replaceAll("\\", "/").replaceAll(/^(\.\/)*/g, "").replace(/\.([cm])?[jt]s(x)?$/g, "");
1357
1349
  packageJson.exports[`./${entry}`] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/${entry}.js`;
1358
1350
  }
1359
1351
  }
@@ -1727,6 +1719,7 @@ var executor_default9 = withRunExecutor("TypeScript Unbuild build", unbuildExecu
1727
1719
  applyDefaultOptions: /* @__PURE__ */ __name(async (options, config) => {
1728
1720
  options.debug ??= false;
1729
1721
  options.treeShaking ??= true;
1722
+ options.buildOnly ??= false;
1730
1723
  options.platform ??= "neutral";
1731
1724
  options.entry ??= [
1732
1725
  "{sourceRoot}"
@@ -1090,8 +1090,8 @@ var getEntryPoints = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
1090
1090
  entryPoints.push(...Object.entries(entry).map(([key, value]) => {
1091
1091
  if (typeof value === "string") {
1092
1092
  return {
1093
- in: key,
1094
- out: value
1093
+ in: value,
1094
+ out: key
1095
1095
  };
1096
1096
  } else {
1097
1097
  return {
@@ -1342,17 +1342,9 @@ async function generatePackageJson(context2) {
1342
1342
  packageJson.exports ??= {};
1343
1343
  packageJson.exports["./package.json"] ??= "./package.json";
1344
1344
  packageJson.exports["."] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/index.js`;
1345
- const entryPoints = [
1346
- {
1347
- in: "./src/index.ts",
1348
- out: "./src/index.ts"
1349
- }
1350
- ];
1351
- if (context2.options.entryPoints) {
1352
- for (const entryPoint of entryPoints) {
1353
- const split = entryPoint.out.split(".");
1354
- split.pop();
1355
- const entry = split.join(".").replaceAll("\\", "/");
1345
+ for (const entryPoint of context2.options.entryPoints) {
1346
+ if (entryPoint.out) {
1347
+ const entry = entryPoint.out.replaceAll("\\", "/").replaceAll(/^(\.\/)*/g, "").replace(/\.([cm])?[jt]s(x)?$/g, "");
1356
1348
  packageJson.exports[`./${entry}`] ??= `.${context2.options.distDir ? `/${context2.options.distDir}` : ""}/${entry}.js`;
1357
1349
  }
1358
1350
  }
@@ -1726,6 +1718,7 @@ var executor_default9 = _chunkOFLYCEQVjs.withRunExecutor.call(void 0, "TypeScrip
1726
1718
  applyDefaultOptions: /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async (options, config) => {
1727
1719
  options.debug ??= false;
1728
1720
  options.treeShaking ??= true;
1721
+ options.buildOnly ??= false;
1729
1722
  options.platform ??= "neutral";
1730
1723
  options.entry ??= [
1731
1724
  "{sourceRoot}"
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
2
2
 
3
3
 
4
- var _chunkO3P3PRAIjs = require('./chunk-O3P3PRAI.js');
4
+ var _chunkNDQ2WXL4js = require('./chunk-NDQ2WXL4.js');
5
5
  require('./chunk-OFLYCEQV.js');
6
6
  require('./chunk-3GQAWCBQ.js');
7
7
 
8
8
 
9
- exports.initGenerator = _chunkO3P3PRAIjs.initGenerator;
9
+ exports.initGenerator = _chunkNDQ2WXL4js.initGenerator;
@@ -1,7 +1,7 @@
1
1
  import "./chunk-23KFTIT2.mjs";
2
2
  import {
3
3
  initGenerator
4
- } from "./chunk-XXGHGWME.mjs";
4
+ } from "./chunk-K5HHLJ4J.mjs";
5
5
  import "./chunk-QVS5QXGT.mjs";
6
6
  import "./chunk-2BPV2XV2.mjs";
7
7
  export {
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ require('./chunk-N54F7ABF.js');
5
5
  require('./chunk-N2YKXZ5R.js');
6
6
 
7
7
 
8
- var _chunkO3P3PRAIjs = require('./chunk-O3P3PRAI.js');
8
+ var _chunkNDQ2WXL4js = require('./chunk-NDQ2WXL4.js');
9
9
  require('./chunk-GUQOEBFW.js');
10
10
 
11
11
 
@@ -20,4 +20,4 @@ require('./chunk-3GQAWCBQ.js');
20
20
 
21
21
 
22
22
 
23
- exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunkO3P3PRAIjs.initGenerator; exports.withTerraformExecutor = _chunkAWKDJF6Sjs.withTerraformExecutor;
23
+ exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunkNDQ2WXL4js.initGenerator; exports.withTerraformExecutor = _chunkAWKDJF6Sjs.withTerraformExecutor;
package/dist/index.mjs CHANGED
@@ -5,7 +5,7 @@ import "./chunk-ZAEMRHF3.mjs";
5
5
  import "./chunk-23KFTIT2.mjs";
6
6
  import {
7
7
  initGenerator
8
- } from "./chunk-XXGHGWME.mjs";
8
+ } from "./chunk-K5HHLJ4J.mjs";
9
9
  import "./chunk-CA7S5MOH.mjs";
10
10
  import {
11
11
  base_terraform_executor_untyped_default
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkO3P3PRAIjs = require('../../../chunk-O3P3PRAI.js');
4
+ var _chunkNDQ2WXL4js = require('../../../chunk-NDQ2WXL4.js');
5
5
  require('../../../chunk-OFLYCEQV.js');
6
6
  require('../../../chunk-3GQAWCBQ.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkO3P3PRAIjs.init_default; exports.initGenerator = _chunkO3P3PRAIjs.initGenerator;
10
+ exports.default = _chunkNDQ2WXL4js.init_default; exports.initGenerator = _chunkNDQ2WXL4js.initGenerator;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  initGenerator,
3
3
  init_default
4
- } from "../../../chunk-XXGHGWME.mjs";
4
+ } from "../../../chunk-K5HHLJ4J.mjs";
5
5
  import "../../../chunk-QVS5QXGT.mjs";
6
6
  import "../../../chunk-2BPV2XV2.mjs";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/terraform-tools",
3
- "version": "0.54.46",
3
+ "version": "0.54.48",
4
4
  "description": "Tools for managing Terraform infrastructure within a Nx workspace.",
5
5
  "repository": {
6
6
  "type": "github",