@storm-software/pulumi-tools 0.16.6 → 0.16.7
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-2QGR5MCH.mjs → chunk-23SNFRLY.mjs} +1 -1
- package/dist/{chunk-GSL7BTAH.js → chunk-6N5USTKZ.js} +3 -3
- package/dist/{chunk-FOWQVQ2P.mjs → chunk-C7RILA5E.mjs} +1 -1
- package/dist/{chunk-YVESYG6S.mjs → chunk-DE7ZQ75X.mjs} +1 -1
- package/dist/{chunk-2OB32GAX.js → chunk-FUKMPK3Z.js} +2 -2
- package/dist/chunk-FUSZJVHP.mjs +10 -0
- package/dist/{chunk-ZITYRTBB.mjs → chunk-G5B7PPH4.mjs} +1 -1
- package/dist/{chunk-2J3GN234.js → chunk-KZFIEQB3.js} +2 -2
- package/dist/{chunk-V3IKJ3DR.js → chunk-LWYNF4MU.js} +2 -2
- package/dist/{chunk-I7HA42TP.mjs → chunk-LZG2D4QH.mjs} +1 -1
- package/dist/{chunk-UNI5OBZR.js → chunk-OHFP3HBS.js} +2 -2
- package/dist/{chunk-65P7D3PR.js → chunk-P3TSZM4L.js} +5 -5
- package/dist/{chunk-BVZMS676.js → chunk-QSIBYQ5Q.js} +41 -155
- package/dist/{chunk-ZP2ZV6N7.mjs → chunk-TQRNFMTY.mjs} +40 -151
- package/dist/{chunk-4JDYZ3T7.js → chunk-VBBJAQQY.js} +2 -2
- package/dist/{chunk-VXDNNG7N.mjs → chunk-VT45Z6QV.mjs} +1 -1
- package/dist/{chunk-7HMMLQSO.mjs → chunk-VTZSRUN5.mjs} +1 -1
- package/dist/executors.js +7 -8
- package/dist/executors.mjs +8 -8
- package/dist/generators.js +3 -4
- package/dist/generators.mjs +3 -3
- package/dist/index.js +9 -10
- package/dist/index.mjs +9 -9
- package/dist/src/base/base-executor.js +3 -4
- package/dist/src/base/base-executor.mjs +3 -3
- package/dist/src/base/index.js +3 -4
- package/dist/src/base/index.mjs +3 -3
- package/dist/src/base/providers.js +0 -1
- package/dist/src/base/providers.mjs +1 -1
- package/dist/src/executors/config/executor.js +4 -5
- package/dist/src/executors/config/executor.mjs +4 -4
- package/dist/src/executors/import/executor.js +4 -5
- package/dist/src/executors/import/executor.mjs +4 -4
- package/dist/src/executors/preview/executor.js +4 -5
- package/dist/src/executors/preview/executor.mjs +4 -4
- package/dist/src/executors/refresh/executor.js +4 -5
- package/dist/src/executors/refresh/executor.mjs +4 -4
- package/dist/src/executors/up/executor.js +4 -5
- package/dist/src/executors/up/executor.mjs +4 -4
- package/dist/src/generators/init/generator.js +3 -4
- package/dist/src/generators/init/generator.mjs +3 -3
- package/dist/src/lib/aws/index.js +0 -1
- package/dist/src/lib/aws/index.mjs +1 -1
- package/dist/src/lib/aws/providers.js +0 -1
- package/dist/src/lib/aws/providers.mjs +1 -1
- package/dist/tsup.config.js +1 -3
- package/dist/tsup.config.mjs +1 -1
- package/package.json +4 -4
- package/dist/chunk-3RG5ZIWI.js +0 -10
- package/dist/chunk-URGPIQOV.mjs +0 -18
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
|
-
__dirname
|
|
3
|
-
|
|
4
|
-
} from "./chunk-URGPIQOV.mjs";
|
|
2
|
+
__dirname
|
|
3
|
+
} from "./chunk-FUSZJVHP.mjs";
|
|
5
4
|
|
|
6
5
|
// ../config-tools/src/utilities/run.ts
|
|
7
6
|
import { exec, execSync } from "node:child_process";
|
|
@@ -334,65 +333,65 @@ function normalizeWindowsPath(input = "") {
|
|
|
334
333
|
var _UNC_REGEX = /^[/\\]{2}/;
|
|
335
334
|
var _IS_ABSOLUTE_RE = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^[A-Za-z]:[/\\]/;
|
|
336
335
|
var _DRIVE_LETTER_RE = /^[A-Za-z]:$/;
|
|
337
|
-
var correctPaths = function(
|
|
338
|
-
if (!
|
|
336
|
+
var correctPaths = function(path3) {
|
|
337
|
+
if (!path3 || path3.length === 0) {
|
|
339
338
|
return ".";
|
|
340
339
|
}
|
|
341
|
-
|
|
342
|
-
const isUNCPath =
|
|
343
|
-
const isPathAbsolute = isAbsolute(
|
|
344
|
-
const trailingSeparator =
|
|
345
|
-
|
|
346
|
-
if (
|
|
340
|
+
path3 = normalizeWindowsPath(path3);
|
|
341
|
+
const isUNCPath = path3.match(_UNC_REGEX);
|
|
342
|
+
const isPathAbsolute = isAbsolute(path3);
|
|
343
|
+
const trailingSeparator = path3[path3.length - 1] === "/";
|
|
344
|
+
path3 = normalizeString(path3, !isPathAbsolute);
|
|
345
|
+
if (path3.length === 0) {
|
|
347
346
|
if (isPathAbsolute) {
|
|
348
347
|
return "/";
|
|
349
348
|
}
|
|
350
349
|
return trailingSeparator ? "./" : ".";
|
|
351
350
|
}
|
|
352
351
|
if (trailingSeparator) {
|
|
353
|
-
|
|
352
|
+
path3 += "/";
|
|
354
353
|
}
|
|
355
|
-
if (_DRIVE_LETTER_RE.test(
|
|
356
|
-
|
|
354
|
+
if (_DRIVE_LETTER_RE.test(path3)) {
|
|
355
|
+
path3 += "/";
|
|
357
356
|
}
|
|
358
357
|
if (isUNCPath) {
|
|
359
358
|
if (!isPathAbsolute) {
|
|
360
|
-
return `//./${
|
|
359
|
+
return `//./${path3}`;
|
|
361
360
|
}
|
|
362
|
-
return `//${
|
|
361
|
+
return `//${path3}`;
|
|
363
362
|
}
|
|
364
|
-
return isPathAbsolute && !isAbsolute(
|
|
363
|
+
return isPathAbsolute && !isAbsolute(path3) ? `/${path3}` : path3;
|
|
365
364
|
};
|
|
366
365
|
var joinPaths = function(...segments) {
|
|
367
|
-
let
|
|
366
|
+
let path3 = "";
|
|
368
367
|
for (const seg of segments) {
|
|
369
368
|
if (!seg) {
|
|
370
369
|
continue;
|
|
371
370
|
}
|
|
372
|
-
if (
|
|
373
|
-
const pathTrailing =
|
|
371
|
+
if (path3.length > 0) {
|
|
372
|
+
const pathTrailing = path3[path3.length - 1] === "/";
|
|
374
373
|
const segLeading = seg[0] === "/";
|
|
375
374
|
const both = pathTrailing && segLeading;
|
|
376
375
|
if (both) {
|
|
377
|
-
|
|
376
|
+
path3 += seg.slice(1);
|
|
378
377
|
} else {
|
|
379
|
-
|
|
378
|
+
path3 += pathTrailing || segLeading ? seg : `/${seg}`;
|
|
380
379
|
}
|
|
381
380
|
} else {
|
|
382
|
-
|
|
381
|
+
path3 += seg;
|
|
383
382
|
}
|
|
384
383
|
}
|
|
385
|
-
return correctPaths(
|
|
384
|
+
return correctPaths(path3);
|
|
386
385
|
};
|
|
387
|
-
function normalizeString(
|
|
386
|
+
function normalizeString(path3, allowAboveRoot) {
|
|
388
387
|
let res = "";
|
|
389
388
|
let lastSegmentLength = 0;
|
|
390
389
|
let lastSlash = -1;
|
|
391
390
|
let dots = 0;
|
|
392
391
|
let char = null;
|
|
393
|
-
for (let index = 0; index <=
|
|
394
|
-
if (index <
|
|
395
|
-
char =
|
|
392
|
+
for (let index = 0; index <= path3.length; ++index) {
|
|
393
|
+
if (index < path3.length) {
|
|
394
|
+
char = path3[index];
|
|
396
395
|
} else if (char === "/") {
|
|
397
396
|
break;
|
|
398
397
|
} else {
|
|
@@ -428,9 +427,9 @@ function normalizeString(path4, allowAboveRoot) {
|
|
|
428
427
|
}
|
|
429
428
|
} else {
|
|
430
429
|
if (res.length > 0) {
|
|
431
|
-
res += `/${
|
|
430
|
+
res += `/${path3.slice(lastSlash + 1, index)}`;
|
|
432
431
|
} else {
|
|
433
|
-
res =
|
|
432
|
+
res = path3.slice(lastSlash + 1, index);
|
|
434
433
|
}
|
|
435
434
|
lastSegmentLength = index - lastSlash - 1;
|
|
436
435
|
}
|
|
@@ -1424,7 +1423,7 @@ var getConfigEnv = () => {
|
|
|
1424
1423
|
support: process.env[`${prefix}SUPPORT`] || void 0,
|
|
1425
1424
|
timezone: process.env[`${prefix}TIMEZONE`] || process.env.TZ || void 0,
|
|
1426
1425
|
locale: process.env[`${prefix}LOCALE`] || process.env.LOCALE || void 0,
|
|
1427
|
-
configFile: process.env[`${prefix}
|
|
1426
|
+
configFile: process.env[`${prefix}WORKSPACE_CONFIG_FILE`] ? correctPaths(process.env[`${prefix}WORKSPACE_CONFIG_FILE`]) : void 0,
|
|
1428
1427
|
workspaceRoot: process.env[`${prefix}WORKSPACE_ROOT`] ? correctPaths(process.env[`${prefix}WORKSPACE_ROOT`]) : void 0,
|
|
1429
1428
|
directories: {
|
|
1430
1429
|
cache: process.env[`${prefix}CACHE_DIR`] ? correctPaths(process.env[`${prefix}CACHE_DIR`]) : process.env[`${prefix}CACHE_DIRECTORY`] ? correctPaths(process.env[`${prefix}CACHE_DIRECTORY`]) : void 0,
|
|
@@ -1487,7 +1486,7 @@ var getConfigEnv = () => {
|
|
|
1487
1486
|
config.licensing = `${config.homepage}/docs`;
|
|
1488
1487
|
}
|
|
1489
1488
|
}
|
|
1490
|
-
const serializedConfig = process.env[`${prefix}
|
|
1489
|
+
const serializedConfig = process.env[`${prefix}WORKSPACE_CONFIG`];
|
|
1491
1490
|
if (serializedConfig) {
|
|
1492
1491
|
const parsed = JSON.parse(serializedConfig);
|
|
1493
1492
|
config = {
|
|
@@ -1719,7 +1718,9 @@ var setConfigEnv = (config) => {
|
|
|
1719
1718
|
process.env.LANG = config.locale ? `${config.locale.replaceAll("-", "_")}.UTF-8` : "en_US.UTF-8";
|
|
1720
1719
|
}
|
|
1721
1720
|
if (config.configFile) {
|
|
1722
|
-
process.env[`${prefix}
|
|
1721
|
+
process.env[`${prefix}WORKSPACE_CONFIG_FILE`] = correctPaths(
|
|
1722
|
+
config.configFile
|
|
1723
|
+
);
|
|
1723
1724
|
}
|
|
1724
1725
|
if (config.workspaceRoot) {
|
|
1725
1726
|
process.env[`${prefix}WORKSPACE_ROOT`] = correctPaths(config.workspaceRoot);
|
|
@@ -1823,7 +1824,7 @@ var setConfigEnv = (config) => {
|
|
|
1823
1824
|
config.skipConfigLogging
|
|
1824
1825
|
);
|
|
1825
1826
|
}
|
|
1826
|
-
process.env[`${prefix}
|
|
1827
|
+
process.env[`${prefix}WORKSPACE_CONFIG`] = JSON.stringify(config);
|
|
1827
1828
|
for (const key of Object.keys(config.extensions ?? {})) {
|
|
1828
1829
|
if (config.extensions[key] && Object.keys(config.extensions[key])) {
|
|
1829
1830
|
setExtensionEnv(key, config.extensions[key]);
|
|
@@ -2506,10 +2507,6 @@ import { readFileSync } from "node:fs";
|
|
|
2506
2507
|
import https from "node:https";
|
|
2507
2508
|
var LARGE_BUFFER2 = 1024 * 1e6;
|
|
2508
2509
|
|
|
2509
|
-
// ../esbuild/src/build.ts
|
|
2510
|
-
import * as esbuild from "esbuild";
|
|
2511
|
-
import { globbySync } from "globby";
|
|
2512
|
-
|
|
2513
2510
|
// ../build-tools/src/config.ts
|
|
2514
2511
|
var DEFAULT_COMPILED_BANNER = `/*****************************************
|
|
2515
2512
|
*
|
|
@@ -3085,88 +3082,6 @@ async function generatePackageJson(context) {
|
|
|
3085
3082
|
return context;
|
|
3086
3083
|
}
|
|
3087
3084
|
|
|
3088
|
-
// ../esbuild/src/plugins/deps-check.ts
|
|
3089
|
-
import { builtinModules as builtinModules2 } from "node:module";
|
|
3090
|
-
import path2 from "node:path";
|
|
3091
|
-
var unusedIgnore = [
|
|
3092
|
-
// these are our dev dependencies
|
|
3093
|
-
/@types\/.*?/,
|
|
3094
|
-
/@typescript-eslint.*?/,
|
|
3095
|
-
/eslint.*?/,
|
|
3096
|
-
"esbuild",
|
|
3097
|
-
"husky",
|
|
3098
|
-
"is-ci",
|
|
3099
|
-
"lint-staged",
|
|
3100
|
-
"prettier",
|
|
3101
|
-
"typescript",
|
|
3102
|
-
"ts-node",
|
|
3103
|
-
"ts-jest",
|
|
3104
|
-
"@swc/core",
|
|
3105
|
-
"@swc/jest",
|
|
3106
|
-
"jest",
|
|
3107
|
-
// these are missing 3rd party deps
|
|
3108
|
-
"spdx-exceptions",
|
|
3109
|
-
"spdx-license-ids",
|
|
3110
|
-
// type-only, so it is not detected
|
|
3111
|
-
"ts-toolbelt",
|
|
3112
|
-
// these are indirectly used by build
|
|
3113
|
-
"buffer"
|
|
3114
|
-
];
|
|
3115
|
-
var missingIgnore = [".prisma", "@prisma/client", "ts-toolbelt"];
|
|
3116
|
-
var depsCheckPlugin = (bundle) => ({
|
|
3117
|
-
name: "storm:deps-check",
|
|
3118
|
-
setup(build3) {
|
|
3119
|
-
const pkgJsonPath = path2.join(process.cwd(), "package.json");
|
|
3120
|
-
const pkgContents = __require(pkgJsonPath);
|
|
3121
|
-
const regDependencies = Object.keys(pkgContents["dependencies"] ?? {});
|
|
3122
|
-
const devDependencies = Object.keys(pkgContents["devDependencies"] ?? {});
|
|
3123
|
-
const peerDependencies = Object.keys(pkgContents["peerDependencies"] ?? {});
|
|
3124
|
-
const dependencies = [
|
|
3125
|
-
...regDependencies,
|
|
3126
|
-
...bundle ? devDependencies : []
|
|
3127
|
-
];
|
|
3128
|
-
const collectedDependencies = /* @__PURE__ */ new Set();
|
|
3129
|
-
const onlyPackages = /^[^./](?!:)|^\.[^./]|^\.\.[^/]/;
|
|
3130
|
-
build3.onResolve({ filter: onlyPackages }, (args) => {
|
|
3131
|
-
if (args.importer.includes(process.cwd())) {
|
|
3132
|
-
if (args.path[0] === "@") {
|
|
3133
|
-
const [org, pkg] = args.path.split("/");
|
|
3134
|
-
collectedDependencies.add(`${org}/${pkg}`);
|
|
3135
|
-
} else {
|
|
3136
|
-
const [pkg] = args.path.split("/");
|
|
3137
|
-
collectedDependencies.add(pkg);
|
|
3138
|
-
}
|
|
3139
|
-
}
|
|
3140
|
-
return { external: true };
|
|
3141
|
-
});
|
|
3142
|
-
build3.onEnd(() => {
|
|
3143
|
-
const unusedDependencies = [...dependencies].filter((dep) => {
|
|
3144
|
-
return !collectedDependencies.has(dep) || builtinModules2.includes(dep);
|
|
3145
|
-
});
|
|
3146
|
-
const missingDependencies = [...collectedDependencies].filter((dep) => {
|
|
3147
|
-
return !dependencies.includes(dep) && !builtinModules2.includes(dep);
|
|
3148
|
-
});
|
|
3149
|
-
const filteredUnusedDeps = unusedDependencies.filter((dep) => {
|
|
3150
|
-
return !unusedIgnore.some((pattern) => dep.match(pattern));
|
|
3151
|
-
});
|
|
3152
|
-
const filteredMissingDeps = missingDependencies.filter((dep) => {
|
|
3153
|
-
return !missingIgnore.some((pattern) => dep.match(pattern)) && !peerDependencies.includes(dep);
|
|
3154
|
-
});
|
|
3155
|
-
writeWarning(
|
|
3156
|
-
`Unused Dependencies: ${JSON.stringify(filteredUnusedDeps)}`
|
|
3157
|
-
);
|
|
3158
|
-
writeError(
|
|
3159
|
-
`Missing Dependencies: ${JSON.stringify(filteredMissingDeps)}`
|
|
3160
|
-
);
|
|
3161
|
-
if (filteredMissingDeps.length > 0) {
|
|
3162
|
-
throw new Error(`Missing dependencies detected - please install them:
|
|
3163
|
-
${JSON.stringify(filteredMissingDeps)}
|
|
3164
|
-
`);
|
|
3165
|
-
}
|
|
3166
|
-
});
|
|
3167
|
-
}
|
|
3168
|
-
});
|
|
3169
|
-
|
|
3170
3085
|
// ../esbuild/src/tsup.ts
|
|
3171
3086
|
import { build as tsup } from "tsup";
|
|
3172
3087
|
async function executeTsup(context) {
|
|
@@ -3207,32 +3122,6 @@ async function reportResults(context) {
|
|
|
3207
3122
|
);
|
|
3208
3123
|
}
|
|
3209
3124
|
}
|
|
3210
|
-
async function dependencyCheck(options) {
|
|
3211
|
-
if (process.env.DEV === "true") {
|
|
3212
|
-
return void 0;
|
|
3213
|
-
}
|
|
3214
|
-
if (process.env.CI && !process.env.BUILDKITE) {
|
|
3215
|
-
return void 0;
|
|
3216
|
-
}
|
|
3217
|
-
const buildPromise = esbuild.build({
|
|
3218
|
-
entryPoints: globbySync("**/*.{j,t}s", {
|
|
3219
|
-
// We don't check dependencies in ecosystem tests because tests are isolated from the build.
|
|
3220
|
-
ignore: ["./src/__tests__/**/*", "./tests/e2e/**/*", "./dist/**/*"],
|
|
3221
|
-
gitignore: true
|
|
3222
|
-
}),
|
|
3223
|
-
logLevel: "silent",
|
|
3224
|
-
// there will be errors
|
|
3225
|
-
bundle: true,
|
|
3226
|
-
// we bundle to get everything
|
|
3227
|
-
write: false,
|
|
3228
|
-
// no need to write for analysis
|
|
3229
|
-
outdir: "out",
|
|
3230
|
-
plugins: [depsCheckPlugin(options.bundle)]
|
|
3231
|
-
});
|
|
3232
|
-
await buildPromise.catch(() => {
|
|
3233
|
-
});
|
|
3234
|
-
return void 0;
|
|
3235
|
-
}
|
|
3236
3125
|
async function cleanOutputPath(context) {
|
|
3237
3126
|
if (context.clean !== false && context.outputPath) {
|
|
3238
3127
|
writeDebug(
|
|
@@ -3245,7 +3134,7 @@ async function cleanOutputPath(context) {
|
|
|
3245
3134
|
}
|
|
3246
3135
|
return context;
|
|
3247
3136
|
}
|
|
3248
|
-
async function
|
|
3137
|
+
async function build(options) {
|
|
3249
3138
|
writeDebug(` \u26A1 Executing Storm ESBuild pipeline`);
|
|
3250
3139
|
const stopwatch = getStopwatch("ESBuild pipeline");
|
|
3251
3140
|
try {
|
|
@@ -3256,7 +3145,7 @@ async function build2(options) {
|
|
|
3256
3145
|
const context = await resolveContext(options);
|
|
3257
3146
|
await cleanOutputPath(context);
|
|
3258
3147
|
await Promise.all([
|
|
3259
|
-
dependencyCheck(context.options),
|
|
3148
|
+
// dependencyCheck(context.options),
|
|
3260
3149
|
generatePackageJson(context),
|
|
3261
3150
|
copyBuildAssets(context),
|
|
3262
3151
|
executeTsup(context)
|
|
@@ -3281,7 +3170,7 @@ async function esbuildExecutorFn(options, context, config) {
|
|
|
3281
3170
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
3282
3171
|
);
|
|
3283
3172
|
}
|
|
3284
|
-
await
|
|
3173
|
+
await build({
|
|
3285
3174
|
...options,
|
|
3286
3175
|
projectRoot: context.projectsConfigurations.projects?.[context.projectName].root,
|
|
3287
3176
|
name: context.projectName,
|
|
@@ -4155,7 +4044,7 @@ import {
|
|
|
4155
4044
|
joinPathFragments as joinPathFragments5,
|
|
4156
4045
|
updateJson as updateJson2
|
|
4157
4046
|
} from "@nx/devkit";
|
|
4158
|
-
import * as
|
|
4047
|
+
import * as path2 from "node:path";
|
|
4159
4048
|
async function presetGeneratorFn(tree, options) {
|
|
4160
4049
|
const projectRoot = ".";
|
|
4161
4050
|
options.description ??= `\u26A1The ${options.namespace ? options.namespace : options.name} monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.`;
|
|
@@ -4303,7 +4192,7 @@ async function presetGeneratorFn(tree, options) {
|
|
|
4303
4192
|
};
|
|
4304
4193
|
return json;
|
|
4305
4194
|
});
|
|
4306
|
-
generateFiles4(tree,
|
|
4195
|
+
generateFiles4(tree, path2.join(__dirname, "files"), projectRoot, {
|
|
4307
4196
|
...options,
|
|
4308
4197
|
pnpmVersion,
|
|
4309
4198
|
nodeVersion
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunk6N5USTKZjs = require('./chunk-6N5USTKZ.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/preview/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunk6N5USTKZjs.withPulumiExecutor.call(void 0,
|
|
7
7
|
"preview",
|
|
8
8
|
(options) => [
|
|
9
9
|
options.stack && `--stack=${options.stack}`,
|
package/dist/executors.js
CHANGED
|
@@ -1,9 +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-
|
|
9
|
-
require('./chunk-3RG5ZIWI.js');
|
|
2
|
+
require('./chunk-FUKMPK3Z.js');
|
|
3
|
+
require('./chunk-VBBJAQQY.js');
|
|
4
|
+
require('./chunk-KZFIEQB3.js');
|
|
5
|
+
require('./chunk-LWYNF4MU.js');
|
|
6
|
+
require('./chunk-OHFP3HBS.js');
|
|
7
|
+
require('./chunk-6N5USTKZ.js');
|
|
8
|
+
require('./chunk-QSIBYQ5Q.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-
|
|
9
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-DE7ZQ75X.mjs";
|
|
3
|
+
import "./chunk-C7RILA5E.mjs";
|
|
4
|
+
import "./chunk-VTZSRUN5.mjs";
|
|
5
|
+
import "./chunk-VT45Z6QV.mjs";
|
|
6
|
+
import "./chunk-LZG2D4QH.mjs";
|
|
7
|
+
import "./chunk-23SNFRLY.mjs";
|
|
8
|
+
import "./chunk-TQRNFMTY.mjs";
|
|
9
|
+
import "./chunk-FUSZJVHP.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkP3TSZM4Ljs = require('./chunk-P3TSZM4L.js');
|
|
5
5
|
require('./chunk-QDPXTR73.js');
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-3RG5ZIWI.js');
|
|
6
|
+
require('./chunk-QSIBYQ5Q.js');
|
|
8
7
|
|
|
9
8
|
|
|
10
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkP3TSZM4Ljs.initGeneratorFn;
|
package/dist/generators.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import "./chunk-23KFTIT2.mjs";
|
|
2
2
|
import {
|
|
3
3
|
initGeneratorFn
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-G5B7PPH4.mjs";
|
|
5
5
|
import "./chunk-5TB4HFDP.mjs";
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-TQRNFMTY.mjs";
|
|
7
|
+
import "./chunk-FUSZJVHP.mjs";
|
|
8
8
|
export {
|
|
9
9
|
initGeneratorFn
|
|
10
10
|
};
|
package/dist/index.js
CHANGED
|
@@ -8,25 +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-FUKMPK3Z.js');
|
|
12
|
+
require('./chunk-VBBJAQQY.js');
|
|
13
|
+
require('./chunk-KZFIEQB3.js');
|
|
14
|
+
require('./chunk-LWYNF4MU.js');
|
|
15
15
|
require('./chunk-N2YKXZ5R.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkP3TSZM4Ljs = require('./chunk-P3TSZM4L.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-OHFP3HBS.js');
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
var
|
|
28
|
-
require('./chunk-
|
|
29
|
-
require('./chunk-3RG5ZIWI.js');
|
|
27
|
+
var _chunk6N5USTKZjs = require('./chunk-6N5USTKZ.js');
|
|
28
|
+
require('./chunk-QSIBYQ5Q.js');
|
|
30
29
|
|
|
31
30
|
|
|
32
31
|
|
|
@@ -38,4 +37,4 @@ require('./chunk-3RG5ZIWI.js');
|
|
|
38
37
|
|
|
39
38
|
|
|
40
39
|
|
|
41
|
-
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 = _chunkP3TSZM4Ljs.initGeneratorFn; exports.securityGroup = _chunk7I63VQP3js.securityGroup; exports.subnet = _chunk7I63VQP3js.subnet; exports.vpc = _chunk7I63VQP3js.vpc; exports.withPulumiExecutor = _chunk6N5USTKZjs.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-
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-DE7ZQ75X.mjs";
|
|
12
|
+
import "./chunk-C7RILA5E.mjs";
|
|
13
|
+
import "./chunk-VTZSRUN5.mjs";
|
|
14
|
+
import "./chunk-VT45Z6QV.mjs";
|
|
15
15
|
import "./chunk-23KFTIT2.mjs";
|
|
16
16
|
import {
|
|
17
17
|
initGeneratorFn
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-G5B7PPH4.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-LZG2D4QH.mjs";
|
|
25
25
|
import {
|
|
26
26
|
withPulumiExecutor
|
|
27
|
-
} from "./chunk-
|
|
28
|
-
import "./chunk-
|
|
29
|
-
import "./chunk-
|
|
27
|
+
} from "./chunk-23SNFRLY.mjs";
|
|
28
|
+
import "./chunk-TQRNFMTY.mjs";
|
|
29
|
+
import "./chunk-FUSZJVHP.mjs";
|
|
30
30
|
export {
|
|
31
31
|
Provider,
|
|
32
32
|
ec2Instance,
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
5
|
-
require('../../chunk-3RG5ZIWI.js');
|
|
3
|
+
var _chunk6N5USTKZjs = require('../../chunk-6N5USTKZ.js');
|
|
4
|
+
require('../../chunk-QSIBYQ5Q.js');
|
|
6
5
|
|
|
7
6
|
|
|
8
|
-
exports.withPulumiExecutor =
|
|
7
|
+
exports.withPulumiExecutor = _chunk6N5USTKZjs.withPulumiExecutor;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
withPulumiExecutor
|
|
3
|
-
} from "../../chunk-
|
|
4
|
-
import "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
3
|
+
} from "../../chunk-23SNFRLY.mjs";
|
|
4
|
+
import "../../chunk-TQRNFMTY.mjs";
|
|
5
|
+
import "../../chunk-FUSZJVHP.mjs";
|
|
6
6
|
export {
|
|
7
7
|
withPulumiExecutor
|
|
8
8
|
};
|
package/dist/src/base/index.js
CHANGED
|
@@ -5,11 +5,10 @@
|
|
|
5
5
|
var _chunkQDPXTR73js = require('../../chunk-QDPXTR73.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
9
|
-
require('../../chunk-
|
|
10
|
-
require('../../chunk-3RG5ZIWI.js');
|
|
8
|
+
var _chunk6N5USTKZjs = require('../../chunk-6N5USTKZ.js');
|
|
9
|
+
require('../../chunk-QSIBYQ5Q.js');
|
|
11
10
|
|
|
12
11
|
|
|
13
12
|
|
|
14
13
|
|
|
15
|
-
exports.Provider = _chunkQDPXTR73js.Provider; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.withPulumiExecutor =
|
|
14
|
+
exports.Provider = _chunkQDPXTR73js.Provider; exports.getCloudTemplateName = _chunkQDPXTR73js.getCloudTemplateName; exports.withPulumiExecutor = _chunk6N5USTKZjs.withPulumiExecutor;
|
package/dist/src/base/index.mjs
CHANGED
|
@@ -5,9 +5,9 @@ import {
|
|
|
5
5
|
} from "../../chunk-5TB4HFDP.mjs";
|
|
6
6
|
import {
|
|
7
7
|
withPulumiExecutor
|
|
8
|
-
} from "../../chunk-
|
|
9
|
-
import "../../chunk-
|
|
10
|
-
import "../../chunk-
|
|
8
|
+
} from "../../chunk-23SNFRLY.mjs";
|
|
9
|
+
import "../../chunk-TQRNFMTY.mjs";
|
|
10
|
+
import "../../chunk-FUSZJVHP.mjs";
|
|
11
11
|
export {
|
|
12
12
|
Provider,
|
|
13
13
|
getCloudTemplateName,
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
6
|
-
require('../../../chunk-3RG5ZIWI.js');
|
|
3
|
+
var _chunkOHFP3HBSjs = require('../../../chunk-OHFP3HBS.js');
|
|
4
|
+
require('../../../chunk-6N5USTKZ.js');
|
|
5
|
+
require('../../../chunk-QSIBYQ5Q.js');
|
|
7
6
|
|
|
8
7
|
|
|
9
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkOHFP3HBSjs.executor_default;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-LZG2D4QH.mjs";
|
|
4
|
+
import "../../../chunk-23SNFRLY.mjs";
|
|
5
|
+
import "../../../chunk-TQRNFMTY.mjs";
|
|
6
|
+
import "../../../chunk-FUSZJVHP.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
6
|
-
require('../../../chunk-3RG5ZIWI.js');
|
|
3
|
+
var _chunkFUKMPK3Zjs = require('../../../chunk-FUKMPK3Z.js');
|
|
4
|
+
require('../../../chunk-6N5USTKZ.js');
|
|
5
|
+
require('../../../chunk-QSIBYQ5Q.js');
|
|
7
6
|
|
|
8
7
|
|
|
9
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkFUKMPK3Zjs.executor_default;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executor_default
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-
|
|
5
|
-
import "../../../chunk-
|
|
6
|
-
import "../../../chunk-
|
|
3
|
+
} from "../../../chunk-DE7ZQ75X.mjs";
|
|
4
|
+
import "../../../chunk-23SNFRLY.mjs";
|
|
5
|
+
import "../../../chunk-TQRNFMTY.mjs";
|
|
6
|
+
import "../../../chunk-FUSZJVHP.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
6
|
-
require('../../../chunk-3RG5ZIWI.js');
|
|
3
|
+
var _chunkVBBJAQQYjs = require('../../../chunk-VBBJAQQY.js');
|
|
4
|
+
require('../../../chunk-6N5USTKZ.js');
|
|
5
|
+
require('../../../chunk-QSIBYQ5Q.js');
|
|
7
6
|
|
|
8
7
|
|
|
9
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkVBBJAQQYjs.executor_default;
|