@storm-software/terraform-tools 0.66.79 → 0.66.80
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/dist/{chunk-P5BRQAIT.mjs → chunk-2QDLWNVX.mjs} +1 -1
- package/dist/{chunk-TFC7CJJL.js → chunk-3CSFNH3Z.js} +157 -157
- package/dist/{chunk-VLDCT332.js → chunk-I6FP4VNE.js} +2 -2
- package/dist/{chunk-QA42EDAB.js → chunk-ISYDNAZN.js} +2 -2
- package/dist/{chunk-SFDYWWEG.mjs → chunk-JKTX7VHP.mjs} +1 -1
- package/dist/{chunk-TWI5KBOR.mjs → chunk-M2PEDBV6.mjs} +3 -3
- package/dist/{chunk-I53PCL5S.mjs → chunk-O6ROXUTN.mjs} +1 -1
- package/dist/{chunk-RIEYZR2V.mjs → chunk-S6RGC2M3.mjs} +1 -1
- package/dist/{chunk-LNXYWGAS.js → chunk-TGHJHVEQ.js} +2 -2
- package/dist/{chunk-25SEY6TK.js → chunk-TYTBAFZE.js} +3 -3
- package/dist/{chunk-TTRVAHUW.mjs → chunk-UZXYTWUI.mjs} +1 -1
- package/dist/{chunk-NB5PVKFM.mjs → chunk-V4NOUTYC.mjs} +1 -1
- package/dist/{chunk-5VNAQK7B.js → chunk-XUSVIXEJ.js} +2 -2
- package/dist/{chunk-BBOLLBFZ.js → chunk-ZR6GKSIF.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 +4 -4
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkTGHJHVEQjs = require('./chunk-TGHJHVEQ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/apply/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkTGHJHVEQjs.withTerraformExecutor.call(void 0, "apply");
|
|
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 _chunkTGHJHVEQjs = require('./chunk-TGHJHVEQ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/plan/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkTGHJHVEQjs.withTerraformExecutor.call(void 0, "plan");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
@@ -115,12 +115,12 @@ function isUnicodeSupported() {
|
|
|
115
115
|
var useIcon = (c, fallback) => isUnicodeSupported() ? c : fallback;
|
|
116
116
|
var CONSOLE_ICONS = {
|
|
117
117
|
[LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
|
|
118
|
-
[LogLevelLabel.FATAL]: useIcon("\
|
|
118
|
+
[LogLevelLabel.FATAL]: useIcon("\u2620", "\xD7"),
|
|
119
119
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
120
|
-
[LogLevelLabel.INFO]: useIcon("\
|
|
120
|
+
[LogLevelLabel.INFO]: useIcon("\u{1F6C8}", "i"),
|
|
121
121
|
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
122
122
|
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
123
|
-
[LogLevelLabel.TRACE]: useIcon("\
|
|
123
|
+
[LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
|
|
124
124
|
[LogLevelLabel.ALL]: useIcon("\u2709", "\u2192")
|
|
125
125
|
};
|
|
126
126
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkTYTBAFZEjs = require('./chunk-TYTBAFZE.js');
|
|
4
4
|
|
|
5
5
|
// ../config-tools/src/utilities/run.ts
|
|
6
6
|
var _child_process = require('child_process');
|
|
@@ -25,7 +25,7 @@ var run = (config, command, cwd = _nullishCoalesce(config.workspaceRoot, () => (
|
|
|
25
25
|
// src/base/terraform-executor.ts
|
|
26
26
|
var _shelljs = require('shelljs');
|
|
27
27
|
var withTerraformExecutor = (command, executorOptions = {}) => async (_options, context) => {
|
|
28
|
-
return
|
|
28
|
+
return _chunkTYTBAFZEjs.withRunExecutor.call(void 0,
|
|
29
29
|
`Terraform \`${command}\` Command Executor`,
|
|
30
30
|
async (options, context2, config) => {
|
|
31
31
|
if (!_shelljs.which.call(void 0, "tofu") || !_shelljs.which.call(void 0, "terraform")) {
|
|
@@ -115,12 +115,12 @@ function isUnicodeSupported() {
|
|
|
115
115
|
var useIcon = (c, fallback) => isUnicodeSupported() ? c : fallback;
|
|
116
116
|
var CONSOLE_ICONS = {
|
|
117
117
|
[LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
|
|
118
|
-
[LogLevelLabel.FATAL]: useIcon("\
|
|
118
|
+
[LogLevelLabel.FATAL]: useIcon("\u2620", "\xD7"),
|
|
119
119
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
120
|
-
[LogLevelLabel.INFO]: useIcon("\
|
|
120
|
+
[LogLevelLabel.INFO]: useIcon("\u{1F6C8}", "i"),
|
|
121
121
|
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
122
122
|
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
123
|
-
[LogLevelLabel.TRACE]: useIcon("\
|
|
123
|
+
[LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
|
|
124
124
|
[LogLevelLabel.ALL]: useIcon("\u2709", "\u2192")
|
|
125
125
|
};
|
|
126
126
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkTGHJHVEQjs = require('./chunk-TGHJHVEQ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/destroy/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkTGHJHVEQjs.withTerraformExecutor.call(void 0, "destroy");
|
|
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 _chunkTGHJHVEQjs = require('./chunk-TGHJHVEQ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/output/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkTGHJHVEQjs.withTerraformExecutor.call(void 0, "output");
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
package/dist/executors.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";require('./chunk-E7SPQEPH.js');
|
|
2
|
-
require('./chunk-
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-XUSVIXEJ.js');
|
|
3
|
+
require('./chunk-ZR6GKSIF.js');
|
|
4
|
+
require('./chunk-ISYDNAZN.js');
|
|
5
|
+
require('./chunk-I6FP4VNE.js');
|
|
6
|
+
require('./chunk-TGHJHVEQ.js');
|
|
7
|
+
require('./chunk-TYTBAFZE.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import "./chunk-HYHKZPRR.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-UZXYTWUI.mjs";
|
|
3
|
+
import "./chunk-O6ROXUTN.mjs";
|
|
4
|
+
import "./chunk-S6RGC2M3.mjs";
|
|
5
|
+
import "./chunk-JKTX7VHP.mjs";
|
|
6
|
+
import "./chunk-2QDLWNVX.mjs";
|
|
7
|
+
import "./chunk-M2PEDBV6.mjs";
|
|
8
8
|
import "./chunk-3SMBRI6D.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('./chunk-
|
|
4
|
+
var _chunk3CSFNH3Zjs = require('./chunk-3CSFNH3Z.js');
|
|
5
|
+
require('./chunk-TYTBAFZE.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.initGenerator =
|
|
8
|
+
exports.initGenerator = _chunk3CSFNH3Zjs.initGenerator;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-E7SPQEPH.js');
|
|
2
|
-
require('./chunk-
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-XUSVIXEJ.js');
|
|
3
|
+
require('./chunk-ZR6GKSIF.js');
|
|
4
|
+
require('./chunk-ISYDNAZN.js');
|
|
5
5
|
require('./chunk-N2YKXZ5R.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunk3CSFNH3Zjs = require('./chunk-3CSFNH3Z.js');
|
|
9
9
|
require('./chunk-GUQOEBFW.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
var _chunkILC773N2js = require('./chunk-ILC773N2.js');
|
|
13
|
-
require('./chunk-
|
|
13
|
+
require('./chunk-I6FP4VNE.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
17
|
-
require('./chunk-
|
|
16
|
+
var _chunkTGHJHVEQjs = require('./chunk-TGHJHVEQ.js');
|
|
17
|
+
require('./chunk-TYTBAFZE.js');
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator =
|
|
22
|
+
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.initGenerator = _chunk3CSFNH3Zjs.initGenerator; exports.withTerraformExecutor = _chunkTGHJHVEQjs.withTerraformExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import "./chunk-HYHKZPRR.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-UZXYTWUI.mjs";
|
|
3
|
+
import "./chunk-O6ROXUTN.mjs";
|
|
4
|
+
import "./chunk-S6RGC2M3.mjs";
|
|
5
5
|
import "./chunk-23KFTIT2.mjs";
|
|
6
6
|
import {
|
|
7
7
|
initGenerator
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-V4NOUTYC.mjs";
|
|
9
9
|
import "./chunk-CA7S5MOH.mjs";
|
|
10
10
|
import {
|
|
11
11
|
base_terraform_executor_untyped_default
|
|
12
12
|
} from "./chunk-EL25IDXP.mjs";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-JKTX7VHP.mjs";
|
|
14
14
|
import {
|
|
15
15
|
withTerraformExecutor
|
|
16
|
-
} from "./chunk-
|
|
17
|
-
import "./chunk-
|
|
16
|
+
} from "./chunk-2QDLWNVX.mjs";
|
|
17
|
+
import "./chunk-M2PEDBV6.mjs";
|
|
18
18
|
import "./chunk-3SMBRI6D.mjs";
|
|
19
19
|
export {
|
|
20
20
|
base_terraform_executor_untyped_default as baseTerraformExecutorSchema,
|
package/dist/src/base/index.js
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
var _chunkILC773N2js = require('../../chunk-ILC773N2.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
8
|
-
require('../../chunk-
|
|
7
|
+
var _chunkTGHJHVEQjs = require('../../chunk-TGHJHVEQ.js');
|
|
8
|
+
require('../../chunk-TYTBAFZE.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.withTerraformExecutor =
|
|
12
|
+
exports.baseTerraformExecutorSchema = _chunkILC773N2js.base_terraform_executor_untyped_default; exports.withTerraformExecutor = _chunkTGHJHVEQjs.withTerraformExecutor;
|
package/dist/src/base/index.mjs
CHANGED
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
} from "../../chunk-EL25IDXP.mjs";
|
|
5
5
|
import {
|
|
6
6
|
withTerraformExecutor
|
|
7
|
-
} from "../../chunk-
|
|
8
|
-
import "../../chunk-
|
|
7
|
+
} from "../../chunk-2QDLWNVX.mjs";
|
|
8
|
+
import "../../chunk-M2PEDBV6.mjs";
|
|
9
9
|
import "../../chunk-3SMBRI6D.mjs";
|
|
10
10
|
export {
|
|
11
11
|
base_terraform_executor_untyped_default as baseTerraformExecutorSchema,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var _chunkTGHJHVEQjs = require('../../chunk-TGHJHVEQ.js');
|
|
4
|
+
require('../../chunk-TYTBAFZE.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.withTerraformExecutor =
|
|
7
|
+
exports.withTerraformExecutor = _chunkTGHJHVEQjs.withTerraformExecutor;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkI6FP4VNEjs = require('../../../chunk-I6FP4VNE.js');
|
|
4
|
+
require('../../../chunk-TGHJHVEQ.js');
|
|
5
|
+
require('../../../chunk-TYTBAFZE.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkI6FP4VNEjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-JKTX7VHP.mjs";
|
|
4
|
+
import "../../../chunk-2QDLWNVX.mjs";
|
|
5
|
+
import "../../../chunk-M2PEDBV6.mjs";
|
|
6
6
|
import "../../../chunk-3SMBRI6D.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkXUSVIXEJjs = require('../../../chunk-XUSVIXEJ.js');
|
|
4
|
+
require('../../../chunk-TGHJHVEQ.js');
|
|
5
|
+
require('../../../chunk-TYTBAFZE.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkXUSVIXEJjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-UZXYTWUI.mjs";
|
|
4
|
+
import "../../../chunk-2QDLWNVX.mjs";
|
|
5
|
+
import "../../../chunk-M2PEDBV6.mjs";
|
|
6
6
|
import "../../../chunk-3SMBRI6D.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkZR6GKSIFjs = require('../../../chunk-ZR6GKSIF.js');
|
|
4
|
+
require('../../../chunk-TGHJHVEQ.js');
|
|
5
|
+
require('../../../chunk-TYTBAFZE.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkZR6GKSIFjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-O6ROXUTN.mjs";
|
|
4
|
+
import "../../../chunk-2QDLWNVX.mjs";
|
|
5
|
+
import "../../../chunk-M2PEDBV6.mjs";
|
|
6
6
|
import "../../../chunk-3SMBRI6D.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkISYDNAZNjs = require('../../../chunk-ISYDNAZN.js');
|
|
4
|
+
require('../../../chunk-TGHJHVEQ.js');
|
|
5
|
+
require('../../../chunk-TYTBAFZE.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkISYDNAZNjs.executor_default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-S6RGC2M3.mjs";
|
|
4
|
+
import "../../../chunk-2QDLWNVX.mjs";
|
|
5
|
+
import "../../../chunk-M2PEDBV6.mjs";
|
|
6
6
|
import "../../../chunk-3SMBRI6D.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
5
|
-
require('../../../chunk-
|
|
4
|
+
var _chunk3CSFNH3Zjs = require('../../../chunk-3CSFNH3Z.js');
|
|
5
|
+
require('../../../chunk-TYTBAFZE.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunk3CSFNH3Zjs.init_default; exports.initGenerator = _chunk3CSFNH3Zjs.initGenerator;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
initGenerator,
|
|
3
3
|
init_default
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-V4NOUTYC.mjs";
|
|
5
|
+
import "../../../chunk-M2PEDBV6.mjs";
|
|
6
6
|
import "../../../chunk-3SMBRI6D.mjs";
|
|
7
7
|
export {
|
|
8
8
|
init_default as default,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/terraform-tools",
|
|
3
|
-
"version": "0.66.
|
|
3
|
+
"version": "0.66.80",
|
|
4
4
|
"description": "Tools for managing Terraform infrastructure within a Nx workspace.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -115,8 +115,8 @@
|
|
|
115
115
|
"peerDependencies": {
|
|
116
116
|
"@nx/devkit": "^22.3.3",
|
|
117
117
|
"@storm-software/config": "1.135.0",
|
|
118
|
-
"@storm-software/config-tools": "1.188.
|
|
119
|
-
"@storm-software/workspace-tools": "1.294.
|
|
118
|
+
"@storm-software/config-tools": "1.188.77",
|
|
119
|
+
"@storm-software/workspace-tools": "1.294.23",
|
|
120
120
|
"tsup": "8.4.0",
|
|
121
121
|
"untyped": "1.5.2"
|
|
122
122
|
},
|
|
@@ -135,5 +135,5 @@
|
|
|
135
135
|
"publishConfig": { "access": "public" },
|
|
136
136
|
"executors": "./executors.json",
|
|
137
137
|
"generators": "./generators.json",
|
|
138
|
-
"gitHead": "
|
|
138
|
+
"gitHead": "3053ec1a8f1bd29d0303c98c1fad84c2613b7b97"
|
|
139
139
|
}
|