@storm-software/pulumi-tools 0.22.195 → 0.22.196

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 (45) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/{chunk-FN2GNSI5.mjs → chunk-25XRJLAM.mjs} +9 -7
  3. package/dist/{chunk-HHLKSTEH.mjs → chunk-46AVC4U5.mjs} +1 -1
  4. package/dist/{chunk-NBNIOZ2R.mjs → chunk-ADVXTBON.mjs} +1 -1
  5. package/dist/{chunk-2RX453EO.mjs → chunk-AVVAT457.mjs} +1 -1
  6. package/dist/{chunk-63QCHNBN.mjs → chunk-C3NYIWL4.mjs} +1 -1
  7. package/dist/{chunk-ENNUC4IL.js → chunk-DPHD4SEQ.js} +3 -3
  8. package/dist/{chunk-KPLO66UD.mjs → chunk-G5U3IOS7.mjs} +1 -1
  9. package/dist/{chunk-RUD6S2ZU.js → chunk-HWSOJCSY.js} +5 -5
  10. package/dist/{chunk-SC26TQXD.js → chunk-I2SKKT6B.js} +2 -2
  11. package/dist/{chunk-OJZLKJ7H.js → chunk-I2XARX56.js} +8 -6
  12. package/dist/{chunk-24QSB6EU.js → chunk-IFKE4EMV.js} +2 -2
  13. package/dist/{chunk-CVHSCBXJ.js → chunk-LH5V5CLP.js} +2 -2
  14. package/dist/{chunk-EES5FFFT.js → chunk-LRDB6VQL.js} +2 -2
  15. package/dist/{chunk-R7XLNWHT.mjs → chunk-LZSHCUCG.mjs} +1 -1
  16. package/dist/{chunk-HYRRTGZW.mjs → chunk-NTSJF3IX.mjs} +1 -1
  17. package/dist/{chunk-2HQGAPGL.js → chunk-URBDTIBH.js} +2 -2
  18. package/dist/{chunk-LN4WFIHP.mjs → chunk-XJT3ENW6.mjs} +1 -1
  19. package/dist/executors.js +7 -7
  20. package/dist/executors.mjs +8 -8
  21. package/dist/generators.js +3 -3
  22. package/dist/generators.mjs +3 -3
  23. package/dist/index.js +9 -9
  24. package/dist/index.mjs +9 -9
  25. package/dist/src/base/base-executor.js +3 -3
  26. package/dist/src/base/base-executor.mjs +3 -3
  27. package/dist/src/base/index.js +3 -3
  28. package/dist/src/base/index.mjs +3 -3
  29. package/dist/src/base/providers.mjs +1 -1
  30. package/dist/src/executors/config/executor.js +4 -4
  31. package/dist/src/executors/config/executor.mjs +4 -4
  32. package/dist/src/executors/import/executor.js +4 -4
  33. package/dist/src/executors/import/executor.mjs +4 -4
  34. package/dist/src/executors/preview/executor.js +4 -4
  35. package/dist/src/executors/preview/executor.mjs +4 -4
  36. package/dist/src/executors/refresh/executor.js +4 -4
  37. package/dist/src/executors/refresh/executor.mjs +4 -4
  38. package/dist/src/executors/up/executor.js +4 -4
  39. package/dist/src/executors/up/executor.mjs +4 -4
  40. package/dist/src/generators/init/generator.js +3 -3
  41. package/dist/src/generators/init/generator.mjs +3 -3
  42. package/dist/src/lib/aws/index.mjs +1 -1
  43. package/dist/src/lib/aws/providers.mjs +1 -1
  44. package/dist/tsup.config.mjs +1 -1
  45. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  # Changelog for Storm Ops - Pulumi Tools
4
4
 
5
+ ## [0.22.195](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.22.195) (05/16/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **workspace-tools** to **v1.295.80**
10
+ - Updated **config-tools** to **v1.190.20**
11
+ - Updated **config** to **v1.137.52**
12
+
5
13
  ## [0.22.194](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.22.194) (05/16/2026)
6
14
 
7
15
  ### Updated Dependencies
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  __dirname
3
- } from "./chunk-63QCHNBN.mjs";
3
+ } from "./chunk-C3NYIWL4.mjs";
4
4
 
5
5
  // ../config-tools/src/utilities/run.ts
6
6
  import { exec, execSync } from "node:child_process";
@@ -381,7 +381,9 @@ var formatLogMessage = (message, options = {}, depth2 = 0) => {
381
381
  const skip = options.skip ?? [];
382
382
  const sort = options.sort ?? true;
383
383
  return typeof message === "undefined" || message === null ? "<empty>" : typeof message === "string" ? !message ? "<empty string>" : message : Array.isArray(message) ? `
384
- ${message.map(
384
+ ${message.sort(
385
+ sort ? (a, b) => !a && !b ? 0 : !a ? 1 : !b ? -1 : String(a).localeCompare(String(b)) : void 0
386
+ ).map(
385
387
  (item, index) => ` ${prefix}> #${index} = ${formatLogMessage(
386
388
  item,
387
389
  { prefix: `${prefix}--`, skip, sort },
@@ -389,12 +391,12 @@ ${message.map(
389
391
  )}`
390
392
  ).join("\n")}` : typeof message === "object" ? `
391
393
  ${Object.keys(message).filter(
392
- (key) => !skip.map((k) => k.toLowerCase()).includes(typeof key === "string" ? key.toLowerCase() : key)
393
- ).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
394
+ (key) => typeof key !== "string" || !skip.map((k) => k.toLowerCase().trim()).includes(key.toLowerCase().trim())
395
+ ).sort(
396
+ sort ? (a, b) => !a && !b ? 0 : !a ? 1 : !b ? -1 : String(a).localeCompare(String(b)) : void 0
397
+ ).map(
394
398
  (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
395
- (key2) => !skip.map((k) => k.toLowerCase()).includes(
396
- typeof key2 === "string" ? key2.toLowerCase() : key2
397
- )
399
+ (key2) => typeof key2 !== "string" || !skip.map((k) => k.toLowerCase().trim()).includes(key2.toLowerCase().trim())
398
400
  ).length === 0 ? "{}" : formatLogMessage(
399
401
  message[key],
400
402
  { prefix: `${prefix}--`, skip, sort },
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withPulumiExecutor
3
- } from "./chunk-NBNIOZ2R.mjs";
3
+ } from "./chunk-ADVXTBON.mjs";
4
4
 
5
5
  // src/executors/import/executor.ts
6
6
  var executor_default = withPulumiExecutor("import", (options) => [
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  run,
3
3
  withRunExecutor
4
- } from "./chunk-FN2GNSI5.mjs";
4
+ } from "./chunk-25XRJLAM.mjs";
5
5
 
6
6
  // src/base/base-executor.ts
7
7
  import { join } from "node:path";
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withPulumiExecutor
3
- } from "./chunk-NBNIOZ2R.mjs";
3
+ } from "./chunk-ADVXTBON.mjs";
4
4
 
5
5
  // src/executors/up/executor.ts
6
6
  var executor_default = withPulumiExecutor("up", (options) => [
@@ -1,4 +1,4 @@
1
- // ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=751a554d775c3572381af4e7e5fa22eeda6dd6856012fb1cf521d6806eb2dc74__17f35255c9b2c5d65e514e3b165d24e6/node_modules/tsup/assets/esm_shims.js
1
+ // ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=751a554d775c3572381af4e7e5fa22eeda6dd6856012fb1cf521d6806eb2dc74__b287391bfb89dd26f0e4843187079e1f/node_modules/tsup/assets/esm_shims.js
2
2
  import { fileURLToPath } from "url";
3
3
  import path from "path";
4
4
  var getFilename = () => fileURLToPath(import.meta.url);
@@ -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 _chunkOJZLKJ7Hjs = require('./chunk-OJZLKJ7H.js');
4
+ var _chunkI2XARX56js = require('./chunk-I2XARX56.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 _chunkOJZLKJ7Hjs.withRunExecutor.call(void 0,
10
+ return _chunkI2XARX56js.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
- _chunkOJZLKJ7Hjs.run.call(void 0,
24
+ _chunkI2XARX56js.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),
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withPulumiExecutor
3
- } from "./chunk-NBNIOZ2R.mjs";
3
+ } from "./chunk-ADVXTBON.mjs";
4
4
 
5
5
  // src/executors/refresh/executor.ts
6
6
  var executor_default = withPulumiExecutor("refresh", (options) => [
@@ -5,7 +5,7 @@ var _chunkQDPXTR73js = require('./chunk-QDPXTR73.js');
5
5
 
6
6
 
7
7
 
8
- var _chunkOJZLKJ7Hjs = require('./chunk-OJZLKJ7H.js');
8
+ var _chunkI2XARX56js = require('./chunk-I2XARX56.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 = _chunkOJZLKJ7Hjs.initGenerator.call(void 0, tree, options);
21
+ const task = _chunkI2XARX56js.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 = _chunkOJZLKJ7Hjs.withRunGenerator.call(void 0,
57
+ var generator_default = _chunkI2XARX56js.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
- _chunkOJZLKJ7Hjs.run.call(void 0,
64
+ _chunkI2XARX56js.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
- _chunkOJZLKJ7Hjs.run.call(void 0,
88
+ _chunkI2XARX56js.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,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkENNUC4ILjs = require('./chunk-ENNUC4IL.js');
3
+ var _chunkDPHD4SEQjs = require('./chunk-DPHD4SEQ.js');
4
4
 
5
5
  // src/executors/preview/executor.ts
6
- var executor_default = _chunkENNUC4ILjs.withPulumiExecutor.call(void 0, "preview", (options) => [
6
+ var executor_default = _chunkDPHD4SEQjs.withPulumiExecutor.call(void 0, "preview", (options) => [
7
7
  options.stack && `--stack=${options.stack}`,
8
8
  options.expectNoChanges && "--expect-no-changes"
9
9
  ]);
@@ -377,7 +377,9 @@ var formatLogMessage = (message, options = {}, depth2 = 0) => {
377
377
  const skip = _nullishCoalesce(options.skip, () => ( []));
378
378
  const sort = _nullishCoalesce(options.sort, () => ( true));
379
379
  return typeof message === "undefined" || message === null ? "<empty>" : typeof message === "string" ? !message ? "<empty string>" : message : Array.isArray(message) ? `
380
- ${message.map(
380
+ ${message.sort(
381
+ sort ? (a, b) => !a && !b ? 0 : !a ? 1 : !b ? -1 : String(a).localeCompare(String(b)) : void 0
382
+ ).map(
381
383
  (item, index) => ` ${prefix}> #${index} = ${formatLogMessage(
382
384
  item,
383
385
  { prefix: `${prefix}--`, skip, sort },
@@ -385,12 +387,12 @@ ${message.map(
385
387
  )}`
386
388
  ).join("\n")}` : typeof message === "object" ? `
387
389
  ${Object.keys(message).filter(
388
- (key) => !skip.map((k) => k.toLowerCase()).includes(typeof key === "string" ? key.toLowerCase() : key)
389
- ).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
390
+ (key) => typeof key !== "string" || !skip.map((k) => k.toLowerCase().trim()).includes(key.toLowerCase().trim())
391
+ ).sort(
392
+ sort ? (a, b) => !a && !b ? 0 : !a ? 1 : !b ? -1 : String(a).localeCompare(String(b)) : void 0
393
+ ).map(
390
394
  (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
391
- (key2) => !skip.map((k) => k.toLowerCase()).includes(
392
- typeof key2 === "string" ? key2.toLowerCase() : key2
393
- )
395
+ (key2) => typeof key2 !== "string" || !skip.map((k) => k.toLowerCase().trim()).includes(key2.toLowerCase().trim())
394
396
  ).length === 0 ? "{}" : formatLogMessage(
395
397
  message[key],
396
398
  { prefix: `${prefix}--`, skip, sort },
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkENNUC4ILjs = require('./chunk-ENNUC4IL.js');
3
+ var _chunkDPHD4SEQjs = require('./chunk-DPHD4SEQ.js');
4
4
 
5
5
  // src/executors/config/executor.ts
6
- var executor_default = _chunkENNUC4ILjs.withPulumiExecutor.call(void 0, "config", (options) => [
6
+ var executor_default = _chunkDPHD4SEQjs.withPulumiExecutor.call(void 0, "config", (options) => [
7
7
  options.action,
8
8
  options.showSecrets && `--show-secrets`,
9
9
  options.secret && `--secret`,
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkENNUC4ILjs = require('./chunk-ENNUC4IL.js');
3
+ var _chunkDPHD4SEQjs = require('./chunk-DPHD4SEQ.js');
4
4
 
5
5
  // src/executors/import/executor.ts
6
- var executor_default = _chunkENNUC4ILjs.withPulumiExecutor.call(void 0, "import", (options) => [
6
+ var executor_default = _chunkDPHD4SEQjs.withPulumiExecutor.call(void 0, "import", (options) => [
7
7
  options.target,
8
8
  options.name,
9
9
  options.id,
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkENNUC4ILjs = require('./chunk-ENNUC4IL.js');
3
+ var _chunkDPHD4SEQjs = require('./chunk-DPHD4SEQ.js');
4
4
 
5
5
  // src/executors/up/executor.ts
6
- var executor_default = _chunkENNUC4ILjs.withPulumiExecutor.call(void 0, "up", (options) => [
6
+ var executor_default = _chunkDPHD4SEQjs.withPulumiExecutor.call(void 0, "up", (options) => [
7
7
  "--suppress-progress",
8
8
  options.stack && `--stack=${options.stack}`,
9
9
  options.skipPreview && "--skip-preview",
@@ -5,7 +5,7 @@ import {
5
5
  initGenerator,
6
6
  run,
7
7
  withRunGenerator
8
- } from "./chunk-FN2GNSI5.mjs";
8
+ } from "./chunk-25XRJLAM.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-NBNIOZ2R.mjs";
3
+ } from "./chunk-ADVXTBON.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 _chunkENNUC4ILjs = require('./chunk-ENNUC4IL.js');
3
+ var _chunkDPHD4SEQjs = require('./chunk-DPHD4SEQ.js');
4
4
 
5
5
  // src/executors/refresh/executor.ts
6
- var executor_default = _chunkENNUC4ILjs.withPulumiExecutor.call(void 0, "refresh", (options) => [
6
+ var executor_default = _chunkDPHD4SEQjs.withPulumiExecutor.call(void 0, "refresh", (options) => [
7
7
  "--suppress-progress",
8
8
  options.stack && `--stack=${options.stack}`,
9
9
  options.skipPreview && "--skip-preview",
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  withPulumiExecutor
3
- } from "./chunk-NBNIOZ2R.mjs";
3
+ } from "./chunk-ADVXTBON.mjs";
4
4
 
5
5
  // src/executors/config/executor.ts
6
6
  var executor_default = withPulumiExecutor("config", (options) => [
package/dist/executors.js CHANGED
@@ -1,8 +1,8 @@
1
1
  "use strict";require('./chunk-XO62WWX4.js');
2
- require('./chunk-CVHSCBXJ.js');
3
- require('./chunk-SC26TQXD.js');
4
- require('./chunk-2HQGAPGL.js');
5
- require('./chunk-EES5FFFT.js');
6
- require('./chunk-24QSB6EU.js');
7
- require('./chunk-ENNUC4IL.js');
8
- require('./chunk-OJZLKJ7H.js');
2
+ require('./chunk-LH5V5CLP.js');
3
+ require('./chunk-I2SKKT6B.js');
4
+ require('./chunk-URBDTIBH.js');
5
+ require('./chunk-LRDB6VQL.js');
6
+ require('./chunk-IFKE4EMV.js');
7
+ require('./chunk-DPHD4SEQ.js');
8
+ require('./chunk-I2XARX56.js');
@@ -1,9 +1,9 @@
1
1
  import "./chunk-UV4HQO3Y.mjs";
2
- import "./chunk-HHLKSTEH.mjs";
3
- import "./chunk-HYRRTGZW.mjs";
4
- import "./chunk-KPLO66UD.mjs";
5
- import "./chunk-2RX453EO.mjs";
6
- import "./chunk-LN4WFIHP.mjs";
7
- import "./chunk-NBNIOZ2R.mjs";
8
- import "./chunk-FN2GNSI5.mjs";
9
- import "./chunk-63QCHNBN.mjs";
2
+ import "./chunk-46AVC4U5.mjs";
3
+ import "./chunk-NTSJF3IX.mjs";
4
+ import "./chunk-G5U3IOS7.mjs";
5
+ import "./chunk-AVVAT457.mjs";
6
+ import "./chunk-XJT3ENW6.mjs";
7
+ import "./chunk-ADVXTBON.mjs";
8
+ import "./chunk-25XRJLAM.mjs";
9
+ import "./chunk-C3NYIWL4.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 _chunkRUD6S2ZUjs = require('./chunk-RUD6S2ZU.js');
4
+ var _chunkHWSOJCSYjs = require('./chunk-HWSOJCSY.js');
5
5
  require('./chunk-QDPXTR73.js');
6
- require('./chunk-OJZLKJ7H.js');
6
+ require('./chunk-I2XARX56.js');
7
7
 
8
8
 
9
- exports.initGeneratorFn = _chunkRUD6S2ZUjs.initGeneratorFn;
9
+ exports.initGeneratorFn = _chunkHWSOJCSYjs.initGeneratorFn;
@@ -1,10 +1,10 @@
1
1
  import "./chunk-23KFTIT2.mjs";
2
2
  import {
3
3
  initGeneratorFn
4
- } from "./chunk-R7XLNWHT.mjs";
4
+ } from "./chunk-LZSHCUCG.mjs";
5
5
  import "./chunk-5TB4HFDP.mjs";
6
- import "./chunk-FN2GNSI5.mjs";
7
- import "./chunk-63QCHNBN.mjs";
6
+ import "./chunk-25XRJLAM.mjs";
7
+ import "./chunk-C3NYIWL4.mjs";
8
8
  export {
9
9
  initGeneratorFn
10
10
  };
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-CVHSCBXJ.js');
12
- require('./chunk-SC26TQXD.js');
13
- require('./chunk-2HQGAPGL.js');
14
- require('./chunk-EES5FFFT.js');
11
+ require('./chunk-LH5V5CLP.js');
12
+ require('./chunk-I2SKKT6B.js');
13
+ require('./chunk-URBDTIBH.js');
14
+ require('./chunk-LRDB6VQL.js');
15
15
  require('./chunk-N2YKXZ5R.js');
16
16
 
17
17
 
18
- var _chunkRUD6S2ZUjs = require('./chunk-RUD6S2ZU.js');
18
+ var _chunkHWSOJCSYjs = require('./chunk-HWSOJCSY.js');
19
19
  require('./chunk-GUQOEBFW.js');
20
20
 
21
21
 
22
22
 
23
23
  var _chunkQDPXTR73js = require('./chunk-QDPXTR73.js');
24
- require('./chunk-24QSB6EU.js');
24
+ require('./chunk-IFKE4EMV.js');
25
25
 
26
26
 
27
- var _chunkENNUC4ILjs = require('./chunk-ENNUC4IL.js');
28
- require('./chunk-OJZLKJ7H.js');
27
+ var _chunkDPHD4SEQjs = require('./chunk-DPHD4SEQ.js');
28
+ require('./chunk-I2XARX56.js');
29
29
 
30
30
 
31
31
 
@@ -37,4 +37,4 @@ require('./chunk-OJZLKJ7H.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 = _chunkRUD6S2ZUjs.initGeneratorFn; exports.securityGroup = _chunk7I63VQP3js.securityGroup; exports.subnet = _chunk7I63VQP3js.subnet; exports.vpc = _chunk7I63VQP3js.vpc; exports.withPulumiExecutor = _chunkENNUC4ILjs.withPulumiExecutor;
40
+ exports.Provider = _chunkQDPXTR73js.Provider; exports.ec2Instance = _chunk7I63VQP3js.ec2Instance; exports.getAWSTemplateName = _chunk7I63VQP3js.getAWSTemplateName; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.getProviderOpts = _chunk7I63VQP3js.getProviderOpts; exports.initGeneratorFn = _chunkHWSOJCSYjs.initGeneratorFn; exports.securityGroup = _chunk7I63VQP3js.securityGroup; exports.subnet = _chunk7I63VQP3js.subnet; exports.vpc = _chunk7I63VQP3js.vpc; exports.withPulumiExecutor = _chunkDPHD4SEQjs.withPulumiExecutor;
package/dist/index.mjs CHANGED
@@ -8,25 +8,25 @@ import {
8
8
  vpc
9
9
  } from "./chunk-S6XCS2TA.mjs";
10
10
  import "./chunk-UV4HQO3Y.mjs";
11
- import "./chunk-HHLKSTEH.mjs";
12
- import "./chunk-HYRRTGZW.mjs";
13
- import "./chunk-KPLO66UD.mjs";
14
- import "./chunk-2RX453EO.mjs";
11
+ import "./chunk-46AVC4U5.mjs";
12
+ import "./chunk-NTSJF3IX.mjs";
13
+ import "./chunk-G5U3IOS7.mjs";
14
+ import "./chunk-AVVAT457.mjs";
15
15
  import "./chunk-23KFTIT2.mjs";
16
16
  import {
17
17
  initGeneratorFn
18
- } from "./chunk-R7XLNWHT.mjs";
18
+ } from "./chunk-LZSHCUCG.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-LN4WFIHP.mjs";
24
+ import "./chunk-XJT3ENW6.mjs";
25
25
  import {
26
26
  withPulumiExecutor
27
- } from "./chunk-NBNIOZ2R.mjs";
28
- import "./chunk-FN2GNSI5.mjs";
29
- import "./chunk-63QCHNBN.mjs";
27
+ } from "./chunk-ADVXTBON.mjs";
28
+ import "./chunk-25XRJLAM.mjs";
29
+ import "./chunk-C3NYIWL4.mjs";
30
30
  export {
31
31
  Provider,
32
32
  ec2Instance,
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkENNUC4ILjs = require('../../chunk-ENNUC4IL.js');
4
- require('../../chunk-OJZLKJ7H.js');
3
+ var _chunkDPHD4SEQjs = require('../../chunk-DPHD4SEQ.js');
4
+ require('../../chunk-I2XARX56.js');
5
5
 
6
6
 
7
- exports.withPulumiExecutor = _chunkENNUC4ILjs.withPulumiExecutor;
7
+ exports.withPulumiExecutor = _chunkDPHD4SEQjs.withPulumiExecutor;
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  withPulumiExecutor
3
- } from "../../chunk-NBNIOZ2R.mjs";
4
- import "../../chunk-FN2GNSI5.mjs";
5
- import "../../chunk-63QCHNBN.mjs";
3
+ } from "../../chunk-ADVXTBON.mjs";
4
+ import "../../chunk-25XRJLAM.mjs";
5
+ import "../../chunk-C3NYIWL4.mjs";
6
6
  export {
7
7
  withPulumiExecutor
8
8
  };
@@ -5,10 +5,10 @@
5
5
  var _chunkQDPXTR73js = require('../../chunk-QDPXTR73.js');
6
6
 
7
7
 
8
- var _chunkENNUC4ILjs = require('../../chunk-ENNUC4IL.js');
9
- require('../../chunk-OJZLKJ7H.js');
8
+ var _chunkDPHD4SEQjs = require('../../chunk-DPHD4SEQ.js');
9
+ require('../../chunk-I2XARX56.js');
10
10
 
11
11
 
12
12
 
13
13
 
14
- exports.Provider = _chunkQDPXTR73js.Provider; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.withPulumiExecutor = _chunkENNUC4ILjs.withPulumiExecutor;
14
+ exports.Provider = _chunkQDPXTR73js.Provider; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.withPulumiExecutor = _chunkDPHD4SEQjs.withPulumiExecutor;
@@ -5,9 +5,9 @@ import {
5
5
  } from "../../chunk-5TB4HFDP.mjs";
6
6
  import {
7
7
  withPulumiExecutor
8
- } from "../../chunk-NBNIOZ2R.mjs";
9
- import "../../chunk-FN2GNSI5.mjs";
10
- import "../../chunk-63QCHNBN.mjs";
8
+ } from "../../chunk-ADVXTBON.mjs";
9
+ import "../../chunk-25XRJLAM.mjs";
10
+ import "../../chunk-C3NYIWL4.mjs";
11
11
  export {
12
12
  Provider,
13
13
  getCloudTemplateName,
@@ -2,7 +2,7 @@ import {
2
2
  Provider,
3
3
  getCloudTemplateName
4
4
  } from "../../chunk-5TB4HFDP.mjs";
5
- import "../../chunk-63QCHNBN.mjs";
5
+ import "../../chunk-C3NYIWL4.mjs";
6
6
  export {
7
7
  Provider,
8
8
  getCloudTemplateName
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk24QSB6EUjs = require('../../../chunk-24QSB6EU.js');
4
- require('../../../chunk-ENNUC4IL.js');
5
- require('../../../chunk-OJZLKJ7H.js');
3
+ var _chunkIFKE4EMVjs = require('../../../chunk-IFKE4EMV.js');
4
+ require('../../../chunk-DPHD4SEQ.js');
5
+ require('../../../chunk-I2XARX56.js');
6
6
 
7
7
 
8
- exports.default = _chunk24QSB6EUjs.executor_default;
8
+ exports.default = _chunkIFKE4EMVjs.executor_default;
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-LN4WFIHP.mjs";
4
- import "../../../chunk-NBNIOZ2R.mjs";
5
- import "../../../chunk-FN2GNSI5.mjs";
6
- import "../../../chunk-63QCHNBN.mjs";
3
+ } from "../../../chunk-XJT3ENW6.mjs";
4
+ import "../../../chunk-ADVXTBON.mjs";
5
+ import "../../../chunk-25XRJLAM.mjs";
6
+ import "../../../chunk-C3NYIWL4.mjs";
7
7
  export {
8
8
  executor_default as default
9
9
  };
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkCVHSCBXJjs = require('../../../chunk-CVHSCBXJ.js');
4
- require('../../../chunk-ENNUC4IL.js');
5
- require('../../../chunk-OJZLKJ7H.js');
3
+ var _chunkLH5V5CLPjs = require('../../../chunk-LH5V5CLP.js');
4
+ require('../../../chunk-DPHD4SEQ.js');
5
+ require('../../../chunk-I2XARX56.js');
6
6
 
7
7
 
8
- exports.default = _chunkCVHSCBXJjs.executor_default;
8
+ exports.default = _chunkLH5V5CLPjs.executor_default;
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-HHLKSTEH.mjs";
4
- import "../../../chunk-NBNIOZ2R.mjs";
5
- import "../../../chunk-FN2GNSI5.mjs";
6
- import "../../../chunk-63QCHNBN.mjs";
3
+ } from "../../../chunk-46AVC4U5.mjs";
4
+ import "../../../chunk-ADVXTBON.mjs";
5
+ import "../../../chunk-25XRJLAM.mjs";
6
+ import "../../../chunk-C3NYIWL4.mjs";
7
7
  export {
8
8
  executor_default as default
9
9
  };
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkSC26TQXDjs = require('../../../chunk-SC26TQXD.js');
4
- require('../../../chunk-ENNUC4IL.js');
5
- require('../../../chunk-OJZLKJ7H.js');
3
+ var _chunkI2SKKT6Bjs = require('../../../chunk-I2SKKT6B.js');
4
+ require('../../../chunk-DPHD4SEQ.js');
5
+ require('../../../chunk-I2XARX56.js');
6
6
 
7
7
 
8
- exports.default = _chunkSC26TQXDjs.executor_default;
8
+ exports.default = _chunkI2SKKT6Bjs.executor_default;
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-HYRRTGZW.mjs";
4
- import "../../../chunk-NBNIOZ2R.mjs";
5
- import "../../../chunk-FN2GNSI5.mjs";
6
- import "../../../chunk-63QCHNBN.mjs";
3
+ } from "../../../chunk-NTSJF3IX.mjs";
4
+ import "../../../chunk-ADVXTBON.mjs";
5
+ import "../../../chunk-25XRJLAM.mjs";
6
+ import "../../../chunk-C3NYIWL4.mjs";
7
7
  export {
8
8
  executor_default as default
9
9
  };
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk2HQGAPGLjs = require('../../../chunk-2HQGAPGL.js');
4
- require('../../../chunk-ENNUC4IL.js');
5
- require('../../../chunk-OJZLKJ7H.js');
3
+ var _chunkURBDTIBHjs = require('../../../chunk-URBDTIBH.js');
4
+ require('../../../chunk-DPHD4SEQ.js');
5
+ require('../../../chunk-I2XARX56.js');
6
6
 
7
7
 
8
- exports.default = _chunk2HQGAPGLjs.executor_default;
8
+ exports.default = _chunkURBDTIBHjs.executor_default;
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-KPLO66UD.mjs";
4
- import "../../../chunk-NBNIOZ2R.mjs";
5
- import "../../../chunk-FN2GNSI5.mjs";
6
- import "../../../chunk-63QCHNBN.mjs";
3
+ } from "../../../chunk-G5U3IOS7.mjs";
4
+ import "../../../chunk-ADVXTBON.mjs";
5
+ import "../../../chunk-25XRJLAM.mjs";
6
+ import "../../../chunk-C3NYIWL4.mjs";
7
7
  export {
8
8
  executor_default as default
9
9
  };
@@ -1,8 +1,8 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkEES5FFFTjs = require('../../../chunk-EES5FFFT.js');
4
- require('../../../chunk-ENNUC4IL.js');
5
- require('../../../chunk-OJZLKJ7H.js');
3
+ var _chunkLRDB6VQLjs = require('../../../chunk-LRDB6VQL.js');
4
+ require('../../../chunk-DPHD4SEQ.js');
5
+ require('../../../chunk-I2XARX56.js');
6
6
 
7
7
 
8
- exports.default = _chunkEES5FFFTjs.executor_default;
8
+ exports.default = _chunkLRDB6VQLjs.executor_default;
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  executor_default
3
- } from "../../../chunk-2RX453EO.mjs";
4
- import "../../../chunk-NBNIOZ2R.mjs";
5
- import "../../../chunk-FN2GNSI5.mjs";
6
- import "../../../chunk-63QCHNBN.mjs";
3
+ } from "../../../chunk-AVVAT457.mjs";
4
+ import "../../../chunk-ADVXTBON.mjs";
5
+ import "../../../chunk-25XRJLAM.mjs";
6
+ import "../../../chunk-C3NYIWL4.mjs";
7
7
  export {
8
8
  executor_default as default
9
9
  };
@@ -1,10 +1,10 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkRUD6S2ZUjs = require('../../../chunk-RUD6S2ZU.js');
4
+ var _chunkHWSOJCSYjs = require('../../../chunk-HWSOJCSY.js');
5
5
  require('../../../chunk-QDPXTR73.js');
6
- require('../../../chunk-OJZLKJ7H.js');
6
+ require('../../../chunk-I2XARX56.js');
7
7
 
8
8
 
9
9
 
10
- exports.default = _chunkRUD6S2ZUjs.generator_default; exports.initGeneratorFn = _chunkRUD6S2ZUjs.initGeneratorFn;
10
+ exports.default = _chunkHWSOJCSYjs.generator_default; exports.initGeneratorFn = _chunkHWSOJCSYjs.initGeneratorFn;
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  generator_default,
3
3
  initGeneratorFn
4
- } from "../../../chunk-R7XLNWHT.mjs";
4
+ } from "../../../chunk-LZSHCUCG.mjs";
5
5
  import "../../../chunk-5TB4HFDP.mjs";
6
- import "../../../chunk-FN2GNSI5.mjs";
7
- import "../../../chunk-63QCHNBN.mjs";
6
+ import "../../../chunk-25XRJLAM.mjs";
7
+ import "../../../chunk-C3NYIWL4.mjs";
8
8
  export {
9
9
  generator_default as default,
10
10
  initGeneratorFn
@@ -8,7 +8,7 @@ import {
8
8
  vpc
9
9
  } from "../../../chunk-S6XCS2TA.mjs";
10
10
  import "../../../chunk-5TB4HFDP.mjs";
11
- import "../../../chunk-63QCHNBN.mjs";
11
+ import "../../../chunk-C3NYIWL4.mjs";
12
12
  export {
13
13
  ec2Instance,
14
14
  getAWSTemplateName,
@@ -7,7 +7,7 @@ import {
7
7
  vpc
8
8
  } from "../../../chunk-S6XCS2TA.mjs";
9
9
  import "../../../chunk-5TB4HFDP.mjs";
10
- import "../../../chunk-63QCHNBN.mjs";
10
+ import "../../../chunk-C3NYIWL4.mjs";
11
11
  export {
12
12
  ec2Instance,
13
13
  getAWSTemplateName,
@@ -1,4 +1,4 @@
1
- import "./chunk-63QCHNBN.mjs";
1
+ import "./chunk-C3NYIWL4.mjs";
2
2
 
3
3
  // tsup.config.ts
4
4
  import { defineConfig } from "tsup";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/pulumi-tools",
3
- "version": "0.22.195",
3
+ "version": "0.22.196",
4
4
  "description": "Tools for managing Pulumi infrastructure within a Nx workspace.",
5
5
  "keywords": [
6
6
  "iac",
@@ -144,15 +144,15 @@
144
144
  "@nx/devkit": "22.7.1",
145
145
  "@pulumi/aws": "^6.83.3",
146
146
  "@pulumi/awsx": "^2.22.0",
147
- "@pulumi/pulumi": "^3.239.0",
148
- "@storm-software/config": "^1.137.52",
149
- "@storm-software/config-tools": "^1.190.20",
150
- "@storm-software/workspace-tools": "^1.295.80",
147
+ "@pulumi/pulumi": "^3.242.0",
148
+ "@storm-software/config": "1.137.53",
149
+ "@storm-software/config-tools": "1.190.21",
150
+ "@storm-software/workspace-tools": "1.295.81",
151
151
  "defu": "6.1.4",
152
152
  "shelljs": "^0.8.5"
153
153
  },
154
154
  "devDependencies": {
155
- "@types/node": "^25.8.0",
155
+ "@types/node": "^25.9.1",
156
156
  "nx": "22.7.1",
157
157
  "tsup": "8.4.0",
158
158
  "untyped": "^2.0.0"
@@ -160,5 +160,5 @@
160
160
  "publishConfig": { "access": "public" },
161
161
  "executors": "./executors.json",
162
162
  "generators": "./generators.json",
163
- "gitHead": "b1f508805815ee86f76ec6bb122f736ebf447ffc"
163
+ "gitHead": "9659ccd4025df160370c7ddced3599f9d70e7dfa"
164
164
  }