@storm-software/pulumi-tools 0.22.77 → 0.22.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.
Files changed (40) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/{chunk-2SD5L6FG.mjs → chunk-2H4D45US.mjs} +1 -1
  3. package/dist/{chunk-RJRLR7G5.js → chunk-2HKBOR4J.js} +2 -2
  4. package/dist/{chunk-BXDZGKD6.js → chunk-4QM5FINS.js} +2 -2
  5. package/dist/{chunk-RXARRFHK.mjs → chunk-4UTXCDZ3.mjs} +1 -1
  6. package/dist/{chunk-HQA5IZ6E.js → chunk-5NOYW65J.js} +2 -2
  7. package/dist/{chunk-AXLD7RZP.mjs → chunk-A5KZIZ5X.mjs} +1 -1
  8. package/dist/{chunk-AMJVTY2B.mjs → chunk-A7RYADJI.mjs} +1 -1
  9. package/dist/{chunk-OMJ3WEWY.js → chunk-EIWGXM4D.js} +2 -2
  10. package/dist/{chunk-2WYC5MT7.mjs → chunk-ENZ7QPM7.mjs} +1 -1
  11. package/dist/{chunk-EAQ4WHGQ.js → chunk-EUUQG25J.js} +2 -2
  12. package/dist/{chunk-U3B42XMQ.mjs → chunk-FAGVC7AV.mjs} +19 -2
  13. package/dist/{chunk-QPWLHW4L.mjs → chunk-FQ6JIGRX.mjs} +1 -1
  14. package/dist/{chunk-GEQWWV7F.js → chunk-FX3RERI6.js} +19 -2
  15. package/dist/{chunk-QNYVR4QB.mjs → chunk-JMNGRLT7.mjs} +1 -1
  16. package/dist/{chunk-GWBXFOOF.js → chunk-MLLIVG2Q.js} +5 -5
  17. package/dist/{chunk-7LDPSZWW.js → chunk-OGP2C6GE.js} +3 -3
  18. package/dist/executors.js +7 -7
  19. package/dist/executors.mjs +7 -7
  20. package/dist/generators.js +3 -3
  21. package/dist/generators.mjs +2 -2
  22. package/dist/index.js +9 -9
  23. package/dist/index.mjs +8 -8
  24. package/dist/src/base/base-executor.js +3 -3
  25. package/dist/src/base/base-executor.mjs +2 -2
  26. package/dist/src/base/index.js +3 -3
  27. package/dist/src/base/index.mjs +2 -2
  28. package/dist/src/executors/config/executor.js +4 -4
  29. package/dist/src/executors/config/executor.mjs +3 -3
  30. package/dist/src/executors/import/executor.js +4 -4
  31. package/dist/src/executors/import/executor.mjs +3 -3
  32. package/dist/src/executors/preview/executor.js +4 -4
  33. package/dist/src/executors/preview/executor.mjs +3 -3
  34. package/dist/src/executors/refresh/executor.js +4 -4
  35. package/dist/src/executors/refresh/executor.mjs +3 -3
  36. package/dist/src/executors/up/executor.js +4 -4
  37. package/dist/src/executors/up/executor.mjs +3 -3
  38. package/dist/src/generators/init/generator.js +3 -3
  39. package/dist/src/generators/init/generator.mjs +2 -2
  40. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -2,6 +2,27 @@
2
2
 
3
3
  # Changelog for Storm Ops - Pulumi Tools
4
4
 
5
+ ## [0.22.78](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.22.78) (01/14/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **workspace-tools** to **v1.294.22**
10
+ - Updated **config-tools** to **v1.188.76**
11
+ - Updated **config** to **v1.135.0**
12
+
13
+ ## [0.22.77](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.22.77) (12/30/2025)
14
+
15
+ ### Miscellaneous
16
+
17
+ - **monorepo:** Update `README.md` markdown files
18
+ ([eea67b18e](https://github.com/storm-software/storm-ops/commit/eea67b18e))
19
+
20
+ ### Updated Dependencies
21
+
22
+ - Updated **workspace-tools** to **v1.294.21**
23
+ - Updated **config-tools** to **v1.188.75**
24
+ - Updated **config** to **v1.134.75**
25
+
5
26
  ## [0.22.76](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.22.76) (12/23/2025)
6
27
 
7
28
  ### Miscellaneous
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  run,
3
3
  withRunExecutor
4
- } from "./chunk-U3B42XMQ.mjs";
4
+ } from "./chunk-FAGVC7AV.mjs";
5
5
 
6
6
  // src/base/base-executor.ts
7
7
  import { join } from "node:path";
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk7LDPSZWWjs = require('./chunk-7LDPSZWW.js');
3
+ var _chunkOGP2C6GEjs = require('./chunk-OGP2C6GE.js');
4
4
 
5
5
  // src/executors/up/executor.ts
6
- var executor_default = _chunk7LDPSZWWjs.withPulumiExecutor.call(void 0, "up", (options) => [
6
+ var executor_default = _chunkOGP2C6GEjs.withPulumiExecutor.call(void 0, "up", (options) => [
7
7
  "--suppress-progress",
8
8
  options.stack && `--stack=${options.stack}`,
9
9
  options.skipPreview && "--skip-preview",
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk7LDPSZWWjs = require('./chunk-7LDPSZWW.js');
3
+ var _chunkOGP2C6GEjs = require('./chunk-OGP2C6GE.js');
4
4
 
5
5
  // src/executors/import/executor.ts
6
- var executor_default = _chunk7LDPSZWWjs.withPulumiExecutor.call(void 0, "import", (options) => [
6
+ var executor_default = _chunkOGP2C6GEjs.withPulumiExecutor.call(void 0, "import", (options) => [
7
7
  options.target,
8
8
  options.name,
9
9
  options.id,
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withPulumiExecutor
3
- } from "./chunk-2SD5L6FG.mjs";
3
+ } from "./chunk-2H4D45US.mjs";
4
4
 
5
5
  // src/executors/preview/executor.ts
6
6
  var executor_default = withPulumiExecutor("preview", (options) => [
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk7LDPSZWWjs = require('./chunk-7LDPSZWW.js');
3
+ var _chunkOGP2C6GEjs = require('./chunk-OGP2C6GE.js');
4
4
 
5
5
  // src/executors/config/executor.ts
6
- var executor_default = _chunk7LDPSZWWjs.withPulumiExecutor.call(void 0, "config", (options) => [
6
+ var executor_default = _chunkOGP2C6GEjs.withPulumiExecutor.call(void 0, "config", (options) => [
7
7
  options.action,
8
8
  options.showSecrets && `--show-secrets`,
9
9
  options.secret && `--secret`,
@@ -5,7 +5,7 @@ import {
5
5
  initGenerator,
6
6
  run,
7
7
  withRunGenerator
8
- } from "./chunk-U3B42XMQ.mjs";
8
+ } from "./chunk-FAGVC7AV.mjs";
9
9
 
10
10
  // src/generators/init/generator.ts
11
11
  import {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withPulumiExecutor
3
- } from "./chunk-2SD5L6FG.mjs";
3
+ } from "./chunk-2H4D45US.mjs";
4
4
 
5
5
  // src/executors/up/executor.ts
6
6
  var executor_default = withPulumiExecutor("up", (options) => [
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk7LDPSZWWjs = require('./chunk-7LDPSZWW.js');
3
+ var _chunkOGP2C6GEjs = require('./chunk-OGP2C6GE.js');
4
4
 
5
5
  // src/executors/preview/executor.ts
6
- var executor_default = _chunk7LDPSZWWjs.withPulumiExecutor.call(void 0, "preview", (options) => [
6
+ var executor_default = _chunkOGP2C6GEjs.withPulumiExecutor.call(void 0, "preview", (options) => [
7
7
  options.stack && `--stack=${options.stack}`,
8
8
  options.expectNoChanges && "--expect-no-changes"
9
9
  ]);
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withPulumiExecutor
3
- } from "./chunk-2SD5L6FG.mjs";
3
+ } from "./chunk-2H4D45US.mjs";
4
4
 
5
5
  // src/executors/refresh/executor.ts
6
6
  var executor_default = withPulumiExecutor("refresh", (options) => [
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk7LDPSZWWjs = require('./chunk-7LDPSZWW.js');
3
+ var _chunkOGP2C6GEjs = require('./chunk-OGP2C6GE.js');
4
4
 
5
5
  // src/executors/refresh/executor.ts
6
- var executor_default = _chunk7LDPSZWWjs.withPulumiExecutor.call(void 0, "refresh", (options) => [
6
+ var executor_default = _chunkOGP2C6GEjs.withPulumiExecutor.call(void 0, "refresh", (options) => [
7
7
  "--suppress-progress",
8
8
  options.stack && `--stack=${options.stack}`,
9
9
  options.skipPreview && "--skip-preview",
@@ -63,6 +63,7 @@ var DEFAULT_COLOR_CONFIG = {
63
63
  help: "#5C4EE5",
64
64
  success: "#087f5b",
65
65
  info: "#0550ae",
66
+ debug: "#8afafc",
66
67
  warning: "#e3b341",
67
68
  danger: "#D8314A",
68
69
  fatal: "#51070f",
@@ -79,6 +80,7 @@ var DEFAULT_COLOR_CONFIG = {
79
80
  help: "#818cf8",
80
81
  success: "#10b981",
81
82
  info: "#58a6ff",
83
+ debug: "#8afafc",
82
84
  warning: "#f3d371",
83
85
  danger: "#D8314A",
84
86
  fatal: "#a40e26",
@@ -259,7 +261,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
259
261
  return (message) => {
260
262
  console.debug(
261
263
  `
262
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
264
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
263
265
  `
264
266
  );
265
267
  };
@@ -268,7 +270,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
268
270
  return (message) => {
269
271
  console.debug(
270
272
  `
271
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
273
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
272
274
  `
273
275
  );
274
276
  };
@@ -722,6 +724,10 @@ var infoColorSchema = z._default(colorSchema, "#38bdf8");
722
724
  schemaRegistry.add(infoColorSchema, {
723
725
  description: "The informational color of the workspace"
724
726
  });
727
+ var debugColorSchema = z._default(colorSchema, "#8afafc");
728
+ schemaRegistry.add(debugColorSchema, {
729
+ description: "The debug color of the workspace"
730
+ });
725
731
  var warningColorSchema = z._default(colorSchema, "#f3d371");
726
732
  schemaRegistry.add(warningColorSchema, {
727
733
  description: "The warning color of the workspace"
@@ -756,6 +762,7 @@ var darkColorsSchema = z.object({
756
762
  help: helpColorSchema,
757
763
  success: successColorSchema,
758
764
  info: infoColorSchema,
765
+ debug: debugColorSchema,
759
766
  warning: warningColorSchema,
760
767
  danger: dangerColorSchema,
761
768
  fatal: fatalColorSchema,
@@ -773,6 +780,7 @@ var lightColorsSchema = z.object({
773
780
  help: helpColorSchema,
774
781
  success: successColorSchema,
775
782
  info: infoColorSchema,
783
+ debug: debugColorSchema,
776
784
  warning: warningColorSchema,
777
785
  danger: dangerColorSchema,
778
786
  fatal: fatalColorSchema,
@@ -794,6 +802,7 @@ var singleColorsSchema = z.object({
794
802
  help: helpColorSchema,
795
803
  success: successColorSchema,
796
804
  info: infoColorSchema,
805
+ debug: debugColorSchema,
797
806
  warning: warningColorSchema,
798
807
  danger: dangerColorSchema,
799
808
  fatal: fatalColorSchema,
@@ -1579,6 +1588,7 @@ var getSingleThemeColorsEnv = (prefix) => {
1579
1588
  help: process.env[`${prefix}HELP`],
1580
1589
  success: process.env[`${prefix}SUCCESS`],
1581
1590
  info: process.env[`${prefix}INFO`],
1591
+ debug: process.env[`${prefix}DEBUG`],
1582
1592
  warning: process.env[`${prefix}WARNING`],
1583
1593
  danger: process.env[`${prefix}DANGER`],
1584
1594
  fatal: process.env[`${prefix}FATAL`],
@@ -1617,6 +1627,7 @@ var getBaseThemeColorsEnv = (prefix) => {
1617
1627
  help: process.env[`${prefix}HELP`],
1618
1628
  success: process.env[`${prefix}SUCCESS`],
1619
1629
  info: process.env[`${prefix}INFO`],
1630
+ debug: process.env[`${prefix}DEBUG`],
1620
1631
  warning: process.env[`${prefix}WARNING`],
1621
1632
  danger: process.env[`${prefix}DANGER`],
1622
1633
  fatal: process.env[`${prefix}FATAL`],
@@ -1918,6 +1929,9 @@ var setSingleThemeColorsEnv = (prefix, config) => {
1918
1929
  if (config.info) {
1919
1930
  process.env[`${prefix}INFO`] = config.info;
1920
1931
  }
1932
+ if (config.debug) {
1933
+ process.env[`${prefix}DEBUG`] = config.debug;
1934
+ }
1921
1935
  if (config.warning) {
1922
1936
  process.env[`${prefix}WARNING`] = config.warning;
1923
1937
  }
@@ -1973,6 +1987,9 @@ var setBaseThemeColorsEnv = (prefix, config) => {
1973
1987
  if (config.info) {
1974
1988
  process.env[`${prefix}INFO`] = config.info;
1975
1989
  }
1990
+ if (config.debug) {
1991
+ process.env[`${prefix}DEBUG`] = config.debug;
1992
+ }
1976
1993
  if (config.warning) {
1977
1994
  process.env[`${prefix}WARNING`] = config.warning;
1978
1995
  }
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withPulumiExecutor
3
- } from "./chunk-2SD5L6FG.mjs";
3
+ } from "./chunk-2H4D45US.mjs";
4
4
 
5
5
  // src/executors/config/executor.ts
6
6
  var executor_default = withPulumiExecutor("config", (options) => [
@@ -59,6 +59,7 @@ var DEFAULT_COLOR_CONFIG = {
59
59
  help: "#5C4EE5",
60
60
  success: "#087f5b",
61
61
  info: "#0550ae",
62
+ debug: "#8afafc",
62
63
  warning: "#e3b341",
63
64
  danger: "#D8314A",
64
65
  fatal: "#51070f",
@@ -75,6 +76,7 @@ var DEFAULT_COLOR_CONFIG = {
75
76
  help: "#818cf8",
76
77
  success: "#10b981",
77
78
  info: "#58a6ff",
79
+ debug: "#8afafc",
78
80
  warning: "#f3d371",
79
81
  danger: "#D8314A",
80
82
  fatal: "#a40e26",
@@ -255,7 +257,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
255
257
  return (message) => {
256
258
  console.debug(
257
259
  `
258
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( DEFAULT_COLOR_CONFIG.dark.info)))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
260
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug)))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
259
261
  `
260
262
  );
261
263
  };
@@ -264,7 +266,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
264
266
  return (message) => {
265
267
  console.debug(
266
268
  `
267
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( DEFAULT_COLOR_CONFIG.dark.info)))(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
269
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
268
270
  `
269
271
  );
270
272
  };
@@ -718,6 +720,10 @@ var infoColorSchema = z._default(colorSchema, "#38bdf8");
718
720
  schemaRegistry.add(infoColorSchema, {
719
721
  description: "The informational color of the workspace"
720
722
  });
723
+ var debugColorSchema = z._default(colorSchema, "#8afafc");
724
+ schemaRegistry.add(debugColorSchema, {
725
+ description: "The debug color of the workspace"
726
+ });
721
727
  var warningColorSchema = z._default(colorSchema, "#f3d371");
722
728
  schemaRegistry.add(warningColorSchema, {
723
729
  description: "The warning color of the workspace"
@@ -752,6 +758,7 @@ var darkColorsSchema = z.object({
752
758
  help: helpColorSchema,
753
759
  success: successColorSchema,
754
760
  info: infoColorSchema,
761
+ debug: debugColorSchema,
755
762
  warning: warningColorSchema,
756
763
  danger: dangerColorSchema,
757
764
  fatal: fatalColorSchema,
@@ -769,6 +776,7 @@ var lightColorsSchema = z.object({
769
776
  help: helpColorSchema,
770
777
  success: successColorSchema,
771
778
  info: infoColorSchema,
779
+ debug: debugColorSchema,
772
780
  warning: warningColorSchema,
773
781
  danger: dangerColorSchema,
774
782
  fatal: fatalColorSchema,
@@ -790,6 +798,7 @@ var singleColorsSchema = z.object({
790
798
  help: helpColorSchema,
791
799
  success: successColorSchema,
792
800
  info: infoColorSchema,
801
+ debug: debugColorSchema,
793
802
  warning: warningColorSchema,
794
803
  danger: dangerColorSchema,
795
804
  fatal: fatalColorSchema,
@@ -1575,6 +1584,7 @@ var getSingleThemeColorsEnv = (prefix) => {
1575
1584
  help: process.env[`${prefix}HELP`],
1576
1585
  success: process.env[`${prefix}SUCCESS`],
1577
1586
  info: process.env[`${prefix}INFO`],
1587
+ debug: process.env[`${prefix}DEBUG`],
1578
1588
  warning: process.env[`${prefix}WARNING`],
1579
1589
  danger: process.env[`${prefix}DANGER`],
1580
1590
  fatal: process.env[`${prefix}FATAL`],
@@ -1613,6 +1623,7 @@ var getBaseThemeColorsEnv = (prefix) => {
1613
1623
  help: process.env[`${prefix}HELP`],
1614
1624
  success: process.env[`${prefix}SUCCESS`],
1615
1625
  info: process.env[`${prefix}INFO`],
1626
+ debug: process.env[`${prefix}DEBUG`],
1616
1627
  warning: process.env[`${prefix}WARNING`],
1617
1628
  danger: process.env[`${prefix}DANGER`],
1618
1629
  fatal: process.env[`${prefix}FATAL`],
@@ -1914,6 +1925,9 @@ var setSingleThemeColorsEnv = (prefix, config) => {
1914
1925
  if (config.info) {
1915
1926
  process.env[`${prefix}INFO`] = config.info;
1916
1927
  }
1928
+ if (config.debug) {
1929
+ process.env[`${prefix}DEBUG`] = config.debug;
1930
+ }
1917
1931
  if (config.warning) {
1918
1932
  process.env[`${prefix}WARNING`] = config.warning;
1919
1933
  }
@@ -1969,6 +1983,9 @@ var setBaseThemeColorsEnv = (prefix, config) => {
1969
1983
  if (config.info) {
1970
1984
  process.env[`${prefix}INFO`] = config.info;
1971
1985
  }
1986
+ if (config.debug) {
1987
+ process.env[`${prefix}DEBUG`] = config.debug;
1988
+ }
1972
1989
  if (config.warning) {
1973
1990
  process.env[`${prefix}WARNING`] = config.warning;
1974
1991
  }
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withPulumiExecutor
3
- } from "./chunk-2SD5L6FG.mjs";
3
+ } from "./chunk-2H4D45US.mjs";
4
4
 
5
5
  // src/executors/import/executor.ts
6
6
  var executor_default = withPulumiExecutor("import", (options) => [
@@ -5,7 +5,7 @@ var _chunkQDPXTR73js = require('./chunk-QDPXTR73.js');
5
5
 
6
6
 
7
7
 
8
- var _chunkGEQWWV7Fjs = require('./chunk-GEQWWV7F.js');
8
+ var _chunkFX3RERI6js = require('./chunk-FX3RERI6.js');
9
9
 
10
10
  // src/generators/init/generator.ts
11
11
 
@@ -18,7 +18,7 @@ var _devkit = require('@nx/devkit');
18
18
  var _fs = require('fs');
19
19
  var _path = require('path');
20
20
  async function initGeneratorFn(tree, options, config) {
21
- const task = _chunkGEQWWV7Fjs.initGenerator.call(void 0, tree, options);
21
+ const task = _chunkFX3RERI6js.initGenerator.call(void 0, tree, options);
22
22
  _devkit.addProjectConfiguration.call(void 0, tree, options.name || "deployment", {
23
23
  root: options.directory || "./deployment",
24
24
  projectType: "application",
@@ -54,14 +54,14 @@ async function initGeneratorFn(tree, options, config) {
54
54
  }
55
55
  return task;
56
56
  }
57
- var generator_default = _chunkGEQWWV7Fjs.withRunGenerator.call(void 0,
57
+ var generator_default = _chunkFX3RERI6js.withRunGenerator.call(void 0,
58
58
  "Initialize Storm Pulumi workspace",
59
59
  initGeneratorFn
60
60
  );
61
61
  function generateNewPulumiProject(tree, options, config) {
62
62
  return () => {
63
63
  const template = _chunkQDPXTR73js.getCloudTemplateName.call(void 0, options.provider);
64
- _chunkGEQWWV7Fjs.run.call(void 0,
64
+ _chunkFX3RERI6js.run.call(void 0,
65
65
  config,
66
66
  [
67
67
  `pulumi new ${template}`,
@@ -85,7 +85,7 @@ function loginToPulumi(tree, options, config) {
85
85
  if (options.login.startsWith("file://")) {
86
86
  options.login = `file://${tree.root}/${options.directory || "./deployment"}/${options.login.replace("file://", "")}`;
87
87
  }
88
- _chunkGEQWWV7Fjs.run.call(void 0,
88
+ _chunkFX3RERI6js.run.call(void 0,
89
89
  config,
90
90
  ["pulumi login", options.login].filter(Boolean).join(" "),
91
91
  _path.join.call(void 0, config.workspaceRoot, options.directory || "./deployment"),
@@ -1,13 +1,13 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
3
 
4
- var _chunkGEQWWV7Fjs = require('./chunk-GEQWWV7F.js');
4
+ var _chunkFX3RERI6js = require('./chunk-FX3RERI6.js');
5
5
 
6
6
  // src/base/base-executor.ts
7
7
  var _path = require('path');
8
8
  var _shelljs = require('shelljs');
9
9
  var withPulumiExecutor = (command, argsMapper, executorOptions = {}) => async (_options, context) => {
10
- return _chunkGEQWWV7Fjs.withRunExecutor.call(void 0,
10
+ return _chunkFX3RERI6js.withRunExecutor.call(void 0,
11
11
  `Pulumi \`${command}\` Command Executor`,
12
12
  async (options, context2, config) => {
13
13
  if (!_shelljs.which.call(void 0, "pulumi")) {
@@ -21,7 +21,7 @@ var withPulumiExecutor = (command, argsMapper, executorOptions = {}) => async (_
21
21
  );
22
22
  }
23
23
  const { sourceRoot } = context2.projectsConfigurations.projects[context2.projectName];
24
- _chunkGEQWWV7Fjs.run.call(void 0,
24
+ _chunkFX3RERI6js.run.call(void 0,
25
25
  config,
26
26
  ["pulumi", command, ...argsMapper(options)].filter(Boolean).join(" "),
27
27
  _path.join.call(void 0, config.workspaceRoot, options.root || sourceRoot),
package/dist/executors.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";require('./chunk-XO62WWX4.js');
2
- require('./chunk-BXDZGKD6.js');
3
- require('./chunk-OMJ3WEWY.js');
4
- require('./chunk-EAQ4WHGQ.js');
5
- require('./chunk-RJRLR7G5.js');
6
- require('./chunk-HQA5IZ6E.js');
7
- require('./chunk-7LDPSZWW.js');
8
- require('./chunk-GEQWWV7F.js');
2
+ require('./chunk-4QM5FINS.js');
3
+ require('./chunk-EIWGXM4D.js');
4
+ require('./chunk-EUUQG25J.js');
5
+ require('./chunk-2HKBOR4J.js');
6
+ require('./chunk-5NOYW65J.js');
7
+ require('./chunk-OGP2C6GE.js');
8
+ require('./chunk-FX3RERI6.js');
@@ -1,9 +1,9 @@
1
1
  import "./chunk-UV4HQO3Y.mjs";
2
- import "./chunk-QNYVR4QB.mjs";
3
- import "./chunk-RXARRFHK.mjs";
4
- import "./chunk-2WYC5MT7.mjs";
5
- import "./chunk-AMJVTY2B.mjs";
6
- import "./chunk-QPWLHW4L.mjs";
7
- import "./chunk-2SD5L6FG.mjs";
8
- import "./chunk-U3B42XMQ.mjs";
2
+ import "./chunk-JMNGRLT7.mjs";
3
+ import "./chunk-4UTXCDZ3.mjs";
4
+ import "./chunk-ENZ7QPM7.mjs";
5
+ import "./chunk-A7RYADJI.mjs";
6
+ import "./chunk-FQ6JIGRX.mjs";
7
+ import "./chunk-2H4D45US.mjs";
8
+ import "./chunk-FAGVC7AV.mjs";
9
9
  import "./chunk-3SMBRI6D.mjs";
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
2
2
 
3
3
 
4
- var _chunkGWBXFOOFjs = require('./chunk-GWBXFOOF.js');
4
+ var _chunkMLLIVG2Qjs = require('./chunk-MLLIVG2Q.js');
5
5
  require('./chunk-QDPXTR73.js');
6
- require('./chunk-GEQWWV7F.js');
6
+ require('./chunk-FX3RERI6.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkGWBXFOOFjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkMLLIVG2Qjs.initGeneratorFn;
@@ -1,9 +1,9 @@
1
1
  import "./chunk-23KFTIT2.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-AXLD7RZP.mjs";
4
+ } from "./chunk-A5KZIZ5X.mjs";
5
5
  import "./chunk-5TB4HFDP.mjs";
6
- import "./chunk-U3B42XMQ.mjs";
6
+ import "./chunk-FAGVC7AV.mjs";
7
7
  import "./chunk-3SMBRI6D.mjs";
8
8
  export {
9
9
  initGeneratorFn
package/dist/index.js CHANGED
@@ -8,24 +8,24 @@
8
8
 
9
9
  var _chunk7I63VQP3js = require('./chunk-7I63VQP3.js');
10
10
  require('./chunk-XO62WWX4.js');
11
- require('./chunk-BXDZGKD6.js');
12
- require('./chunk-OMJ3WEWY.js');
13
- require('./chunk-EAQ4WHGQ.js');
14
- require('./chunk-RJRLR7G5.js');
11
+ require('./chunk-4QM5FINS.js');
12
+ require('./chunk-EIWGXM4D.js');
13
+ require('./chunk-EUUQG25J.js');
14
+ require('./chunk-2HKBOR4J.js');
15
15
  require('./chunk-N2YKXZ5R.js');
16
16
 
17
17
 
18
- var _chunkGWBXFOOFjs = require('./chunk-GWBXFOOF.js');
18
+ var _chunkMLLIVG2Qjs = require('./chunk-MLLIVG2Q.js');
19
19
  require('./chunk-GUQOEBFW.js');
20
20
 
21
21
 
22
22
 
23
23
  var _chunkQDPXTR73js = require('./chunk-QDPXTR73.js');
24
- require('./chunk-HQA5IZ6E.js');
24
+ require('./chunk-5NOYW65J.js');
25
25
 
26
26
 
27
- var _chunk7LDPSZWWjs = require('./chunk-7LDPSZWW.js');
28
- require('./chunk-GEQWWV7F.js');
27
+ var _chunkOGP2C6GEjs = require('./chunk-OGP2C6GE.js');
28
+ require('./chunk-FX3RERI6.js');
29
29
 
30
30
 
31
31
 
@@ -37,4 +37,4 @@ require('./chunk-GEQWWV7F.js');
37
37
 
38
38
 
39
39
 
40
- exports.Provider = _chunkQDPXTR73js.Provider; exports.ec2Instance = _chunk7I63VQP3js.ec2Instance; exports.getAWSTemplateName = _chunk7I63VQP3js.getAWSTemplateName; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.getProviderOpts = _chunk7I63VQP3js.getProviderOpts; exports.initGeneratorFn = _chunkGWBXFOOFjs.initGeneratorFn; exports.securityGroup = _chunk7I63VQP3js.securityGroup; exports.subnet = _chunk7I63VQP3js.subnet; exports.vpc = _chunk7I63VQP3js.vpc; exports.withPulumiExecutor = _chunk7LDPSZWWjs.withPulumiExecutor;
40
+ exports.Provider = _chunkQDPXTR73js.Provider; exports.ec2Instance = _chunk7I63VQP3js.ec2Instance; exports.getAWSTemplateName = _chunk7I63VQP3js.getAWSTemplateName; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.getProviderOpts = _chunk7I63VQP3js.getProviderOpts; exports.initGeneratorFn = _chunkMLLIVG2Qjs.initGeneratorFn; exports.securityGroup = _chunk7I63VQP3js.securityGroup; exports.subnet = _chunk7I63VQP3js.subnet; exports.vpc = _chunk7I63VQP3js.vpc; exports.withPulumiExecutor = _chunkOGP2C6GEjs.withPulumiExecutor;
package/dist/index.mjs CHANGED
@@ -8,24 +8,24 @@ import {
8
8
  vpc
9
9
  } from "./chunk-S6XCS2TA.mjs";
10
10
  import "./chunk-UV4HQO3Y.mjs";
11
- import "./chunk-QNYVR4QB.mjs";
12
- import "./chunk-RXARRFHK.mjs";
13
- import "./chunk-2WYC5MT7.mjs";
14
- import "./chunk-AMJVTY2B.mjs";
11
+ import "./chunk-JMNGRLT7.mjs";
12
+ import "./chunk-4UTXCDZ3.mjs";
13
+ import "./chunk-ENZ7QPM7.mjs";
14
+ import "./chunk-A7RYADJI.mjs";
15
15
  import "./chunk-23KFTIT2.mjs";
16
16
  import {
17
17
  initGeneratorFn
18
- } from "./chunk-AXLD7RZP.mjs";
18
+ } from "./chunk-A5KZIZ5X.mjs";
19
19
  import "./chunk-CA7S5MOH.mjs";
20
20
  import {
21
21
  Provider,
22
22
  getCloudTemplateName
23
23
  } from "./chunk-5TB4HFDP.mjs";
24
- import "./chunk-QPWLHW4L.mjs";
24
+ import "./chunk-FQ6JIGRX.mjs";
25
25
  import {
26
26
  withPulumiExecutor
27
- } from "./chunk-2SD5L6FG.mjs";
28
- import "./chunk-U3B42XMQ.mjs";
27
+ } from "./chunk-2H4D45US.mjs";
28
+ import "./chunk-FAGVC7AV.mjs";
29
29
  import "./chunk-3SMBRI6D.mjs";
30
30
  export {
31
31
  Provider,
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk7LDPSZWWjs = require('../../chunk-7LDPSZWW.js');
4
- require('../../chunk-GEQWWV7F.js');
3
+ var _chunkOGP2C6GEjs = require('../../chunk-OGP2C6GE.js');
4
+ require('../../chunk-FX3RERI6.js');
5
5
 
6
6
 
7
- exports.withPulumiExecutor = _chunk7LDPSZWWjs.withPulumiExecutor;
7
+ exports.withPulumiExecutor = _chunkOGP2C6GEjs.withPulumiExecutor;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  withPulumiExecutor
3
- } from "../../chunk-2SD5L6FG.mjs";
4
- import "../../chunk-U3B42XMQ.mjs";
3
+ } from "../../chunk-2H4D45US.mjs";
4
+ import "../../chunk-FAGVC7AV.mjs";
5
5
  import "../../chunk-3SMBRI6D.mjs";
6
6
  export {
7
7
  withPulumiExecutor
@@ -5,10 +5,10 @@
5
5
  var _chunkQDPXTR73js = require('../../chunk-QDPXTR73.js');
6
6
 
7
7
 
8
- var _chunk7LDPSZWWjs = require('../../chunk-7LDPSZWW.js');
9
- require('../../chunk-GEQWWV7F.js');
8
+ var _chunkOGP2C6GEjs = require('../../chunk-OGP2C6GE.js');
9
+ require('../../chunk-FX3RERI6.js');
10
10
 
11
11
 
12
12
 
13
13
 
14
- exports.Provider = _chunkQDPXTR73js.Provider; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.withPulumiExecutor = _chunk7LDPSZWWjs.withPulumiExecutor;
14
+ exports.Provider = _chunkQDPXTR73js.Provider; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.withPulumiExecutor = _chunkOGP2C6GEjs.withPulumiExecutor;
@@ -5,8 +5,8 @@ import {
5
5
  } from "../../chunk-5TB4HFDP.mjs";
6
6
  import {
7
7
  withPulumiExecutor
8
- } from "../../chunk-2SD5L6FG.mjs";
9
- import "../../chunk-U3B42XMQ.mjs";
8
+ } from "../../chunk-2H4D45US.mjs";
9
+ import "../../chunk-FAGVC7AV.mjs";
10
10
  import "../../chunk-3SMBRI6D.mjs";
11
11
  export {
12
12
  Provider,
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkHQA5IZ6Ejs = require('../../../chunk-HQA5IZ6E.js');
4
- require('../../../chunk-7LDPSZWW.js');
5
- require('../../../chunk-GEQWWV7F.js');
3
+ var _chunk5NOYW65Jjs = require('../../../chunk-5NOYW65J.js');
4
+ require('../../../chunk-OGP2C6GE.js');
5
+ require('../../../chunk-FX3RERI6.js');
6
6
 
7
7
 
8
- exports.default = _chunkHQA5IZ6Ejs.executor_default;
8
+ exports.default = _chunk5NOYW65Jjs.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-QPWLHW4L.mjs";
4
- import "../../../chunk-2SD5L6FG.mjs";
5
- import "../../../chunk-U3B42XMQ.mjs";
3
+ } from "../../../chunk-FQ6JIGRX.mjs";
4
+ import "../../../chunk-2H4D45US.mjs";
5
+ import "../../../chunk-FAGVC7AV.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 _chunkBXDZGKD6js = require('../../../chunk-BXDZGKD6.js');
4
- require('../../../chunk-7LDPSZWW.js');
5
- require('../../../chunk-GEQWWV7F.js');
3
+ var _chunk4QM5FINSjs = require('../../../chunk-4QM5FINS.js');
4
+ require('../../../chunk-OGP2C6GE.js');
5
+ require('../../../chunk-FX3RERI6.js');
6
6
 
7
7
 
8
- exports.default = _chunkBXDZGKD6js.executor_default;
8
+ exports.default = _chunk4QM5FINSjs.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-QNYVR4QB.mjs";
4
- import "../../../chunk-2SD5L6FG.mjs";
5
- import "../../../chunk-U3B42XMQ.mjs";
3
+ } from "../../../chunk-JMNGRLT7.mjs";
4
+ import "../../../chunk-2H4D45US.mjs";
5
+ import "../../../chunk-FAGVC7AV.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 _chunkOMJ3WEWYjs = require('../../../chunk-OMJ3WEWY.js');
4
- require('../../../chunk-7LDPSZWW.js');
5
- require('../../../chunk-GEQWWV7F.js');
3
+ var _chunkEIWGXM4Djs = require('../../../chunk-EIWGXM4D.js');
4
+ require('../../../chunk-OGP2C6GE.js');
5
+ require('../../../chunk-FX3RERI6.js');
6
6
 
7
7
 
8
- exports.default = _chunkOMJ3WEWYjs.executor_default;
8
+ exports.default = _chunkEIWGXM4Djs.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-RXARRFHK.mjs";
4
- import "../../../chunk-2SD5L6FG.mjs";
5
- import "../../../chunk-U3B42XMQ.mjs";
3
+ } from "../../../chunk-4UTXCDZ3.mjs";
4
+ import "../../../chunk-2H4D45US.mjs";
5
+ import "../../../chunk-FAGVC7AV.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 _chunkEAQ4WHGQjs = require('../../../chunk-EAQ4WHGQ.js');
4
- require('../../../chunk-7LDPSZWW.js');
5
- require('../../../chunk-GEQWWV7F.js');
3
+ var _chunkEUUQG25Jjs = require('../../../chunk-EUUQG25J.js');
4
+ require('../../../chunk-OGP2C6GE.js');
5
+ require('../../../chunk-FX3RERI6.js');
6
6
 
7
7
 
8
- exports.default = _chunkEAQ4WHGQjs.executor_default;
8
+ exports.default = _chunkEUUQG25Jjs.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-2WYC5MT7.mjs";
4
- import "../../../chunk-2SD5L6FG.mjs";
5
- import "../../../chunk-U3B42XMQ.mjs";
3
+ } from "../../../chunk-ENZ7QPM7.mjs";
4
+ import "../../../chunk-2H4D45US.mjs";
5
+ import "../../../chunk-FAGVC7AV.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 _chunkRJRLR7G5js = require('../../../chunk-RJRLR7G5.js');
4
- require('../../../chunk-7LDPSZWW.js');
5
- require('../../../chunk-GEQWWV7F.js');
3
+ var _chunk2HKBOR4Jjs = require('../../../chunk-2HKBOR4J.js');
4
+ require('../../../chunk-OGP2C6GE.js');
5
+ require('../../../chunk-FX3RERI6.js');
6
6
 
7
7
 
8
- exports.default = _chunkRJRLR7G5js.executor_default;
8
+ exports.default = _chunk2HKBOR4Jjs.executor_default;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-AMJVTY2B.mjs";
4
- import "../../../chunk-2SD5L6FG.mjs";
5
- import "../../../chunk-U3B42XMQ.mjs";
3
+ } from "../../../chunk-A7RYADJI.mjs";
4
+ import "../../../chunk-2H4D45US.mjs";
5
+ import "../../../chunk-FAGVC7AV.mjs";
6
6
  import "../../../chunk-3SMBRI6D.mjs";
7
7
  export {
8
8
  executor_default as default
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkGWBXFOOFjs = require('../../../chunk-GWBXFOOF.js');
4
+ var _chunkMLLIVG2Qjs = require('../../../chunk-MLLIVG2Q.js');
5
5
  require('../../../chunk-QDPXTR73.js');
6
- require('../../../chunk-GEQWWV7F.js');
6
+ require('../../../chunk-FX3RERI6.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkGWBXFOOFjs.generator_default; exports.initGeneratorFn = _chunkGWBXFOOFjs.initGeneratorFn;
10
+ exports.default = _chunkMLLIVG2Qjs.generator_default; exports.initGeneratorFn = _chunkMLLIVG2Qjs.initGeneratorFn;
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-AXLD7RZP.mjs";
4
+ } from "../../../chunk-A5KZIZ5X.mjs";
5
5
  import "../../../chunk-5TB4HFDP.mjs";
6
- import "../../../chunk-U3B42XMQ.mjs";
6
+ import "../../../chunk-FAGVC7AV.mjs";
7
7
  import "../../../chunk-3SMBRI6D.mjs";
8
8
  export {
9
9
  generator_default as default,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/pulumi-tools",
3
- "version": "0.22.77",
3
+ "version": "0.22.79",
4
4
  "type": "commonjs",
5
5
  "description": "Tools for managing Pulumi infrastructure within a Nx workspace.",
6
6
  "repository": {
@@ -156,8 +156,8 @@
156
156
  "@pulumi/aws": "^6.83.2",
157
157
  "@pulumi/awsx": "^2.22.0",
158
158
  "@pulumi/pulumi": "^3.213.0",
159
- "@storm-software/config": "^1.134.75",
160
- "@storm-software/config-tools": "^1.188.75",
159
+ "@storm-software/config": "^1.135.0",
160
+ "@storm-software/config-tools": "^1.188.77",
161
161
  "defu": "6.1.4",
162
162
  "shelljs": "^0.8.5"
163
163
  },
@@ -171,5 +171,5 @@
171
171
  "publishConfig": { "access": "public" },
172
172
  "executors": "./executors.json",
173
173
  "generators": "./generators.json",
174
- "gitHead": "99ed954da76fded1e0554ae38f1a93f7601e3c24"
174
+ "gitHead": "d07f74f1d50951459260d2738dea47586e194f7f"
175
175
  }