@storm-software/terraform-tools 0.66.77 → 0.66.79
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 +21 -0
- package/dist/{chunk-AYLQUJIF.js → chunk-25SEY6TK.js} +19 -2
- package/dist/{chunk-JRIDUPBR.js → chunk-5VNAQK7B.js} +2 -2
- package/dist/{chunk-V3M776FJ.js → chunk-BBOLLBFZ.js} +2 -2
- package/dist/{chunk-7SJWEZZM.mjs → chunk-I53PCL5S.mjs} +1 -1
- package/dist/{chunk-73ALMVL3.js → chunk-LNXYWGAS.js} +2 -2
- package/dist/{chunk-MAO7X2WI.mjs → chunk-NB5PVKFM.mjs} +1 -1
- package/dist/{chunk-O4DPEFXY.mjs → chunk-P5BRQAIT.mjs} +1 -1
- package/dist/{chunk-NVQ66RID.js → chunk-QA42EDAB.js} +2 -2
- package/dist/{chunk-BOIKO2VK.mjs → chunk-RIEYZR2V.mjs} +1 -1
- package/dist/{chunk-ANCKJ3HY.mjs → chunk-SFDYWWEG.mjs} +1 -1
- package/dist/{chunk-EDSOVRQE.js → chunk-TFC7CJJL.js} +157 -157
- package/dist/{chunk-IHBOHQJP.mjs → chunk-TTRVAHUW.mjs} +1 -1
- package/dist/{chunk-GGQWZWZ3.mjs → chunk-TWI5KBOR.mjs} +19 -2
- package/dist/{chunk-BR27SHF4.js → chunk-VLDCT332.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 +12 -12
- package/dist/index.mjs +11 -11
- 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 +5 -5
|
@@ -39,6 +39,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
39
39
|
help: "#5C4EE5",
|
|
40
40
|
success: "#087f5b",
|
|
41
41
|
info: "#0550ae",
|
|
42
|
+
debug: "#8afafc",
|
|
42
43
|
warning: "#e3b341",
|
|
43
44
|
danger: "#D8314A",
|
|
44
45
|
fatal: "#51070f",
|
|
@@ -55,6 +56,7 @@ var DEFAULT_COLOR_CONFIG = {
|
|
|
55
56
|
help: "#818cf8",
|
|
56
57
|
success: "#10b981",
|
|
57
58
|
info: "#58a6ff",
|
|
59
|
+
debug: "#8afafc",
|
|
58
60
|
warning: "#f3d371",
|
|
59
61
|
danger: "#D8314A",
|
|
60
62
|
fatal: "#a40e26",
|
|
@@ -235,7 +237,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
235
237
|
return (message) => {
|
|
236
238
|
console.debug(
|
|
237
239
|
`
|
|
238
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.
|
|
240
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
239
241
|
`
|
|
240
242
|
);
|
|
241
243
|
};
|
|
@@ -244,7 +246,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
244
246
|
return (message) => {
|
|
245
247
|
console.debug(
|
|
246
248
|
`
|
|
247
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
249
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
248
250
|
`
|
|
249
251
|
);
|
|
250
252
|
};
|
|
@@ -698,6 +700,10 @@ var infoColorSchema = z._default(colorSchema, "#38bdf8");
|
|
|
698
700
|
schemaRegistry.add(infoColorSchema, {
|
|
699
701
|
description: "The informational color of the workspace"
|
|
700
702
|
});
|
|
703
|
+
var debugColorSchema = z._default(colorSchema, "#8afafc");
|
|
704
|
+
schemaRegistry.add(debugColorSchema, {
|
|
705
|
+
description: "The debug color of the workspace"
|
|
706
|
+
});
|
|
701
707
|
var warningColorSchema = z._default(colorSchema, "#f3d371");
|
|
702
708
|
schemaRegistry.add(warningColorSchema, {
|
|
703
709
|
description: "The warning color of the workspace"
|
|
@@ -732,6 +738,7 @@ var darkColorsSchema = z.object({
|
|
|
732
738
|
help: helpColorSchema,
|
|
733
739
|
success: successColorSchema,
|
|
734
740
|
info: infoColorSchema,
|
|
741
|
+
debug: debugColorSchema,
|
|
735
742
|
warning: warningColorSchema,
|
|
736
743
|
danger: dangerColorSchema,
|
|
737
744
|
fatal: fatalColorSchema,
|
|
@@ -749,6 +756,7 @@ var lightColorsSchema = z.object({
|
|
|
749
756
|
help: helpColorSchema,
|
|
750
757
|
success: successColorSchema,
|
|
751
758
|
info: infoColorSchema,
|
|
759
|
+
debug: debugColorSchema,
|
|
752
760
|
warning: warningColorSchema,
|
|
753
761
|
danger: dangerColorSchema,
|
|
754
762
|
fatal: fatalColorSchema,
|
|
@@ -770,6 +778,7 @@ var singleColorsSchema = z.object({
|
|
|
770
778
|
help: helpColorSchema,
|
|
771
779
|
success: successColorSchema,
|
|
772
780
|
info: infoColorSchema,
|
|
781
|
+
debug: debugColorSchema,
|
|
773
782
|
warning: warningColorSchema,
|
|
774
783
|
danger: dangerColorSchema,
|
|
775
784
|
fatal: fatalColorSchema,
|
|
@@ -1555,6 +1564,7 @@ var getSingleThemeColorsEnv = (prefix) => {
|
|
|
1555
1564
|
help: process.env[`${prefix}HELP`],
|
|
1556
1565
|
success: process.env[`${prefix}SUCCESS`],
|
|
1557
1566
|
info: process.env[`${prefix}INFO`],
|
|
1567
|
+
debug: process.env[`${prefix}DEBUG`],
|
|
1558
1568
|
warning: process.env[`${prefix}WARNING`],
|
|
1559
1569
|
danger: process.env[`${prefix}DANGER`],
|
|
1560
1570
|
fatal: process.env[`${prefix}FATAL`],
|
|
@@ -1593,6 +1603,7 @@ var getBaseThemeColorsEnv = (prefix) => {
|
|
|
1593
1603
|
help: process.env[`${prefix}HELP`],
|
|
1594
1604
|
success: process.env[`${prefix}SUCCESS`],
|
|
1595
1605
|
info: process.env[`${prefix}INFO`],
|
|
1606
|
+
debug: process.env[`${prefix}DEBUG`],
|
|
1596
1607
|
warning: process.env[`${prefix}WARNING`],
|
|
1597
1608
|
danger: process.env[`${prefix}DANGER`],
|
|
1598
1609
|
fatal: process.env[`${prefix}FATAL`],
|
|
@@ -1894,6 +1905,9 @@ var setSingleThemeColorsEnv = (prefix, config) => {
|
|
|
1894
1905
|
if (config.info) {
|
|
1895
1906
|
process.env[`${prefix}INFO`] = config.info;
|
|
1896
1907
|
}
|
|
1908
|
+
if (config.debug) {
|
|
1909
|
+
process.env[`${prefix}DEBUG`] = config.debug;
|
|
1910
|
+
}
|
|
1897
1911
|
if (config.warning) {
|
|
1898
1912
|
process.env[`${prefix}WARNING`] = config.warning;
|
|
1899
1913
|
}
|
|
@@ -1949,6 +1963,9 @@ var setBaseThemeColorsEnv = (prefix, config) => {
|
|
|
1949
1963
|
if (config.info) {
|
|
1950
1964
|
process.env[`${prefix}INFO`] = config.info;
|
|
1951
1965
|
}
|
|
1966
|
+
if (config.debug) {
|
|
1967
|
+
process.env[`${prefix}DEBUG`] = config.debug;
|
|
1968
|
+
}
|
|
1952
1969
|
if (config.warning) {
|
|
1953
1970
|
process.env[`${prefix}WARNING`] = config.warning;
|
|
1954
1971
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkLNXYWGASjs = require('./chunk-LNXYWGAS.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/apply/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkLNXYWGASjs.withTerraformExecutor.call(void 0, "apply");
|
|
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-5VNAQK7B.js');
|
|
3
|
+
require('./chunk-BBOLLBFZ.js');
|
|
4
|
+
require('./chunk-QA42EDAB.js');
|
|
5
|
+
require('./chunk-VLDCT332.js');
|
|
6
|
+
require('./chunk-LNXYWGAS.js');
|
|
7
|
+
require('./chunk-25SEY6TK.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-TTRVAHUW.mjs";
|
|
3
|
+
import "./chunk-I53PCL5S.mjs";
|
|
4
|
+
import "./chunk-RIEYZR2V.mjs";
|
|
5
|
+
import "./chunk-SFDYWWEG.mjs";
|
|
6
|
+
import "./chunk-P5BRQAIT.mjs";
|
|
7
|
+
import "./chunk-TWI5KBOR.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 _chunkTFC7CJJLjs = require('./chunk-TFC7CJJL.js');
|
|
5
|
+
require('./chunk-25SEY6TK.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.initGenerator =
|
|
8
|
+
exports.initGenerator = _chunkTFC7CJJLjs.initGenerator;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-E7SPQEPH.js');
|
|
2
|
+
require('./chunk-5VNAQK7B.js');
|
|
3
|
+
require('./chunk-BBOLLBFZ.js');
|
|
4
|
+
require('./chunk-QA42EDAB.js');
|
|
5
|
+
require('./chunk-N2YKXZ5R.js');
|
|
2
6
|
|
|
3
7
|
|
|
4
|
-
var
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-N2YKXZ5R.js');
|
|
8
|
+
var _chunkTFC7CJJLjs = require('./chunk-TFC7CJJL.js');
|
|
9
|
+
require('./chunk-GUQOEBFW.js');
|
|
7
10
|
|
|
8
11
|
|
|
9
|
-
var
|
|
10
|
-
require('./chunk-
|
|
11
|
-
require('./chunk-JRIDUPBR.js');
|
|
12
|
-
require('./chunk-V3M776FJ.js');
|
|
13
|
-
require('./chunk-NVQ66RID.js');
|
|
12
|
+
var _chunkILC773N2js = require('./chunk-ILC773N2.js');
|
|
13
|
+
require('./chunk-VLDCT332.js');
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
17
|
-
require('./chunk-
|
|
16
|
+
var _chunkLNXYWGASjs = require('./chunk-LNXYWGAS.js');
|
|
17
|
+
require('./chunk-25SEY6TK.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 = _chunkTFC7CJJLjs.initGenerator; exports.withTerraformExecutor = _chunkLNXYWGASjs.withTerraformExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import "./chunk-CA7S5MOH.mjs";
|
|
2
|
-
import {
|
|
3
|
-
base_terraform_executor_untyped_default
|
|
4
|
-
} from "./chunk-EL25IDXP.mjs";
|
|
5
1
|
import "./chunk-HYHKZPRR.mjs";
|
|
2
|
+
import "./chunk-TTRVAHUW.mjs";
|
|
3
|
+
import "./chunk-I53PCL5S.mjs";
|
|
4
|
+
import "./chunk-RIEYZR2V.mjs";
|
|
6
5
|
import "./chunk-23KFTIT2.mjs";
|
|
7
6
|
import {
|
|
8
7
|
initGenerator
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
} from "./chunk-NB5PVKFM.mjs";
|
|
9
|
+
import "./chunk-CA7S5MOH.mjs";
|
|
10
|
+
import {
|
|
11
|
+
base_terraform_executor_untyped_default
|
|
12
|
+
} from "./chunk-EL25IDXP.mjs";
|
|
13
|
+
import "./chunk-SFDYWWEG.mjs";
|
|
14
14
|
import {
|
|
15
15
|
withTerraformExecutor
|
|
16
|
-
} from "./chunk-
|
|
17
|
-
import "./chunk-
|
|
16
|
+
} from "./chunk-P5BRQAIT.mjs";
|
|
17
|
+
import "./chunk-TWI5KBOR.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 _chunkLNXYWGASjs = require('../../chunk-LNXYWGAS.js');
|
|
8
|
+
require('../../chunk-25SEY6TK.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 = _chunkLNXYWGASjs.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-P5BRQAIT.mjs";
|
|
8
|
+
import "../../chunk-TWI5KBOR.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 _chunkLNXYWGASjs = require('../../chunk-LNXYWGAS.js');
|
|
4
|
+
require('../../chunk-25SEY6TK.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.withTerraformExecutor =
|
|
7
|
+
exports.withTerraformExecutor = _chunkLNXYWGASjs.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 _chunkVLDCT332js = require('../../../chunk-VLDCT332.js');
|
|
4
|
+
require('../../../chunk-LNXYWGAS.js');
|
|
5
|
+
require('../../../chunk-25SEY6TK.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkVLDCT332js.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-SFDYWWEG.mjs";
|
|
4
|
+
import "../../../chunk-P5BRQAIT.mjs";
|
|
5
|
+
import "../../../chunk-TWI5KBOR.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 _chunk5VNAQK7Bjs = require('../../../chunk-5VNAQK7B.js');
|
|
4
|
+
require('../../../chunk-LNXYWGAS.js');
|
|
5
|
+
require('../../../chunk-25SEY6TK.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunk5VNAQK7Bjs.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-TTRVAHUW.mjs";
|
|
4
|
+
import "../../../chunk-P5BRQAIT.mjs";
|
|
5
|
+
import "../../../chunk-TWI5KBOR.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 _chunkBBOLLBFZjs = require('../../../chunk-BBOLLBFZ.js');
|
|
4
|
+
require('../../../chunk-LNXYWGAS.js');
|
|
5
|
+
require('../../../chunk-25SEY6TK.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkBBOLLBFZjs.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-I53PCL5S.mjs";
|
|
4
|
+
import "../../../chunk-P5BRQAIT.mjs";
|
|
5
|
+
import "../../../chunk-TWI5KBOR.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 _chunkQA42EDABjs = require('../../../chunk-QA42EDAB.js');
|
|
4
|
+
require('../../../chunk-LNXYWGAS.js');
|
|
5
|
+
require('../../../chunk-25SEY6TK.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkQA42EDABjs.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-RIEYZR2V.mjs";
|
|
4
|
+
import "../../../chunk-P5BRQAIT.mjs";
|
|
5
|
+
import "../../../chunk-TWI5KBOR.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 _chunkTFC7CJJLjs = require('../../../chunk-TFC7CJJL.js');
|
|
5
|
+
require('../../../chunk-25SEY6TK.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkTFC7CJJLjs.init_default; exports.initGenerator = _chunkTFC7CJJLjs.initGenerator;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
initGenerator,
|
|
3
3
|
init_default
|
|
4
|
-
} from "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
4
|
+
} from "../../../chunk-NB5PVKFM.mjs";
|
|
5
|
+
import "../../../chunk-TWI5KBOR.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.79",
|
|
4
4
|
"description": "Tools for managing Terraform infrastructure within a Nx workspace.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -114,9 +114,9 @@
|
|
|
114
114
|
],
|
|
115
115
|
"peerDependencies": {
|
|
116
116
|
"@nx/devkit": "^22.3.3",
|
|
117
|
-
"@storm-software/config": "1.
|
|
118
|
-
"@storm-software/config-tools": "1.188.
|
|
119
|
-
"@storm-software/workspace-tools": "1.294.
|
|
117
|
+
"@storm-software/config": "1.135.0",
|
|
118
|
+
"@storm-software/config-tools": "1.188.76",
|
|
119
|
+
"@storm-software/workspace-tools": "1.294.22",
|
|
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": "d07f74f1d50951459260d2738dea47586e194f7f"
|
|
139
139
|
}
|