@storm-software/terraform-tools 0.65.11 → 0.65.12
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 +7 -0
- package/README.md +1 -1
- package/dist/{chunk-V2GQRCVV.mjs → chunk-3EVFQSSJ.mjs} +4 -4
- package/dist/{chunk-W3L35PW3.mjs → chunk-7FW6TNQR.mjs} +1 -1
- package/dist/{chunk-F3ZBWEMP.js → chunk-FY2OJVNK.js} +136 -136
- package/dist/{chunk-5LHBVG2L.mjs → chunk-GJ5KMYYU.mjs} +1 -1
- package/dist/{chunk-2MUZHVIB.mjs → chunk-IVQEPQFZ.mjs} +1 -1
- package/dist/{chunk-XVLTDPFA.js → chunk-LOVMG432.js} +2 -2
- package/dist/{chunk-WS4BEVU3.js → chunk-NT6AHANU.js} +2 -2
- package/dist/{chunk-BQVOGJTI.mjs → chunk-O2QS6TCL.mjs} +1 -1
- package/dist/{chunk-BE5TKL2F.js → chunk-PVFVZPEM.js} +4 -4
- package/dist/{chunk-5URQ2UDK.js → chunk-QBESBX3X.js} +2 -2
- package/dist/{chunk-AL3DBVWS.js → chunk-TFXQTMWW.js} +2 -2
- package/dist/{chunk-Q4W5GZD3.js → chunk-TKJZM7NN.js} +2 -2
- package/dist/{chunk-QJB75I6E.mjs → chunk-WBIP7MV3.mjs} +1 -1
- package/dist/{chunk-IUIEBW6G.mjs → chunk-WNXMATN6.mjs} +1 -1
- 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 +10 -10
- package/dist/index.mjs +9 -9
- 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
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Terraform Tools
|
|
4
4
|
|
|
5
|
+
## [0.65.11](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.65.11) (2025-10-05)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update workspace package links
|
|
10
|
+
([125d73a6a](https://github.com/storm-software/storm-ops/commit/125d73a6a))
|
|
11
|
+
|
|
5
12
|
## [0.65.10](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.65.10) (2025-10-05)
|
|
6
13
|
|
|
7
14
|
### Bug Fixes
|
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 -->
|
|
@@ -2026,16 +2026,16 @@ ${formatLogMessage(config)}`,
|
|
|
2026
2026
|
};
|
|
2027
2027
|
|
|
2028
2028
|
// ../config-tools/src/get-config.ts
|
|
2029
|
-
|
|
2029
|
+
function getConfig(workspaceRoot, skipLogs = false) {
|
|
2030
2030
|
return loadStormWorkspaceConfig(workspaceRoot, skipLogs);
|
|
2031
|
-
}
|
|
2032
|
-
|
|
2031
|
+
}
|
|
2032
|
+
function getWorkspaceConfig(skipLogs = true, options = {}) {
|
|
2033
2033
|
let workspaceRoot = options.workspaceRoot;
|
|
2034
2034
|
if (!workspaceRoot) {
|
|
2035
2035
|
workspaceRoot = findWorkspaceRoot(options.cwd);
|
|
2036
2036
|
}
|
|
2037
2037
|
return getConfig(workspaceRoot, skipLogs);
|
|
2038
|
-
}
|
|
2038
|
+
}
|
|
2039
2039
|
|
|
2040
2040
|
// ../workspace-tools/src/base/base-executor.ts
|
|
2041
2041
|
import { defu as defu3 } from "defu";
|