@storm-software/pulumi-tools 0.22.80 → 0.22.82
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 +14 -0
- package/dist/{chunk-C2TW6BYW.js → chunk-3JIHLSK5.js} +41 -11
- package/dist/{chunk-QI5RCA3G.js → chunk-4CE7A26A.js} +2 -2
- package/dist/{chunk-EG6QNALL.js → chunk-7K5XAPCJ.js} +2 -2
- package/dist/{chunk-6JE7KQBD.js → chunk-CUMXSI2M.js} +5 -5
- package/dist/{chunk-UQLROP2M.mjs → chunk-GSHWQR6K.mjs} +1 -1
- package/dist/{chunk-HI2YFYUS.js → chunk-KPWQTDUP.js} +2 -2
- package/dist/{chunk-L3IMERHC.mjs → chunk-LDIYARDU.mjs} +1 -1
- package/dist/{chunk-TBHK2Q6U.mjs → chunk-NTO7Q3J2.mjs} +41 -11
- package/dist/{chunk-5XH4ZLBU.mjs → chunk-PZGFEH6I.mjs} +1 -1
- package/dist/{chunk-UYOVMXAT.mjs → chunk-QVVTDFBA.mjs} +1 -1
- package/dist/{chunk-TIRKUUXU.mjs → chunk-V6WZQ2NQ.mjs} +1 -1
- package/dist/{chunk-4BJADMZ7.js → chunk-W6SC5ZXK.js} +2 -2
- package/dist/{chunk-64FZWCKO.js → chunk-XBXW7A2X.js} +2 -2
- package/dist/{chunk-THZ2VX3B.js → chunk-XFUPJE4H.js} +3 -3
- package/dist/{chunk-TRNKOYCN.mjs → chunk-XZKYO7DL.mjs} +1 -1
- package/dist/{chunk-PLBLBSHK.mjs → chunk-ZIUFHALV.mjs} +1 -1
- package/dist/executors.js +7 -7
- package/dist/executors.mjs +7 -7
- package/dist/generators.js +3 -3
- package/dist/generators.mjs +2 -2
- package/dist/index.js +9 -9
- package/dist/index.mjs +8 -8
- package/dist/src/base/base-executor.js +3 -3
- package/dist/src/base/base-executor.mjs +2 -2
- package/dist/src/base/index.js +3 -3
- package/dist/src/base/index.mjs +2 -2
- package/dist/src/executors/config/executor.js +4 -4
- package/dist/src/executors/config/executor.mjs +3 -3
- package/dist/src/executors/import/executor.js +4 -4
- package/dist/src/executors/import/executor.mjs +3 -3
- package/dist/src/executors/preview/executor.js +4 -4
- package/dist/src/executors/preview/executor.mjs +3 -3
- package/dist/src/executors/refresh/executor.js +4 -4
- package/dist/src/executors/refresh/executor.mjs +3 -3
- package/dist/src/executors/up/executor.js +4 -4
- package/dist/src/executors/up/executor.mjs +3 -3
- package/dist/src/generators/init/generator.js +3 -3
- package/dist/src/generators/init/generator.mjs +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pulumi Tools
|
|
4
4
|
|
|
5
|
+
## [0.22.81](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.22.81) (01/14/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **workspace-tools** to **v1.294.25**
|
|
10
|
+
- Updated **config-tools** to **v1.188.79**
|
|
11
|
+
|
|
12
|
+
## [0.22.80](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.22.80) (01/14/2026)
|
|
13
|
+
|
|
14
|
+
### Updated Dependencies
|
|
15
|
+
|
|
16
|
+
- Updated **workspace-tools** to **v1.294.24**
|
|
17
|
+
- Updated **config-tools** to **v1.188.78**
|
|
18
|
+
|
|
5
19
|
## [0.22.79](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.22.79) (01/14/2026)
|
|
6
20
|
|
|
7
21
|
### Updated Dependencies
|
|
@@ -135,9 +135,9 @@ function isUnicodeSupported() {
|
|
|
135
135
|
var useIcon = (c, fallback) => isUnicodeSupported() ? c : fallback;
|
|
136
136
|
var CONSOLE_ICONS = {
|
|
137
137
|
[LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
|
|
138
|
-
[LogLevelLabel.FATAL]: useIcon("\
|
|
138
|
+
[LogLevelLabel.FATAL]: useIcon("\u{1F571}", "\xD7"),
|
|
139
139
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
140
|
-
[LogLevelLabel.INFO]: useIcon("\
|
|
140
|
+
[LogLevelLabel.INFO]: useIcon("\u2139", "i"),
|
|
141
141
|
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
142
142
|
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
143
143
|
[LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
|
|
@@ -212,7 +212,11 @@ var getLogFn = (logLevel = LogLevel.INFO, config = {}, _chalk = getChalk()) => {
|
|
|
212
212
|
return (message) => {
|
|
213
213
|
console.error(
|
|
214
214
|
`
|
|
215
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
215
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
216
|
+
_nullishCoalesce(colors.fatal, () => ( DEFAULT_COLOR_CONFIG.dark.fatal))
|
|
217
|
+
)(
|
|
218
|
+
`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `
|
|
219
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
216
220
|
`
|
|
217
221
|
);
|
|
218
222
|
};
|
|
@@ -221,7 +225,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.fatal, ()
|
|
|
221
225
|
return (message) => {
|
|
222
226
|
console.error(
|
|
223
227
|
`
|
|
224
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
228
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
229
|
+
_nullishCoalesce(colors.danger, () => ( DEFAULT_COLOR_CONFIG.dark.danger))
|
|
230
|
+
)(
|
|
231
|
+
`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `
|
|
232
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
225
233
|
`
|
|
226
234
|
);
|
|
227
235
|
};
|
|
@@ -230,7 +238,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.danger, (
|
|
|
230
238
|
return (message) => {
|
|
231
239
|
console.warn(
|
|
232
240
|
`
|
|
233
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
241
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
242
|
+
_nullishCoalesce(colors.warning, () => ( DEFAULT_COLOR_CONFIG.dark.warning))
|
|
243
|
+
)(
|
|
244
|
+
`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `
|
|
245
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
234
246
|
`
|
|
235
247
|
);
|
|
236
248
|
};
|
|
@@ -239,7 +251,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.warning,
|
|
|
239
251
|
return (message) => {
|
|
240
252
|
console.info(
|
|
241
253
|
`
|
|
242
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
254
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
255
|
+
_nullishCoalesce(colors.success, () => ( DEFAULT_COLOR_CONFIG.dark.success))
|
|
256
|
+
)(
|
|
257
|
+
`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `
|
|
258
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
243
259
|
`
|
|
244
260
|
);
|
|
245
261
|
};
|
|
@@ -248,7 +264,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.success,
|
|
|
248
264
|
return (message) => {
|
|
249
265
|
console.info(
|
|
250
266
|
`
|
|
251
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
267
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
268
|
+
_nullishCoalesce(colors.info, () => ( DEFAULT_COLOR_CONFIG.dark.info))
|
|
269
|
+
)(
|
|
270
|
+
`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `
|
|
271
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
252
272
|
`
|
|
253
273
|
);
|
|
254
274
|
};
|
|
@@ -257,7 +277,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
|
|
|
257
277
|
return (message) => {
|
|
258
278
|
console.debug(
|
|
259
279
|
`
|
|
260
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
280
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
281
|
+
_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug))
|
|
282
|
+
)(
|
|
283
|
+
`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `
|
|
284
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
261
285
|
`
|
|
262
286
|
);
|
|
263
287
|
};
|
|
@@ -266,7 +290,9 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, ()
|
|
|
266
290
|
return (message) => {
|
|
267
291
|
console.debug(
|
|
268
292
|
`
|
|
269
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(
|
|
293
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(
|
|
294
|
+
`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `
|
|
295
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
270
296
|
`
|
|
271
297
|
);
|
|
272
298
|
};
|
|
@@ -274,7 +300,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogL
|
|
|
274
300
|
return (message) => {
|
|
275
301
|
console.log(
|
|
276
302
|
`
|
|
277
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
303
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
304
|
+
_nullishCoalesce(colors.brand, () => ( DEFAULT_COLOR_CONFIG.dark.brand))
|
|
305
|
+
)(
|
|
306
|
+
`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `
|
|
307
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
278
308
|
`
|
|
279
309
|
);
|
|
280
310
|
};
|
|
@@ -298,7 +328,7 @@ var getStopwatch = (name) => {
|
|
|
298
328
|
);
|
|
299
329
|
};
|
|
300
330
|
};
|
|
301
|
-
var MAX_DEPTH =
|
|
331
|
+
var MAX_DEPTH = 6;
|
|
302
332
|
var formatLogMessage = (message, options = {}, depth2 = 0) => {
|
|
303
333
|
if (depth2 > MAX_DEPTH) {
|
|
304
334
|
return "<max depth>";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkXFUPJE4Hjs = require('./chunk-XFUPJE4H.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/config/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkXFUPJE4Hjs.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
|
|
3
|
+
var _chunkXFUPJE4Hjs = require('./chunk-XFUPJE4H.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/refresh/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkXFUPJE4Hjs.withPulumiExecutor.call(void 0, "refresh", (options) => [
|
|
7
7
|
"--suppress-progress",
|
|
8
8
|
options.stack && `--stack=${options.stack}`,
|
|
9
9
|
options.skipPreview && "--skip-preview",
|
|
@@ -5,7 +5,7 @@ var _chunkQDPXTR73js = require('./chunk-QDPXTR73.js');
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunk3JIHLSK5js = require('./chunk-3JIHLSK5.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 =
|
|
21
|
+
const task = _chunk3JIHLSK5js.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 =
|
|
57
|
+
var generator_default = _chunk3JIHLSK5js.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
|
-
|
|
64
|
+
_chunk3JIHLSK5js.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
|
-
|
|
88
|
+
_chunk3JIHLSK5js.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
|
|
3
|
+
var _chunkXFUPJE4Hjs = require('./chunk-XFUPJE4H.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/preview/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkXFUPJE4Hjs.withPulumiExecutor.call(void 0, "preview", (options) => [
|
|
7
7
|
options.stack && `--stack=${options.stack}`,
|
|
8
8
|
options.expectNoChanges && "--expect-no-changes"
|
|
9
9
|
]);
|
|
@@ -139,9 +139,9 @@ function isUnicodeSupported() {
|
|
|
139
139
|
var useIcon = (c, fallback) => isUnicodeSupported() ? c : fallback;
|
|
140
140
|
var CONSOLE_ICONS = {
|
|
141
141
|
[LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
|
|
142
|
-
[LogLevelLabel.FATAL]: useIcon("\
|
|
142
|
+
[LogLevelLabel.FATAL]: useIcon("\u{1F571}", "\xD7"),
|
|
143
143
|
[LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
|
|
144
|
-
[LogLevelLabel.INFO]: useIcon("\
|
|
144
|
+
[LogLevelLabel.INFO]: useIcon("\u2139", "i"),
|
|
145
145
|
[LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),
|
|
146
146
|
[LogLevelLabel.DEBUG]: useIcon("\u{1F6E0}", "D"),
|
|
147
147
|
[LogLevelLabel.TRACE]: useIcon("\u2699", "T"),
|
|
@@ -216,7 +216,11 @@ var getLogFn = (logLevel = LogLevel.INFO, config = {}, _chalk = getChalk()) => {
|
|
|
216
216
|
return (message) => {
|
|
217
217
|
console.error(
|
|
218
218
|
`
|
|
219
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
219
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
220
|
+
colors.fatal ?? DEFAULT_COLOR_CONFIG.dark.fatal
|
|
221
|
+
)(
|
|
222
|
+
`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `
|
|
223
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
220
224
|
`
|
|
221
225
|
);
|
|
222
226
|
};
|
|
@@ -225,7 +229,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? DEFAULT_COLOR_CON
|
|
|
225
229
|
return (message) => {
|
|
226
230
|
console.error(
|
|
227
231
|
`
|
|
228
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
232
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
233
|
+
colors.danger ?? DEFAULT_COLOR_CONFIG.dark.danger
|
|
234
|
+
)(
|
|
235
|
+
`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `
|
|
236
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
229
237
|
`
|
|
230
238
|
);
|
|
231
239
|
};
|
|
@@ -234,7 +242,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? DEFAULT_COLOR_CO
|
|
|
234
242
|
return (message) => {
|
|
235
243
|
console.warn(
|
|
236
244
|
`
|
|
237
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
245
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
246
|
+
colors.warning ?? DEFAULT_COLOR_CONFIG.dark.warning
|
|
247
|
+
)(
|
|
248
|
+
`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `
|
|
249
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
238
250
|
`
|
|
239
251
|
);
|
|
240
252
|
};
|
|
@@ -243,7 +255,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? DEFAULT_COLOR_C
|
|
|
243
255
|
return (message) => {
|
|
244
256
|
console.info(
|
|
245
257
|
`
|
|
246
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
258
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
259
|
+
colors.success ?? DEFAULT_COLOR_CONFIG.dark.success
|
|
260
|
+
)(
|
|
261
|
+
`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `
|
|
262
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
247
263
|
`
|
|
248
264
|
);
|
|
249
265
|
};
|
|
@@ -252,7 +268,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? DEFAULT_COLOR_C
|
|
|
252
268
|
return (message) => {
|
|
253
269
|
console.info(
|
|
254
270
|
`
|
|
255
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
271
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
272
|
+
colors.info ?? DEFAULT_COLOR_CONFIG.dark.info
|
|
273
|
+
)(
|
|
274
|
+
`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `
|
|
275
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
256
276
|
`
|
|
257
277
|
);
|
|
258
278
|
};
|
|
@@ -261,7 +281,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
|
|
|
261
281
|
return (message) => {
|
|
262
282
|
console.debug(
|
|
263
283
|
`
|
|
264
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
284
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
285
|
+
colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug
|
|
286
|
+
)(
|
|
287
|
+
`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `
|
|
288
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
265
289
|
`
|
|
266
290
|
);
|
|
267
291
|
};
|
|
@@ -270,7 +294,9 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CON
|
|
|
270
294
|
return (message) => {
|
|
271
295
|
console.debug(
|
|
272
296
|
`
|
|
273
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(
|
|
297
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(
|
|
298
|
+
`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `
|
|
299
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
274
300
|
`
|
|
275
301
|
);
|
|
276
302
|
};
|
|
@@ -278,7 +304,11 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogL
|
|
|
278
304
|
return (message) => {
|
|
279
305
|
console.log(
|
|
280
306
|
`
|
|
281
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
307
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(
|
|
308
|
+
colors.brand ?? DEFAULT_COLOR_CONFIG.dark.brand
|
|
309
|
+
)(
|
|
310
|
+
`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `
|
|
311
|
+
)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
282
312
|
`
|
|
283
313
|
);
|
|
284
314
|
};
|
|
@@ -302,7 +332,7 @@ var getStopwatch = (name) => {
|
|
|
302
332
|
);
|
|
303
333
|
};
|
|
304
334
|
};
|
|
305
|
-
var MAX_DEPTH =
|
|
335
|
+
var MAX_DEPTH = 6;
|
|
306
336
|
var formatLogMessage = (message, options = {}, depth2 = 0) => {
|
|
307
337
|
if (depth2 > MAX_DEPTH) {
|
|
308
338
|
return "<max depth>";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkXFUPJE4Hjs = require('./chunk-XFUPJE4H.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/up/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkXFUPJE4Hjs.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
|
|
3
|
+
var _chunkXFUPJE4Hjs = require('./chunk-XFUPJE4H.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/import/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkXFUPJE4Hjs.withPulumiExecutor.call(void 0, "import", (options) => [
|
|
7
7
|
options.target,
|
|
8
8
|
options.name,
|
|
9
9
|
options.id,
|
|
@@ -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
|
|
4
|
+
var _chunk3JIHLSK5js = require('./chunk-3JIHLSK5.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
|
|
10
|
+
return _chunk3JIHLSK5js.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
|
-
|
|
24
|
+
_chunk3JIHLSK5js.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-
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
8
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-XBXW7A2X.js');
|
|
3
|
+
require('./chunk-KPWQTDUP.js');
|
|
4
|
+
require('./chunk-7K5XAPCJ.js');
|
|
5
|
+
require('./chunk-W6SC5ZXK.js');
|
|
6
|
+
require('./chunk-4CE7A26A.js');
|
|
7
|
+
require('./chunk-XFUPJE4H.js');
|
|
8
|
+
require('./chunk-3JIHLSK5.js');
|
package/dist/executors.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import "./chunk-UV4HQO3Y.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-QVVTDFBA.mjs";
|
|
3
|
+
import "./chunk-GSHWQR6K.mjs";
|
|
4
|
+
import "./chunk-V6WZQ2NQ.mjs";
|
|
5
|
+
import "./chunk-ZIUFHALV.mjs";
|
|
6
|
+
import "./chunk-PZGFEH6I.mjs";
|
|
7
|
+
import "./chunk-LDIYARDU.mjs";
|
|
8
|
+
import "./chunk-NTO7Q3J2.mjs";
|
|
9
9
|
import "./chunk-3SMBRI6D.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkCUMXSI2Mjs = require('./chunk-CUMXSI2M.js');
|
|
5
5
|
require('./chunk-QDPXTR73.js');
|
|
6
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-3JIHLSK5.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkCUMXSI2Mjs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import "./chunk-23KFTIT2.mjs";
|
|
2
2
|
import {
|
|
3
3
|
initGeneratorFn
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-XZKYO7DL.mjs";
|
|
5
5
|
import "./chunk-5TB4HFDP.mjs";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-NTO7Q3J2.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-
|
|
12
|
-
require('./chunk-
|
|
13
|
-
require('./chunk-
|
|
14
|
-
require('./chunk-
|
|
11
|
+
require('./chunk-XBXW7A2X.js');
|
|
12
|
+
require('./chunk-KPWQTDUP.js');
|
|
13
|
+
require('./chunk-7K5XAPCJ.js');
|
|
14
|
+
require('./chunk-W6SC5ZXK.js');
|
|
15
15
|
require('./chunk-N2YKXZ5R.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkCUMXSI2Mjs = require('./chunk-CUMXSI2M.js');
|
|
19
19
|
require('./chunk-GUQOEBFW.js');
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
var _chunkQDPXTR73js = require('./chunk-QDPXTR73.js');
|
|
24
|
-
require('./chunk-
|
|
24
|
+
require('./chunk-4CE7A26A.js');
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
var
|
|
28
|
-
require('./chunk-
|
|
27
|
+
var _chunkXFUPJE4Hjs = require('./chunk-XFUPJE4H.js');
|
|
28
|
+
require('./chunk-3JIHLSK5.js');
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
|
|
@@ -37,4 +37,4 @@ require('./chunk-C2TW6BYW.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 =
|
|
40
|
+
exports.Provider = _chunkQDPXTR73js.Provider; exports.ec2Instance = _chunk7I63VQP3js.ec2Instance; exports.getAWSTemplateName = _chunk7I63VQP3js.getAWSTemplateName; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.getProviderOpts = _chunk7I63VQP3js.getProviderOpts; exports.initGeneratorFn = _chunkCUMXSI2Mjs.initGeneratorFn; exports.securityGroup = _chunk7I63VQP3js.securityGroup; exports.subnet = _chunk7I63VQP3js.subnet; exports.vpc = _chunk7I63VQP3js.vpc; exports.withPulumiExecutor = _chunkXFUPJE4Hjs.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-
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-QVVTDFBA.mjs";
|
|
12
|
+
import "./chunk-GSHWQR6K.mjs";
|
|
13
|
+
import "./chunk-V6WZQ2NQ.mjs";
|
|
14
|
+
import "./chunk-ZIUFHALV.mjs";
|
|
15
15
|
import "./chunk-23KFTIT2.mjs";
|
|
16
16
|
import {
|
|
17
17
|
initGeneratorFn
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-XZKYO7DL.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-
|
|
24
|
+
import "./chunk-PZGFEH6I.mjs";
|
|
25
25
|
import {
|
|
26
26
|
withPulumiExecutor
|
|
27
|
-
} from "./chunk-
|
|
28
|
-
import "./chunk-
|
|
27
|
+
} from "./chunk-LDIYARDU.mjs";
|
|
28
|
+
import "./chunk-NTO7Q3J2.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
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var _chunkXFUPJE4Hjs = require('../../chunk-XFUPJE4H.js');
|
|
4
|
+
require('../../chunk-3JIHLSK5.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.withPulumiExecutor =
|
|
7
|
+
exports.withPulumiExecutor = _chunkXFUPJE4Hjs.withPulumiExecutor;
|
package/dist/src/base/index.js
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
var _chunkQDPXTR73js = require('../../chunk-QDPXTR73.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
9
|
-
require('../../chunk-
|
|
8
|
+
var _chunkXFUPJE4Hjs = require('../../chunk-XFUPJE4H.js');
|
|
9
|
+
require('../../chunk-3JIHLSK5.js');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.Provider = _chunkQDPXTR73js.Provider; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.withPulumiExecutor =
|
|
14
|
+
exports.Provider = _chunkQDPXTR73js.Provider; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.withPulumiExecutor = _chunkXFUPJE4Hjs.withPulumiExecutor;
|
package/dist/src/base/index.mjs
CHANGED
|
@@ -5,8 +5,8 @@ import {
|
|
|
5
5
|
} from "../../chunk-5TB4HFDP.mjs";
|
|
6
6
|
import {
|
|
7
7
|
withPulumiExecutor
|
|
8
|
-
} from "../../chunk-
|
|
9
|
-
import "../../chunk-
|
|
8
|
+
} from "../../chunk-LDIYARDU.mjs";
|
|
9
|
+
import "../../chunk-NTO7Q3J2.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
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunk4CE7A26Ajs = require('../../../chunk-4CE7A26A.js');
|
|
4
|
+
require('../../../chunk-XFUPJE4H.js');
|
|
5
|
+
require('../../../chunk-3JIHLSK5.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunk4CE7A26Ajs.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-PZGFEH6I.mjs";
|
|
4
|
+
import "../../../chunk-LDIYARDU.mjs";
|
|
5
|
+
import "../../../chunk-NTO7Q3J2.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 _chunkXBXW7A2Xjs = require('../../../chunk-XBXW7A2X.js');
|
|
4
|
+
require('../../../chunk-XFUPJE4H.js');
|
|
5
|
+
require('../../../chunk-3JIHLSK5.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkXBXW7A2Xjs.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-QVVTDFBA.mjs";
|
|
4
|
+
import "../../../chunk-LDIYARDU.mjs";
|
|
5
|
+
import "../../../chunk-NTO7Q3J2.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 _chunkKPWQTDUPjs = require('../../../chunk-KPWQTDUP.js');
|
|
4
|
+
require('../../../chunk-XFUPJE4H.js');
|
|
5
|
+
require('../../../chunk-3JIHLSK5.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkKPWQTDUPjs.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-GSHWQR6K.mjs";
|
|
4
|
+
import "../../../chunk-LDIYARDU.mjs";
|
|
5
|
+
import "../../../chunk-NTO7Q3J2.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 _chunk7K5XAPCJjs = require('../../../chunk-7K5XAPCJ.js');
|
|
4
|
+
require('../../../chunk-XFUPJE4H.js');
|
|
5
|
+
require('../../../chunk-3JIHLSK5.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunk7K5XAPCJjs.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-V6WZQ2NQ.mjs";
|
|
4
|
+
import "../../../chunk-LDIYARDU.mjs";
|
|
5
|
+
import "../../../chunk-NTO7Q3J2.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 _chunkW6SC5ZXKjs = require('../../../chunk-W6SC5ZXK.js');
|
|
4
|
+
require('../../../chunk-XFUPJE4H.js');
|
|
5
|
+
require('../../../chunk-3JIHLSK5.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkW6SC5ZXKjs.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-ZIUFHALV.mjs";
|
|
4
|
+
import "../../../chunk-LDIYARDU.mjs";
|
|
5
|
+
import "../../../chunk-NTO7Q3J2.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
|
|
4
|
+
var _chunkCUMXSI2Mjs = require('../../../chunk-CUMXSI2M.js');
|
|
5
5
|
require('../../../chunk-QDPXTR73.js');
|
|
6
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-3JIHLSK5.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.default =
|
|
10
|
+
exports.default = _chunkCUMXSI2Mjs.generator_default; exports.initGeneratorFn = _chunkCUMXSI2Mjs.initGeneratorFn;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
initGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-XZKYO7DL.mjs";
|
|
5
5
|
import "../../../chunk-5TB4HFDP.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-NTO7Q3J2.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.
|
|
3
|
+
"version": "0.22.82",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"description": "Tools for managing Pulumi infrastructure within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
"@pulumi/awsx": "^2.22.0",
|
|
158
158
|
"@pulumi/pulumi": "^3.213.0",
|
|
159
159
|
"@storm-software/config": "^1.135.0",
|
|
160
|
-
"@storm-software/config-tools": "^1.188.
|
|
160
|
+
"@storm-software/config-tools": "^1.188.80",
|
|
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": "
|
|
174
|
+
"gitHead": "f0da2445e3b4764750c75fdcd1d0ec13a10c6602"
|
|
175
175
|
}
|