@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 +14 -0
- package/README.md +1 -1
- package/dist/{chunk-XXGHGWME.mjs → chunk-K5HHLJ4J.mjs} +6 -13
- package/dist/{chunk-O3P3PRAI.js → chunk-NDQ2WXL4.js} +6 -13
- 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 +1 -1
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
|
-
[](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 -->
|
|
@@ -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:
|
|
1095
|
-
out:
|
|
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
|
-
|
|
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:
|
|
1094
|
-
out:
|
|
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
|
-
|
|
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}"
|
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 _chunkNDQ2WXL4js = require('./chunk-NDQ2WXL4.js');
|
|
5
5
|
require('./chunk-OFLYCEQV.js');
|
|
6
6
|
require('./chunk-3GQAWCBQ.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGenerator =
|
|
9
|
+
exports.initGenerator = _chunkNDQ2WXL4js.initGenerator;
|
package/dist/generators.mjs
CHANGED
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
|
|
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 =
|
|
23
|
+
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunkNDQ2WXL4js.initGenerator; exports.withTerraformExecutor = _chunkAWKDJF6Sjs.withTerraformExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
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 =
|
|
10
|
+
exports.default = _chunkNDQ2WXL4js.init_default; exports.initGenerator = _chunkNDQ2WXL4js.initGenerator;
|