@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.
- package/CHANGELOG.md +44 -0
- package/README.md +1 -1
- package/dist/{chunk-IZAECJQQ.js → chunk-3HCCGFVA.js} +742 -662
- package/dist/{chunk-4VNSDKOR.js → chunk-HJPLYKIK.js} +2 -2
- package/dist/{chunk-AWITVSS5.js → chunk-IRQ6ATAT.js} +2 -2
- package/dist/{chunk-6YTYOAW6.mjs → chunk-JRLSRM63.mjs} +3 -3
- package/dist/{chunk-E2U43APT.mjs → chunk-LHLWLQYI.mjs} +1 -1
- package/dist/{chunk-FQ2GHA6R.js → chunk-OTXSJUFN.js} +2 -2
- package/dist/{chunk-Y4UYW4I2.mjs → chunk-PTGHK4O2.mjs} +1 -1
- package/dist/{chunk-QHGW6MC3.js → chunk-QDREZDRA.js} +108 -108
- package/dist/{chunk-RXJYBJ7H.mjs → chunk-QEMBK6MY.mjs} +835 -755
- package/dist/{chunk-3PAJMHOF.js → chunk-RIOD6BBP.js} +2 -2
- package/dist/{chunk-VONBHUKA.mjs → chunk-TTTXG2FP.mjs} +1 -1
- package/dist/{chunk-W27SMATF.mjs → chunk-VWGJH5XZ.mjs} +1 -1
- package/dist/{chunk-W5R5GLHL.mjs → chunk-W3KFGH6F.mjs} +1 -1
- package/dist/{chunk-6HOWHHDG.js → chunk-XLCDBNTQ.js} +2 -2
- 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 +8 -8
- package/dist/index.mjs +7 -7
- 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
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkRIOD6BBPjs = require('./chunk-RIOD6BBP.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/plan/executor.ts
|
|
6
|
-
var executor_default =
|
|
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
|
|
3
|
+
var _chunkRIOD6BBPjs = require('./chunk-RIOD6BBP.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/apply/executor.ts
|
|
6
|
-
var executor_default =
|
|
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-
|
|
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}
|
|
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}
|
|
1172
|
+
`\u{1F4CF} ${context.projectName} Size-Limit result: ${JSON.stringify(result)}`,
|
|
1173
1173
|
config
|
|
1174
1174
|
);
|
|
1175
1175
|
});
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkRIOD6BBPjs = require('./chunk-RIOD6BBP.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/output/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkRIOD6BBPjs.withTerraformExecutor.call(void 0, "output");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|