@storm-software/terraform-tools 0.60.51 → 0.60.57

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.
Files changed (37) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/README.md +1 -1
  3. package/dist/{chunk-IZAECJQQ.js → chunk-3HCCGFVA.js} +742 -662
  4. package/dist/{chunk-4VNSDKOR.js → chunk-HJPLYKIK.js} +2 -2
  5. package/dist/{chunk-AWITVSS5.js → chunk-IRQ6ATAT.js} +2 -2
  6. package/dist/{chunk-6YTYOAW6.mjs → chunk-JRLSRM63.mjs} +3 -3
  7. package/dist/{chunk-E2U43APT.mjs → chunk-LHLWLQYI.mjs} +1 -1
  8. package/dist/{chunk-FQ2GHA6R.js → chunk-OTXSJUFN.js} +2 -2
  9. package/dist/{chunk-Y4UYW4I2.mjs → chunk-PTGHK4O2.mjs} +1 -1
  10. package/dist/{chunk-QHGW6MC3.js → chunk-QDREZDRA.js} +108 -108
  11. package/dist/{chunk-RXJYBJ7H.mjs → chunk-QEMBK6MY.mjs} +835 -755
  12. package/dist/{chunk-3PAJMHOF.js → chunk-RIOD6BBP.js} +2 -2
  13. package/dist/{chunk-VONBHUKA.mjs → chunk-TTTXG2FP.mjs} +1 -1
  14. package/dist/{chunk-W27SMATF.mjs → chunk-VWGJH5XZ.mjs} +1 -1
  15. package/dist/{chunk-W5R5GLHL.mjs → chunk-W3KFGH6F.mjs} +1 -1
  16. package/dist/{chunk-6HOWHHDG.js → chunk-XLCDBNTQ.js} +2 -2
  17. package/dist/executors.js +6 -6
  18. package/dist/executors.mjs +6 -6
  19. package/dist/generators.js +3 -3
  20. package/dist/generators.mjs +2 -2
  21. package/dist/index.js +8 -8
  22. package/dist/index.mjs +7 -7
  23. package/dist/src/base/index.js +3 -3
  24. package/dist/src/base/index.mjs +2 -2
  25. package/dist/src/base/terraform-executor.js +3 -3
  26. package/dist/src/base/terraform-executor.mjs +2 -2
  27. package/dist/src/executors/apply/executor.js +4 -4
  28. package/dist/src/executors/apply/executor.mjs +3 -3
  29. package/dist/src/executors/destroy/executor.js +4 -4
  30. package/dist/src/executors/destroy/executor.mjs +3 -3
  31. package/dist/src/executors/output/executor.js +4 -4
  32. package/dist/src/executors/output/executor.mjs +3 -3
  33. package/dist/src/executors/plan/executor.js +4 -4
  34. package/dist/src/executors/plan/executor.mjs +3 -3
  35. package/dist/src/generators/init/init.js +3 -3
  36. package/dist/src/generators/init/init.mjs +2 -2
  37. package/package.json +2 -2
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk3PAJMHOFjs = require('./chunk-3PAJMHOF.js');
3
+ var _chunkRIOD6BBPjs = require('./chunk-RIOD6BBP.js');
4
4
 
5
5
  // src/executors/plan/executor.ts
6
- var executor_default = _chunk3PAJMHOFjs.withTerraformExecutor.call(void 0, "plan");
6
+ var executor_default = _chunkRIOD6BBPjs.withTerraformExecutor.call(void 0, "plan");
7
7
 
8
8
 
9
9
 
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk3PAJMHOFjs = require('./chunk-3PAJMHOF.js');
3
+ var _chunkRIOD6BBPjs = require('./chunk-RIOD6BBP.js');
4
4
 
5
5
  // src/executors/apply/executor.ts
6
- var executor_default = _chunk3PAJMHOFjs.withTerraformExecutor.call(void 0, "apply");
6
+ var executor_default = _chunkRIOD6BBPjs.withTerraformExecutor.call(void 0, "apply");
7
7
 
8
8
 
9
9
 
@@ -16,7 +16,7 @@ import {
16
16
  writeSuccess,
17
17
  writeTrace,
18
18
  writeWarning
19
- } from "./chunk-RXJYBJ7H.mjs";
19
+ } from "./chunk-QEMBK6MY.mjs";
20
20
  import {
21
21
  __dirname,
22
22
  __require
@@ -1161,7 +1161,7 @@ async function sizeLimitExecutorFn(options, context, config) {
1161
1161
  "The Size-Limit process failed because the context is not valid. Please run this command from a workspace."
1162
1162
  );
1163
1163
  }
1164
- writeInfo(`\u{1F4CF} Running Size-Limit on ${context.projectName}`, config);
1164
+ writeInfo(`\u{1F4CF} Running Size-Limit on ${context.projectName}`, config);
1165
1165
  sizeLimit([filePlugin, esBuildPlugin, esBuildWhyPlugin], {
1166
1166
  checks: options.entry ?? context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? joinPathFragments4(
1167
1167
  context.projectsConfigurations.projects[context.projectName]?.root ?? "./",
@@ -1169,7 +1169,7 @@ async function sizeLimitExecutorFn(options, context, config) {
1169
1169
  )
1170
1170
  }).then((result) => {
1171
1171
  writeInfo(
1172
- `\u{1F4CF} ${context.projectName} Size-Limit result: ${JSON.stringify(result)}`,
1172
+ `\u{1F4CF} ${context.projectName} Size-Limit result: ${JSON.stringify(result)}`,
1173
1173
  config
1174
1174
  );
1175
1175
  });
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withRunExecutor
3
- } from "./chunk-RXJYBJ7H.mjs";
3
+ } from "./chunk-QEMBK6MY.mjs";
4
4
 
5
5
  // ../config-tools/src/utilities/run.ts
6
6
  import { exec, execSync } from "node:child_process";
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk3PAJMHOFjs = require('./chunk-3PAJMHOF.js');
3
+ var _chunkRIOD6BBPjs = require('./chunk-RIOD6BBP.js');
4
4
 
5
5
  // src/executors/output/executor.ts
6
- var executor_default = _chunk3PAJMHOFjs.withTerraformExecutor.call(void 0, "output");
6
+ var executor_default = _chunkRIOD6BBPjs.withTerraformExecutor.call(void 0, "output");
7
7
 
8
8
 
9
9
 
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withTerraformExecutor
3
- } from "./chunk-E2U43APT.mjs";
3
+ } from "./chunk-LHLWLQYI.mjs";
4
4
 
5
5
  // src/executors/destroy/executor.ts
6
6
  var executor_default = withTerraformExecutor("destroy");