@storm-software/pulumi-tools 0.22.263 → 0.22.265
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 +36 -0
- package/README.md +1 -1
- package/dist/{chunk-3F3DPRLC.js → chunk-3VWSQ2SS.js} +72 -62
- package/dist/{chunk-4UDIIH6T.mjs → chunk-5UMYMZRA.mjs} +1 -1
- package/dist/{chunk-ZVWFS45F.js → chunk-AWP77CXN.js} +2 -2
- package/dist/{chunk-O6OCMLAP.mjs → chunk-DFZUZOLL.mjs} +1 -1
- package/dist/{chunk-SB56QZUD.mjs → chunk-FLUX3ET7.mjs} +31 -21
- package/dist/{chunk-OSSCO6HW.js → chunk-GTZLRIOL.js} +3 -3
- package/dist/{chunk-63NU7YCY.js → chunk-IYHI4LBK.js} +2 -2
- package/dist/{chunk-LUOI3VWF.js → chunk-L3E6R4RK.js} +2 -2
- package/dist/{chunk-FXGZ326V.mjs → chunk-NDN3RVIF.mjs} +1 -1
- package/dist/{chunk-WD4ZFUNO.mjs → chunk-NLQG5KWS.mjs} +1 -1
- package/dist/{chunk-O4NLMN5H.js → chunk-NO345UZJ.js} +5 -5
- package/dist/{chunk-LYBGZ4MO.js → chunk-OZCLSR3Y.js} +2 -2
- package/dist/{chunk-4JDHJLWM.mjs → chunk-P4GGKYJK.mjs} +1 -1
- package/dist/{chunk-O67GNKWY.mjs → chunk-UB6ZNCMG.mjs} +1 -1
- package/dist/{chunk-3ZK46FAR.mjs → chunk-V7MEDIVC.mjs} +1 -1
- package/dist/{chunk-M3JNWKGD.js → chunk-WTRYK6OF.js} +2 -2
- package/dist/{chunk-5QIKSWOJ.mjs → chunk-ZTHBX2FQ.mjs} +1 -1
- package/dist/executors.js +7 -7
- package/dist/executors.mjs +8 -8
- package/dist/generators.js +3 -3
- package/dist/generators.mjs +3 -3
- package/dist/index.js +9 -9
- package/dist/index.mjs +9 -9
- package/dist/src/base/base-executor.js +3 -3
- package/dist/src/base/base-executor.mjs +3 -3
- package/dist/src/base/index.js +3 -3
- package/dist/src/base/index.mjs +3 -3
- package/dist/src/base/providers.mjs +1 -1
- package/dist/src/executors/config/executor.js +4 -4
- package/dist/src/executors/config/executor.mjs +4 -4
- package/dist/src/executors/import/executor.js +4 -4
- package/dist/src/executors/import/executor.mjs +4 -4
- package/dist/src/executors/preview/executor.js +4 -4
- package/dist/src/executors/preview/executor.mjs +4 -4
- package/dist/src/executors/refresh/executor.js +4 -4
- package/dist/src/executors/refresh/executor.mjs +4 -4
- package/dist/src/executors/up/executor.js +4 -4
- package/dist/src/executors/up/executor.mjs +4 -4
- package/dist/src/generators/init/generator.js +3 -3
- package/dist/src/generators/init/generator.mjs +3 -3
- package/dist/src/lib/aws/index.mjs +1 -1
- package/dist/src/lib/aws/providers.mjs +1 -1
- package/dist/tsup.config.mjs +1 -1
- package/package.json +7 -7
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
__dirname
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-UB6ZNCMG.mjs";
|
|
4
4
|
|
|
5
5
|
// ../config-tools/src/utilities/run.ts
|
|
6
6
|
import { exec, execSync } from "node:child_process";
|
|
@@ -1438,6 +1438,17 @@ function applyDefaultConfig(config) {
|
|
|
1438
1438
|
return config;
|
|
1439
1439
|
}
|
|
1440
1440
|
|
|
1441
|
+
// ../config-tools/src/utilities/toml.ts
|
|
1442
|
+
import TOML from "@ltd/j-toml";
|
|
1443
|
+
function parseCargoToml(cargoString) {
|
|
1444
|
+
if (!cargoString) {
|
|
1445
|
+
throw new Error("Cargo.toml is empty");
|
|
1446
|
+
}
|
|
1447
|
+
return TOML.parse(cargoString, {
|
|
1448
|
+
x: { comment: true }
|
|
1449
|
+
});
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1441
1452
|
// ../config-tools/src/config-file/get-config-file.ts
|
|
1442
1453
|
var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
1443
1454
|
const workspacePath = filePath || findWorkspaceRoot(filePath);
|
|
@@ -2470,6 +2481,7 @@ import {
|
|
|
2470
2481
|
execSync as execSync2,
|
|
2471
2482
|
spawn
|
|
2472
2483
|
} from "node:child_process";
|
|
2484
|
+
import { readFileSync } from "node:fs";
|
|
2473
2485
|
import { relative as relative2 } from "node:path";
|
|
2474
2486
|
var INVALID_CARGO_ARGS = [
|
|
2475
2487
|
"allFeatures",
|
|
@@ -2503,8 +2515,17 @@ var buildCargoCommand = (baseCommand, options, context) => {
|
|
|
2503
2515
|
args.push(`--${key}`, String(value));
|
|
2504
2516
|
}
|
|
2505
2517
|
}
|
|
2506
|
-
if (context.projectName) {
|
|
2507
|
-
|
|
2518
|
+
if (context.projectName && context.projectsConfigurations?.projects && context.projectsConfigurations?.projects[context.projectName] && context.projectsConfigurations?.projects[context.projectName]?.root && context.projectsConfigurations?.projects[context.projectName]?.root.includes("Cargo.toml")) {
|
|
2519
|
+
const cargoToml = parseCargoToml(
|
|
2520
|
+
readFileSync(
|
|
2521
|
+
joinPathFragments(
|
|
2522
|
+
context.projectsConfigurations.projects[context.projectName].root,
|
|
2523
|
+
"Cargo.toml"
|
|
2524
|
+
),
|
|
2525
|
+
"utf-8"
|
|
2526
|
+
)
|
|
2527
|
+
);
|
|
2528
|
+
args.push("-p", cargoToml.package.name);
|
|
2508
2529
|
}
|
|
2509
2530
|
if (options.allFeatures && !args.includes("--all-features")) {
|
|
2510
2531
|
args.push("--all-features");
|
|
@@ -2694,7 +2715,7 @@ var executor_default5 = withRunExecutor(
|
|
|
2694
2715
|
// ../workspace-tools/src/executors/cargo-publish/executor.ts
|
|
2695
2716
|
import { joinPathFragments as joinPathFragments2 } from "@nx/devkit";
|
|
2696
2717
|
import { execSync as execSync3 } from "node:child_process";
|
|
2697
|
-
import { readFileSync } from "node:fs";
|
|
2718
|
+
import { readFileSync as readFileSync2 } from "node:fs";
|
|
2698
2719
|
import https from "node:https";
|
|
2699
2720
|
var LARGE_BUFFER2 = 1024 * 1e6;
|
|
2700
2721
|
|
|
@@ -2727,7 +2748,7 @@ import { stripIndents } from "@nx/devkit";
|
|
|
2727
2748
|
import { relative as relative3 } from "path";
|
|
2728
2749
|
|
|
2729
2750
|
// ../build-tools/src/utilities/copy-assets.ts
|
|
2730
|
-
import { CopyAssetsHandler } from "@nx/js/
|
|
2751
|
+
import { CopyAssetsHandler } from "@nx/js/internal";
|
|
2731
2752
|
import { glob } from "glob";
|
|
2732
2753
|
import { readFile as readFile2, writeFile } from "node:fs/promises";
|
|
2733
2754
|
var copyAssets = async (config, assets, outputPath, projectRoot, sourceRoot, generatePackageJson3 = true, includeSrc = false, banner, footer) => {
|
|
@@ -2799,9 +2820,9 @@ ${footer && typeof footer === "string" ? footer.startsWith("//") ? footer : `//
|
|
|
2799
2820
|
};
|
|
2800
2821
|
|
|
2801
2822
|
// ../build-tools/src/utilities/generate-package-json.ts
|
|
2802
|
-
import { calculateProjectBuildableDependencies } from "@nx/js/
|
|
2823
|
+
import { calculateProjectBuildableDependencies } from "@nx/js/internal";
|
|
2803
2824
|
import { Glob } from "glob";
|
|
2804
|
-
import { existsSync as existsSync4, readFileSync as
|
|
2825
|
+
import { existsSync as existsSync4, readFileSync as readFileSync3 } from "node:fs";
|
|
2805
2826
|
import { readFile as readFile3 } from "node:fs/promises";
|
|
2806
2827
|
import {
|
|
2807
2828
|
createProjectGraphAsync,
|
|
@@ -2877,7 +2898,7 @@ var addPackageDependencies = async (workspaceRoot2, projectRoot, projectName, pa
|
|
|
2877
2898
|
"package.json"
|
|
2878
2899
|
);
|
|
2879
2900
|
if (existsSync4(depPackageJsonPath)) {
|
|
2880
|
-
const depPackageJsonContent =
|
|
2901
|
+
const depPackageJsonContent = readFileSync3(
|
|
2881
2902
|
depPackageJsonPath,
|
|
2882
2903
|
"utf8"
|
|
2883
2904
|
);
|
|
@@ -4182,14 +4203,12 @@ import {
|
|
|
4182
4203
|
updateJson,
|
|
4183
4204
|
writeJson
|
|
4184
4205
|
} from "@nx/devkit";
|
|
4185
|
-
import { determineProjectNameAndRootOptions } from "@nx/devkit/
|
|
4206
|
+
import { determineProjectNameAndRootOptions } from "@nx/devkit/internal";
|
|
4186
4207
|
import {
|
|
4187
4208
|
addTsConfigPath,
|
|
4188
4209
|
getRelativePathToRootTsConfig,
|
|
4189
4210
|
tsConfigBaseOptions
|
|
4190
4211
|
} from "@nx/js";
|
|
4191
|
-
import jsInitGenerator from "@nx/js/src/generators/init/init";
|
|
4192
|
-
import setupVerdaccio from "@nx/js/src/generators/setup-verdaccio/generator";
|
|
4193
4212
|
|
|
4194
4213
|
// ../workspace-tools/src/utils/versions.ts
|
|
4195
4214
|
var typesNodeVersion = "20.9.0";
|
|
@@ -4201,12 +4220,6 @@ var pnpmVersion = "8.10.2";
|
|
|
4201
4220
|
async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
4202
4221
|
const normalized = await normalizeOptions(tree, { ...options });
|
|
4203
4222
|
const tasks = [];
|
|
4204
|
-
tasks.push(
|
|
4205
|
-
await jsInitGenerator(tree, {
|
|
4206
|
-
...normalized,
|
|
4207
|
-
tsConfigName: normalized.rootProject ? "tsconfig.json" : "tsconfig.base.json"
|
|
4208
|
-
})
|
|
4209
|
-
);
|
|
4210
4223
|
tasks.push(
|
|
4211
4224
|
addDependenciesToPackageJson2(
|
|
4212
4225
|
tree,
|
|
@@ -4218,9 +4231,6 @@ async function typeScriptLibraryGeneratorFn(tree, options, config) {
|
|
|
4218
4231
|
}
|
|
4219
4232
|
)
|
|
4220
4233
|
);
|
|
4221
|
-
if (normalized.publishable) {
|
|
4222
|
-
tasks.push(await setupVerdaccio(tree, { ...normalized, skipFormat: true }));
|
|
4223
|
-
}
|
|
4224
4234
|
const projectConfig = {
|
|
4225
4235
|
root: normalized.directory,
|
|
4226
4236
|
projectType: "library",
|
|
@@ -5341,7 +5351,7 @@ var typescript_library_generator_untyped_default = defineUntypedSchema5({
|
|
|
5341
5351
|
});
|
|
5342
5352
|
|
|
5343
5353
|
// ../workspace-tools/src/release/js-version-actions.ts
|
|
5344
|
-
import JsVersionActions from "@nx/js/src/release/version-actions
|
|
5354
|
+
import JsVersionActions from "@nx/js/src/release/version-actions";
|
|
5345
5355
|
|
|
5346
5356
|
// ../workspace-tools/src/release/rust-version-actions.ts
|
|
5347
5357
|
import {
|
|
@@ -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 _chunk3VWSQ2SSjs = require('./chunk-3VWSQ2SS.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 _chunk3VWSQ2SSjs.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
|
+
_chunk3VWSQ2SSjs.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,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkGTZLRIOLjs = require('./chunk-GTZLRIOL.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/import/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkGTZLRIOLjs.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
|
|
3
|
+
var _chunkGTZLRIOLjs = require('./chunk-GTZLRIOL.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/preview/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkGTZLRIOLjs.withPulumiExecutor.call(void 0, "preview", (options) => [
|
|
7
7
|
options.stack && `--stack=${options.stack}`,
|
|
8
8
|
options.expectNoChanges && "--expect-no-changes"
|
|
9
9
|
]);
|
|
@@ -5,7 +5,7 @@ var _chunkQDPXTR73js = require('./chunk-QDPXTR73.js');
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunk3VWSQ2SSjs = require('./chunk-3VWSQ2SS.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 = _chunk3VWSQ2SSjs.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 = _chunk3VWSQ2SSjs.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
|
+
_chunk3VWSQ2SSjs.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
|
+
_chunk3VWSQ2SSjs.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 _chunkGTZLRIOLjs = require('./chunk-GTZLRIOL.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/config/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkGTZLRIOLjs.withPulumiExecutor.call(void 0, "config", (options) => [
|
|
7
7
|
options.action,
|
|
8
8
|
options.showSecrets && `--show-secrets`,
|
|
9
9
|
options.secret && `--secret`,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=
|
|
1
|
+
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=751a554d775c3572381af4e7e5fa22eeda6dd6856012fb1cf521d6806eb2dc74__bd21b723d209f27c53f0884dec23a71c/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,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkGTZLRIOLjs = require('./chunk-GTZLRIOL.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/refresh/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkGTZLRIOLjs.withPulumiExecutor.call(void 0, "refresh", (options) => [
|
|
7
7
|
"--suppress-progress",
|
|
8
8
|
options.stack && `--stack=${options.stack}`,
|
|
9
9
|
options.skipPreview && "--skip-preview",
|
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-IYHI4LBK.js');
|
|
3
|
+
require('./chunk-L3E6R4RK.js');
|
|
4
|
+
require('./chunk-WTRYK6OF.js');
|
|
5
|
+
require('./chunk-AWP77CXN.js');
|
|
6
|
+
require('./chunk-OZCLSR3Y.js');
|
|
7
|
+
require('./chunk-GTZLRIOL.js');
|
|
8
|
+
require('./chunk-3VWSQ2SS.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-NLQG5KWS.mjs";
|
|
3
|
+
import "./chunk-5UMYMZRA.mjs";
|
|
4
|
+
import "./chunk-P4GGKYJK.mjs";
|
|
5
|
+
import "./chunk-V7MEDIVC.mjs";
|
|
6
|
+
import "./chunk-ZTHBX2FQ.mjs";
|
|
7
|
+
import "./chunk-DFZUZOLL.mjs";
|
|
8
|
+
import "./chunk-FLUX3ET7.mjs";
|
|
9
|
+
import "./chunk-UB6ZNCMG.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 _chunkNO345UZJjs = require('./chunk-NO345UZJ.js');
|
|
5
5
|
require('./chunk-QDPXTR73.js');
|
|
6
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-3VWSQ2SS.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.initGeneratorFn =
|
|
9
|
+
exports.initGeneratorFn = _chunkNO345UZJjs.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-NDN3RVIF.mjs";
|
|
5
5
|
import "./chunk-5TB4HFDP.mjs";
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-FLUX3ET7.mjs";
|
|
7
|
+
import "./chunk-UB6ZNCMG.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-
|
|
12
|
-
require('./chunk-
|
|
13
|
-
require('./chunk-
|
|
14
|
-
require('./chunk-
|
|
11
|
+
require('./chunk-IYHI4LBK.js');
|
|
12
|
+
require('./chunk-L3E6R4RK.js');
|
|
13
|
+
require('./chunk-WTRYK6OF.js');
|
|
14
|
+
require('./chunk-AWP77CXN.js');
|
|
15
15
|
require('./chunk-N2YKXZ5R.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkNO345UZJjs = require('./chunk-NO345UZJ.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-OZCLSR3Y.js');
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
var
|
|
28
|
-
require('./chunk-
|
|
27
|
+
var _chunkGTZLRIOLjs = require('./chunk-GTZLRIOL.js');
|
|
28
|
+
require('./chunk-3VWSQ2SS.js');
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
|
|
@@ -37,4 +37,4 @@ require('./chunk-3F3DPRLC.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 = _chunkNO345UZJjs.initGeneratorFn; exports.securityGroup = _chunk7I63VQP3js.securityGroup; exports.subnet = _chunk7I63VQP3js.subnet; exports.vpc = _chunk7I63VQP3js.vpc; exports.withPulumiExecutor = _chunkGTZLRIOLjs.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-NLQG5KWS.mjs";
|
|
12
|
+
import "./chunk-5UMYMZRA.mjs";
|
|
13
|
+
import "./chunk-P4GGKYJK.mjs";
|
|
14
|
+
import "./chunk-V7MEDIVC.mjs";
|
|
15
15
|
import "./chunk-23KFTIT2.mjs";
|
|
16
16
|
import {
|
|
17
17
|
initGeneratorFn
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-NDN3RVIF.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-ZTHBX2FQ.mjs";
|
|
25
25
|
import {
|
|
26
26
|
withPulumiExecutor
|
|
27
|
-
} from "./chunk-
|
|
28
|
-
import "./chunk-
|
|
29
|
-
import "./chunk-
|
|
27
|
+
} from "./chunk-DFZUZOLL.mjs";
|
|
28
|
+
import "./chunk-FLUX3ET7.mjs";
|
|
29
|
+
import "./chunk-UB6ZNCMG.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
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var _chunkGTZLRIOLjs = require('../../chunk-GTZLRIOL.js');
|
|
4
|
+
require('../../chunk-3VWSQ2SS.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.withPulumiExecutor =
|
|
7
|
+
exports.withPulumiExecutor = _chunkGTZLRIOLjs.withPulumiExecutor;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
withPulumiExecutor
|
|
3
|
-
} from "../../chunk-
|
|
4
|
-
import "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
3
|
+
} from "../../chunk-DFZUZOLL.mjs";
|
|
4
|
+
import "../../chunk-FLUX3ET7.mjs";
|
|
5
|
+
import "../../chunk-UB6ZNCMG.mjs";
|
|
6
6
|
export {
|
|
7
7
|
withPulumiExecutor
|
|
8
8
|
};
|
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 _chunkGTZLRIOLjs = require('../../chunk-GTZLRIOL.js');
|
|
9
|
+
require('../../chunk-3VWSQ2SS.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 = _chunkGTZLRIOLjs.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-DFZUZOLL.mjs";
|
|
9
|
+
import "../../chunk-FLUX3ET7.mjs";
|
|
10
|
+
import "../../chunk-UB6ZNCMG.mjs";
|
|
11
11
|
export {
|
|
12
12
|
Provider,
|
|
13
13
|
getCloudTemplateName,
|
|
@@ -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 _chunkOZCLSR3Yjs = require('../../../chunk-OZCLSR3Y.js');
|
|
4
|
+
require('../../../chunk-GTZLRIOL.js');
|
|
5
|
+
require('../../../chunk-3VWSQ2SS.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkOZCLSR3Yjs.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-ZTHBX2FQ.mjs";
|
|
4
|
+
import "../../../chunk-DFZUZOLL.mjs";
|
|
5
|
+
import "../../../chunk-FLUX3ET7.mjs";
|
|
6
|
+
import "../../../chunk-UB6ZNCMG.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
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkIYHI4LBKjs = require('../../../chunk-IYHI4LBK.js');
|
|
4
|
+
require('../../../chunk-GTZLRIOL.js');
|
|
5
|
+
require('../../../chunk-3VWSQ2SS.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkIYHI4LBKjs.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-NLQG5KWS.mjs";
|
|
4
|
+
import "../../../chunk-DFZUZOLL.mjs";
|
|
5
|
+
import "../../../chunk-FLUX3ET7.mjs";
|
|
6
|
+
import "../../../chunk-UB6ZNCMG.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
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkL3E6R4RKjs = require('../../../chunk-L3E6R4RK.js');
|
|
4
|
+
require('../../../chunk-GTZLRIOL.js');
|
|
5
|
+
require('../../../chunk-3VWSQ2SS.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkL3E6R4RKjs.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-5UMYMZRA.mjs";
|
|
4
|
+
import "../../../chunk-DFZUZOLL.mjs";
|
|
5
|
+
import "../../../chunk-FLUX3ET7.mjs";
|
|
6
|
+
import "../../../chunk-UB6ZNCMG.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
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkWTRYK6OFjs = require('../../../chunk-WTRYK6OF.js');
|
|
4
|
+
require('../../../chunk-GTZLRIOL.js');
|
|
5
|
+
require('../../../chunk-3VWSQ2SS.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.default =
|
|
8
|
+
exports.default = _chunkWTRYK6OFjs.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-P4GGKYJK.mjs";
|
|
4
|
+
import "../../../chunk-DFZUZOLL.mjs";
|
|
5
|
+
import "../../../chunk-FLUX3ET7.mjs";
|
|
6
|
+
import "../../../chunk-UB6ZNCMG.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|