@storm-software/pulumi-tools 0.13.19 → 0.13.21
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 +12 -0
- package/README.md +1 -1
- package/dist/{chunk-PVAN2Q6Z.js → chunk-2BDZV476.js} +6 -1
- package/dist/{chunk-OX2AXRY2.mjs → chunk-35ZCV3KG.mjs} +1 -1
- package/dist/{chunk-MSZG5NJB.js → chunk-3JZ3LSEB.js} +5 -5
- package/dist/{chunk-5D3FY6B4.js → chunk-DI3B75DR.js} +2 -2
- package/dist/{chunk-VIJ4HVDN.mjs → chunk-DMZEWRLQ.mjs} +1 -1
- package/dist/{chunk-I2J3DWOP.js → chunk-F4B6Y7KO.js} +2 -2
- package/dist/{chunk-WN5RLTFI.js → chunk-HCFCOAGN.js} +2 -2
- package/dist/{chunk-HPCJB452.mjs → chunk-HOP5WU4T.mjs} +1 -1
- package/dist/{chunk-XYBQCF2O.js → chunk-HSMFETWH.js} +2 -2
- package/dist/{chunk-ZLMNWWSN.mjs → chunk-IN6SOADW.mjs} +1 -1
- package/dist/{chunk-7EEMC6UK.mjs → chunk-PX4IKVOD.mjs} +1 -1
- package/dist/{chunk-6ZEB42KR.mjs → chunk-QPKJALWW.mjs} +1 -1
- package/dist/{chunk-UBS2JVD5.js → chunk-RGWQJX7U.js} +3 -3
- package/dist/{chunk-IGLUHFYG.mjs → chunk-ROXVYLPM.mjs} +7 -2
- package/dist/{chunk-P47EGWS4.js → chunk-SU344ZGP.js} +2 -2
- package/dist/{chunk-XJ4NN4T6.mjs → chunk-TJN3TXUD.mjs} +1 -1
- package/dist/{chunk-HJPEB5BP.mjs → chunk-VSS3KNW4.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/tsup.config.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pulumi Tools
|
|
4
4
|
|
|
5
|
+
## [0.13.20](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.13.20) (2025-06-08)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
|
|
11
|
+
## [0.13.19](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.13.19) (2025-06-06)
|
|
12
|
+
|
|
13
|
+
### Miscellaneous
|
|
14
|
+
|
|
15
|
+
- **monorepo:** Regenerate README markdown files
|
|
16
|
+
|
|
5
17
|
## [0.13.18](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.13.18) (2025-06-06)
|
|
6
18
|
|
|
7
19
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -229,6 +229,7 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
|
229
229
|
license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
230
230
|
homepage: _zod2.default.string().trim().url().optional().describe("The homepage of the workspace"),
|
|
231
231
|
docs: _zod2.default.string().trim().url().optional().describe("The documentation site for the workspace"),
|
|
232
|
+
portal: _zod2.default.string().trim().url().optional().describe("The development portal site for the workspace"),
|
|
232
233
|
licensing: _zod2.default.string().trim().url().optional().describe("The licensing site for the workspace"),
|
|
233
234
|
contact: _zod2.default.string().trim().url().optional().describe("The contact site for the workspace"),
|
|
234
235
|
support: _zod2.default.string().trim().url().optional().describe(
|
|
@@ -1067,6 +1068,7 @@ var getConfigEnv = () => {
|
|
|
1067
1068
|
license: process.env[`${prefix}LICENSE`] || void 0,
|
|
1068
1069
|
homepage: process.env[`${prefix}HOMEPAGE`] || void 0,
|
|
1069
1070
|
docs: process.env[`${prefix}DOCS`] || void 0,
|
|
1071
|
+
portal: process.env[`${prefix}PORTAL`] || void 0,
|
|
1070
1072
|
licensing: process.env[`${prefix}LICENSING`] || void 0,
|
|
1071
1073
|
contact: process.env[`${prefix}CONTACT`] || void 0,
|
|
1072
1074
|
support: process.env[`${prefix}SUPPORT`] || void 0,
|
|
@@ -1282,6 +1284,9 @@ var setConfigEnv = (config) => {
|
|
|
1282
1284
|
if (config.docs) {
|
|
1283
1285
|
process.env[`${prefix}DOCS`] = config.docs;
|
|
1284
1286
|
}
|
|
1287
|
+
if (config.portal) {
|
|
1288
|
+
process.env[`${prefix}PORTAL`] = config.portal;
|
|
1289
|
+
}
|
|
1285
1290
|
if (config.licensing) {
|
|
1286
1291
|
process.env[`${prefix}LICENSING`] = config.licensing;
|
|
1287
1292
|
}
|
|
@@ -1597,7 +1602,7 @@ ${formatLogMessage(config)}`,
|
|
|
1597
1602
|
var getConfig = (workspaceRoot3, skipLogs = false) => {
|
|
1598
1603
|
return loadStormWorkspaceConfig(workspaceRoot3, skipLogs);
|
|
1599
1604
|
};
|
|
1600
|
-
var getWorkspaceConfig = (skipLogs =
|
|
1605
|
+
var getWorkspaceConfig = (skipLogs = true, options = {}) => {
|
|
1601
1606
|
let workspaceRoot3 = options.workspaceRoot;
|
|
1602
1607
|
if (!workspaceRoot3) {
|
|
1603
1608
|
workspaceRoot3 = findWorkspaceRoot(options.cwd);
|
|
@@ -5,7 +5,7 @@ var _chunkHUKXHFCAjs = require('./chunk-HUKXHFCA.js');
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunk2BDZV476js = require('./chunk-2BDZV476.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 = _chunk2BDZV476js.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 = _chunk2BDZV476js.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 = _chunkHUKXHFCAjs.getCloudTemplateName.call(void 0, options.provider);
|
|
64
|
-
|
|
64
|
+
_chunk2BDZV476js.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
|
+
_chunk2BDZV476js.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 _chunkRGWQJX7Ujs = require('./chunk-RGWQJX7U.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/up/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkRGWQJX7Ujs.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 _chunkRGWQJX7Ujs = require('./chunk-RGWQJX7U.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/import/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkRGWQJX7Ujs.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 _chunkRGWQJX7Ujs = require('./chunk-RGWQJX7U.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/refresh/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkRGWQJX7Ujs.withPulumiExecutor.call(void 0,
|
|
7
7
|
"refresh",
|
|
8
8
|
(options) => [
|
|
9
9
|
"--suppress-progress",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkRGWQJX7Ujs = require('./chunk-RGWQJX7U.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/config/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkRGWQJX7Ujs.withPulumiExecutor.call(void 0, "config", (options) => [
|
|
7
7
|
options.action,
|
|
8
8
|
options.showSecrets && `--show-secrets`,
|
|
9
9
|
options.secret && `--secret`,
|
|
@@ -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 _chunk2BDZV476js = require('./chunk-2BDZV476.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 _chunk2BDZV476js.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
|
+
_chunk2BDZV476js.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,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
__dirname,
|
|
3
3
|
__require
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-VSS3KNW4.mjs";
|
|
5
5
|
|
|
6
6
|
// ../config-tools/src/utilities/run.ts
|
|
7
7
|
import { exec, execSync } from "node:child_process";
|
|
@@ -230,6 +230,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
230
230
|
license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
231
231
|
homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
|
|
232
232
|
docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
|
|
233
|
+
portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
|
|
233
234
|
licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
|
|
234
235
|
contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
|
|
235
236
|
support: z.string().trim().url().optional().describe(
|
|
@@ -1068,6 +1069,7 @@ var getConfigEnv = () => {
|
|
|
1068
1069
|
license: process.env[`${prefix}LICENSE`] || void 0,
|
|
1069
1070
|
homepage: process.env[`${prefix}HOMEPAGE`] || void 0,
|
|
1070
1071
|
docs: process.env[`${prefix}DOCS`] || void 0,
|
|
1072
|
+
portal: process.env[`${prefix}PORTAL`] || void 0,
|
|
1071
1073
|
licensing: process.env[`${prefix}LICENSING`] || void 0,
|
|
1072
1074
|
contact: process.env[`${prefix}CONTACT`] || void 0,
|
|
1073
1075
|
support: process.env[`${prefix}SUPPORT`] || void 0,
|
|
@@ -1283,6 +1285,9 @@ var setConfigEnv = (config) => {
|
|
|
1283
1285
|
if (config.docs) {
|
|
1284
1286
|
process.env[`${prefix}DOCS`] = config.docs;
|
|
1285
1287
|
}
|
|
1288
|
+
if (config.portal) {
|
|
1289
|
+
process.env[`${prefix}PORTAL`] = config.portal;
|
|
1290
|
+
}
|
|
1286
1291
|
if (config.licensing) {
|
|
1287
1292
|
process.env[`${prefix}LICENSING`] = config.licensing;
|
|
1288
1293
|
}
|
|
@@ -1598,7 +1603,7 @@ ${formatLogMessage(config)}`,
|
|
|
1598
1603
|
var getConfig = (workspaceRoot3, skipLogs = false) => {
|
|
1599
1604
|
return loadStormWorkspaceConfig(workspaceRoot3, skipLogs);
|
|
1600
1605
|
};
|
|
1601
|
-
var getWorkspaceConfig = (skipLogs =
|
|
1606
|
+
var getWorkspaceConfig = (skipLogs = true, options = {}) => {
|
|
1602
1607
|
let workspaceRoot3 = options.workspaceRoot;
|
|
1603
1608
|
if (!workspaceRoot3) {
|
|
1604
1609
|
workspaceRoot3 = findWorkspaceRoot(options.cwd);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkRGWQJX7Ujs = require('./chunk-RGWQJX7U.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/preview/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkRGWQJX7Ujs.withPulumiExecutor.call(void 0,
|
|
7
7
|
"preview",
|
|
8
8
|
(options) => [
|
|
9
9
|
options.stack && `--stack=${options.stack}`,
|
|
@@ -5,7 +5,7 @@ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require
|
|
|
5
5
|
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
6
6
|
});
|
|
7
7
|
|
|
8
|
-
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=
|
|
8
|
+
// ../../node_modules/.pnpm/tsup@8.4.0_patch_hash=751a554d775c3572381af4e7e5fa22eeda6dd6856012fb1cf521d6806eb2dc74__7cfb930311fa0524f281ed017d589a0a/node_modules/tsup/assets/esm_shims.js
|
|
9
9
|
import { fileURLToPath } from "url";
|
|
10
10
|
import path from "path";
|
|
11
11
|
var getFilename = () => fileURLToPath(import.meta.url);
|
package/dist/executors.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
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-F4B6Y7KO.js');
|
|
3
|
+
require('./chunk-SU344ZGP.js');
|
|
4
|
+
require('./chunk-HCFCOAGN.js');
|
|
5
|
+
require('./chunk-DI3B75DR.js');
|
|
6
|
+
require('./chunk-HSMFETWH.js');
|
|
7
|
+
require('./chunk-RGWQJX7U.js');
|
|
8
|
+
require('./chunk-2BDZV476.js');
|
|
9
9
|
require('./chunk-3RG5ZIWI.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-DMZEWRLQ.mjs";
|
|
3
|
+
import "./chunk-HOP5WU4T.mjs";
|
|
4
|
+
import "./chunk-35ZCV3KG.mjs";
|
|
5
|
+
import "./chunk-TJN3TXUD.mjs";
|
|
6
|
+
import "./chunk-QPKJALWW.mjs";
|
|
7
|
+
import "./chunk-PX4IKVOD.mjs";
|
|
8
|
+
import "./chunk-ROXVYLPM.mjs";
|
|
9
|
+
import "./chunk-VSS3KNW4.mjs";
|
package/dist/generators.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-N2YKXZ5R.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk3JZ3LSEBjs = require('./chunk-3JZ3LSEB.js');
|
|
5
5
|
require('./chunk-HUKXHFCA.js');
|
|
6
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-2BDZV476.js');
|
|
7
7
|
require('./chunk-3RG5ZIWI.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.initGeneratorFn =
|
|
10
|
+
exports.initGeneratorFn = _chunk3JZ3LSEBjs.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-IN6SOADW.mjs";
|
|
5
5
|
import "./chunk-KPFHCT4A.mjs";
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-ROXVYLPM.mjs";
|
|
7
|
+
import "./chunk-VSS3KNW4.mjs";
|
|
8
8
|
export {
|
|
9
9
|
initGeneratorFn
|
|
10
10
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-XO62WWX4.js');
|
|
2
|
-
require('./chunk-
|
|
3
|
-
require('./chunk-
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
2
|
+
require('./chunk-F4B6Y7KO.js');
|
|
3
|
+
require('./chunk-SU344ZGP.js');
|
|
4
|
+
require('./chunk-HCFCOAGN.js');
|
|
5
|
+
require('./chunk-DI3B75DR.js');
|
|
6
6
|
require('./chunk-N2YKXZ5R.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunk3JZ3LSEBjs = require('./chunk-3JZ3LSEB.js');
|
|
10
10
|
require('./chunk-GUQOEBFW.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
var _chunkHUKXHFCAjs = require('./chunk-HUKXHFCA.js');
|
|
15
|
-
require('./chunk-
|
|
15
|
+
require('./chunk-HSMFETWH.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
19
|
-
require('./chunk-
|
|
18
|
+
var _chunkRGWQJX7Ujs = require('./chunk-RGWQJX7U.js');
|
|
19
|
+
require('./chunk-2BDZV476.js');
|
|
20
20
|
require('./chunk-3RG5ZIWI.js');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
exports.Provider = _chunkHUKXHFCAjs.Provider; exports.getCloudTemplateName = _chunkHUKXHFCAjs.getCloudTemplateName; exports.initGeneratorFn =
|
|
26
|
+
exports.Provider = _chunkHUKXHFCAjs.Provider; exports.getCloudTemplateName = _chunkHUKXHFCAjs.getCloudTemplateName; exports.initGeneratorFn = _chunk3JZ3LSEBjs.initGeneratorFn; exports.withPulumiExecutor = _chunkRGWQJX7Ujs.withPulumiExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import "./chunk-UV4HQO3Y.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-DMZEWRLQ.mjs";
|
|
3
|
+
import "./chunk-HOP5WU4T.mjs";
|
|
4
|
+
import "./chunk-35ZCV3KG.mjs";
|
|
5
|
+
import "./chunk-TJN3TXUD.mjs";
|
|
6
6
|
import "./chunk-23KFTIT2.mjs";
|
|
7
7
|
import {
|
|
8
8
|
initGeneratorFn
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-IN6SOADW.mjs";
|
|
10
10
|
import "./chunk-CA7S5MOH.mjs";
|
|
11
11
|
import {
|
|
12
12
|
Provider,
|
|
13
13
|
getCloudTemplateName
|
|
14
14
|
} from "./chunk-KPFHCT4A.mjs";
|
|
15
|
-
import "./chunk-
|
|
15
|
+
import "./chunk-QPKJALWW.mjs";
|
|
16
16
|
import {
|
|
17
17
|
withPulumiExecutor
|
|
18
|
-
} from "./chunk-
|
|
19
|
-
import "./chunk-
|
|
20
|
-
import "./chunk-
|
|
18
|
+
} from "./chunk-PX4IKVOD.mjs";
|
|
19
|
+
import "./chunk-ROXVYLPM.mjs";
|
|
20
|
+
import "./chunk-VSS3KNW4.mjs";
|
|
21
21
|
export {
|
|
22
22
|
Provider,
|
|
23
23
|
getCloudTemplateName,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var _chunkRGWQJX7Ujs = require('../../chunk-RGWQJX7U.js');
|
|
4
|
+
require('../../chunk-2BDZV476.js');
|
|
5
5
|
require('../../chunk-3RG5ZIWI.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.withPulumiExecutor =
|
|
8
|
+
exports.withPulumiExecutor = _chunkRGWQJX7Ujs.withPulumiExecutor;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
withPulumiExecutor
|
|
3
|
-
} from "../../chunk-
|
|
4
|
-
import "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
3
|
+
} from "../../chunk-PX4IKVOD.mjs";
|
|
4
|
+
import "../../chunk-ROXVYLPM.mjs";
|
|
5
|
+
import "../../chunk-VSS3KNW4.mjs";
|
|
6
6
|
export {
|
|
7
7
|
withPulumiExecutor
|
|
8
8
|
};
|
package/dist/src/base/index.js
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
var _chunkHUKXHFCAjs = require('../../chunk-HUKXHFCA.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
9
|
-
require('../../chunk-
|
|
8
|
+
var _chunkRGWQJX7Ujs = require('../../chunk-RGWQJX7U.js');
|
|
9
|
+
require('../../chunk-2BDZV476.js');
|
|
10
10
|
require('../../chunk-3RG5ZIWI.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
exports.Provider = _chunkHUKXHFCAjs.Provider; exports.getCloudTemplateName = _chunkHUKXHFCAjs.getCloudTemplateName; exports.withPulumiExecutor =
|
|
15
|
+
exports.Provider = _chunkHUKXHFCAjs.Provider; exports.getCloudTemplateName = _chunkHUKXHFCAjs.getCloudTemplateName; exports.withPulumiExecutor = _chunkRGWQJX7Ujs.withPulumiExecutor;
|
package/dist/src/base/index.mjs
CHANGED
|
@@ -5,9 +5,9 @@ import {
|
|
|
5
5
|
} from "../../chunk-KPFHCT4A.mjs";
|
|
6
6
|
import {
|
|
7
7
|
withPulumiExecutor
|
|
8
|
-
} from "../../chunk-
|
|
9
|
-
import "../../chunk-
|
|
10
|
-
import "../../chunk-
|
|
8
|
+
} from "../../chunk-PX4IKVOD.mjs";
|
|
9
|
+
import "../../chunk-ROXVYLPM.mjs";
|
|
10
|
+
import "../../chunk-VSS3KNW4.mjs";
|
|
11
11
|
export {
|
|
12
12
|
Provider,
|
|
13
13
|
getCloudTemplateName,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkHSMFETWHjs = require('../../../chunk-HSMFETWH.js');
|
|
4
|
+
require('../../../chunk-RGWQJX7U.js');
|
|
5
|
+
require('../../../chunk-2BDZV476.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkHSMFETWHjs.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-QPKJALWW.mjs";
|
|
4
|
+
import "../../../chunk-PX4IKVOD.mjs";
|
|
5
|
+
import "../../../chunk-ROXVYLPM.mjs";
|
|
6
|
+
import "../../../chunk-VSS3KNW4.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkF4B6Y7KOjs = require('../../../chunk-F4B6Y7KO.js');
|
|
4
|
+
require('../../../chunk-RGWQJX7U.js');
|
|
5
|
+
require('../../../chunk-2BDZV476.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkF4B6Y7KOjs.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-DMZEWRLQ.mjs";
|
|
4
|
+
import "../../../chunk-PX4IKVOD.mjs";
|
|
5
|
+
import "../../../chunk-ROXVYLPM.mjs";
|
|
6
|
+
import "../../../chunk-VSS3KNW4.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkSU344ZGPjs = require('../../../chunk-SU344ZGP.js');
|
|
4
|
+
require('../../../chunk-RGWQJX7U.js');
|
|
5
|
+
require('../../../chunk-2BDZV476.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkSU344ZGPjs.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-HOP5WU4T.mjs";
|
|
4
|
+
import "../../../chunk-PX4IKVOD.mjs";
|
|
5
|
+
import "../../../chunk-ROXVYLPM.mjs";
|
|
6
|
+
import "../../../chunk-VSS3KNW4.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkHCFCOAGNjs = require('../../../chunk-HCFCOAGN.js');
|
|
4
|
+
require('../../../chunk-RGWQJX7U.js');
|
|
5
|
+
require('../../../chunk-2BDZV476.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkHCFCOAGNjs.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-35ZCV3KG.mjs";
|
|
4
|
+
import "../../../chunk-PX4IKVOD.mjs";
|
|
5
|
+
import "../../../chunk-ROXVYLPM.mjs";
|
|
6
|
+
import "../../../chunk-VSS3KNW4.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../../chunk-
|
|
5
|
-
require('../../../chunk-
|
|
3
|
+
var _chunkDI3B75DRjs = require('../../../chunk-DI3B75DR.js');
|
|
4
|
+
require('../../../chunk-RGWQJX7U.js');
|
|
5
|
+
require('../../../chunk-2BDZV476.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkDI3B75DRjs.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-TJN3TXUD.mjs";
|
|
4
|
+
import "../../../chunk-PX4IKVOD.mjs";
|
|
5
|
+
import "../../../chunk-ROXVYLPM.mjs";
|
|
6
|
+
import "../../../chunk-VSS3KNW4.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
9
9
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunk3JZ3LSEBjs = require('../../../chunk-3JZ3LSEB.js');
|
|
5
5
|
require('../../../chunk-HUKXHFCA.js');
|
|
6
|
-
require('../../../chunk-
|
|
6
|
+
require('../../../chunk-2BDZV476.js');
|
|
7
7
|
require('../../../chunk-3RG5ZIWI.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = _chunk3JZ3LSEBjs.generator_default; exports.initGeneratorFn = _chunk3JZ3LSEBjs.initGeneratorFn;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generator_default,
|
|
3
3
|
initGeneratorFn
|
|
4
|
-
} from "../../../chunk-
|
|
4
|
+
} from "../../../chunk-IN6SOADW.mjs";
|
|
5
5
|
import "../../../chunk-KPFHCT4A.mjs";
|
|
6
|
-
import "../../../chunk-
|
|
7
|
-
import "../../../chunk-
|
|
6
|
+
import "../../../chunk-ROXVYLPM.mjs";
|
|
7
|
+
import "../../../chunk-VSS3KNW4.mjs";
|
|
8
8
|
export {
|
|
9
9
|
generator_default as default,
|
|
10
10
|
initGeneratorFn
|
package/dist/tsup.config.mjs
CHANGED