@storm-software/pulumi-tools 0.9.0 → 0.10.0
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/.eslintrc.json +40 -0
- package/CHANGELOG.md +28 -0
- package/README.md +2 -1
- package/dist/{chunk-E5AP6CDG.mjs → chunk-2DGPOHPV.mjs} +1 -1
- package/dist/{chunk-2TYNPYBU.mjs → chunk-2WOVRK7D.mjs} +1 -1
- package/dist/{chunk-R3EJZLX2.js → chunk-DQF4ETOO.js} +8 -0
- package/dist/{chunk-36ZCRXV6.mjs → chunk-EX7FIDME.mjs} +1 -1
- package/dist/{chunk-RWNDPKJK.js → chunk-FLSGBXS4.js} +2 -2
- package/dist/{chunk-ZUJ3PY3K.js → chunk-FPC2C44G.js} +5 -5
- package/dist/{chunk-SSY3QNGM.mjs → chunk-IOQCO27P.mjs} +1 -1
- package/dist/{chunk-IWIZJWH3.mjs → chunk-PJUV5DSE.mjs} +22 -14
- package/dist/{chunk-DFUGKUEV.js → chunk-Q4CKWHPM.js} +3 -3
- package/dist/{chunk-TXKOR3ID.js → chunk-TDUXEEJE.js} +2 -2
- package/dist/{chunk-O2YJQKYB.js → chunk-UFAAW3EP.js} +2 -2
- package/dist/{chunk-T6O7JL6L.mjs → chunk-UIUSAJII.mjs} +1 -1
- package/dist/{chunk-N7ZQU3A6.js → chunk-X6FOFN6M.js} +2 -2
- package/dist/{chunk-2PVTUX4W.mjs → chunk-XGW62IC4.mjs} +1 -1
- package/dist/{chunk-2QARL2O5.js → chunk-YEORYOVK.js} +2 -2
- package/dist/{chunk-DIIDXD4R.mjs → chunk-YO5I6TUI.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/executors.ts +10 -0
- package/generators.ts +2 -0
- package/index.ts +3 -0
- package/package.json +1 -1
- package/project.json +57 -0
- package/src/base/base-executor.ts +77 -0
- package/src/base/index.ts +2 -0
- package/src/base/providers.ts +9 -0
- package/src/executors/config/executor.ts +11 -0
- package/src/executors/import/executor.ts +10 -0
- package/src/executors/preview/executor.ts +10 -0
- package/src/executors/refresh/executor.ts +12 -0
- package/src/executors/up/executor.ts +12 -0
- package/src/generators/init/generator.ts +167 -0
- package/tsconfig.json +31 -0
- package/tsup.config.ts +24 -0
- /package/{dist/src → src}/executors/config/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/config/schema.json +0 -0
- /package/{dist/src → src}/executors/import/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/import/schema.json +0 -0
- /package/{dist/src → src}/executors/preview/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/preview/schema.json +0 -0
- /package/{dist/src → src}/executors/refresh/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/refresh/schema.json +0 -0
- /package/{dist/src → src}/executors/up/schema.d.ts +0 -0
- /package/{dist/src → src}/executors/up/schema.json +0 -0
- /package/{dist/src → src}/generators/init/files/src/index.ts.template +0 -0
- /package/{dist/src → src}/generators/init/schema.d.ts +0 -0
- /package/{dist/src → src}/generators/init/schema.json +0 -0
package/.eslintrc.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": ["../../.eslintrc.json"],
|
|
3
|
+
"ignorePatterns": ["!**/*"],
|
|
4
|
+
"overrides": [
|
|
5
|
+
{
|
|
6
|
+
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
7
|
+
"parserOptions": {
|
|
8
|
+
"project": ["packages/pulumi-tools/tsconfig.*?.json"]
|
|
9
|
+
},
|
|
10
|
+
"rules": {}
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"files": ["*.ts", "*.tsx"],
|
|
14
|
+
"rules": {}
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"files": ["*.js", "*.jsx"],
|
|
18
|
+
"rules": {}
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"files": ["*.json"],
|
|
22
|
+
"parser": "jsonc-eslint-parser",
|
|
23
|
+
"rules": {
|
|
24
|
+
"@nx/dependency-checks": [
|
|
25
|
+
"error",
|
|
26
|
+
{
|
|
27
|
+
"ignoredFiles": ["{projectRoot}/eslint.config.{js,cjs,mjs}"]
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"files": ["./package.json", "./executors.json", "./generators.json"],
|
|
34
|
+
"parser": "jsonc-eslint-parser",
|
|
35
|
+
"rules": {
|
|
36
|
+
"@nx/nx-plugin-checks": "error"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,34 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Pulumi Tools
|
|
4
4
|
|
|
5
|
+
## [0.10.0](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.10.0) (2025-05-06)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **workspace-tools:** Update the publish executor source code
|
|
10
|
+
([527dcfe84](https://github.com/storm-software/storm-ops/commit/527dcfe84))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Regenerate README markdown files
|
|
15
|
+
([d58a4014e](https://github.com/storm-software/storm-ops/commit/d58a4014e))
|
|
16
|
+
|
|
17
|
+
## [0.9.2](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.9.2) (2025-05-05)
|
|
18
|
+
|
|
19
|
+
### Miscellaneous
|
|
20
|
+
|
|
21
|
+
- **workspace-tools:** Skip git checks during publish
|
|
22
|
+
([7fdcbfc9a](https://github.com/storm-software/storm-ops/commit/7fdcbfc9a))
|
|
23
|
+
- **monorepo:** Regenerate README markdown files
|
|
24
|
+
([fb8ab0609](https://github.com/storm-software/storm-ops/commit/fb8ab0609))
|
|
25
|
+
|
|
26
|
+
## [0.9.1](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.9.1) (2025-05-05)
|
|
27
|
+
|
|
28
|
+
### Miscellaneous
|
|
29
|
+
|
|
30
|
+
- **monorepo:** Regenerate README markdown files
|
|
31
|
+
([372776939](https://github.com/storm-software/storm-ops/commit/372776939))
|
|
32
|
+
|
|
5
33
|
## [0.9.0](https://github.com/storm-software/storm-ops/releases/tag/pulumi-tools%400.9.0) (2025-05-05)
|
|
6
34
|
|
|
7
35
|
### Features
|
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 -->
|
|
@@ -40,6 +40,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
+
|
|
43
44
|
## Table of Contents
|
|
44
45
|
|
|
45
46
|
- [Storm Pulumi Tools](#storm-pulumi-tools)
|
|
@@ -2833,6 +2833,14 @@ var executor_default6 = withRunExecutor(
|
|
|
2833
2833
|
|
|
2834
2834
|
|
|
2835
2835
|
|
|
2836
|
+
|
|
2837
|
+
|
|
2838
|
+
var _columnify = require('columnify'); var columnify = _interopRequireWildcard(_columnify);
|
|
2839
|
+
|
|
2840
|
+
|
|
2841
|
+
var _npmrunpath = require('npm-run-path');
|
|
2842
|
+
|
|
2843
|
+
|
|
2836
2844
|
// ../workspace-tools/src/utils/pnpm-deps-update.ts
|
|
2837
2845
|
|
|
2838
2846
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkQ4CKWHPMjs = require('./chunk-Q4CKWHPM.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/import/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkQ4CKWHPMjs.withPulumiExecutor.call(void 0, "import", (options) => [
|
|
7
7
|
options.target,
|
|
8
8
|
options.name,
|
|
9
9
|
options.id,
|
|
@@ -5,7 +5,7 @@ var _chunkHUKXHFCAjs = require('./chunk-HUKXHFCA.js');
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkDQF4ETOOjs = require('./chunk-DQF4ETOO.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 = _chunkDQF4ETOOjs.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 = _chunkDQF4ETOOjs.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
|
+
_chunkDQF4ETOOjs.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
|
+
_chunkDQF4ETOOjs.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"),
|
|
@@ -2831,8 +2831,16 @@ var executor_default6 = withRunExecutor(
|
|
|
2831
2831
|
);
|
|
2832
2832
|
|
|
2833
2833
|
// ../workspace-tools/src/executors/npm-publish/executor.ts
|
|
2834
|
+
import {
|
|
2835
|
+
detectPackageManager,
|
|
2836
|
+
readJsonFile
|
|
2837
|
+
} from "@nx/devkit";
|
|
2838
|
+
import { exec as exec2 } from "child_process";
|
|
2839
|
+
import * as columnify from "columnify";
|
|
2840
|
+
import { existsSync as existsSync8 } from "fs";
|
|
2834
2841
|
import { execSync as execSync4 } from "node:child_process";
|
|
2835
|
-
import {
|
|
2842
|
+
import { env as appendLocalEnv } from "npm-run-path";
|
|
2843
|
+
import { join as join3, relative as relative3 } from "path";
|
|
2836
2844
|
|
|
2837
2845
|
// ../workspace-tools/src/utils/pnpm-deps-update.ts
|
|
2838
2846
|
import { existsSync as existsSync7 } from "node:fs";
|
|
@@ -4090,8 +4098,8 @@ var DEFAULT_COMMIT_QUESTIONS = {
|
|
|
4090
4098
|
};
|
|
4091
4099
|
|
|
4092
4100
|
// ../workspace-tools/src/generators/release-version/generator.ts
|
|
4093
|
-
import { exec as
|
|
4094
|
-
import { relative as
|
|
4101
|
+
import { exec as exec3, execSync as execSync5 } from "node:child_process";
|
|
4102
|
+
import { relative as relative4 } from "node:path";
|
|
4095
4103
|
import { IMPLICIT_DEFAULT_RELEASE_GROUP } from "nx/src/command-line/release/config/config";
|
|
4096
4104
|
import {
|
|
4097
4105
|
getFirstGitCommit,
|
|
@@ -4482,11 +4490,11 @@ import { retrieveProjectConfigurationsWithoutPluginInference } from "nx/src/proj
|
|
|
4482
4490
|
// ../workspace-tools/src/utils/lock-file.ts
|
|
4483
4491
|
import {
|
|
4484
4492
|
output as output2,
|
|
4485
|
-
readJsonFile,
|
|
4493
|
+
readJsonFile as readJsonFile2,
|
|
4486
4494
|
workspaceRoot as workspaceRoot2
|
|
4487
4495
|
} from "@nx/devkit";
|
|
4488
|
-
import { existsSync as
|
|
4489
|
-
import { join as
|
|
4496
|
+
import { existsSync as existsSync9 } from "node:fs";
|
|
4497
|
+
import { join as join5 } from "node:path";
|
|
4490
4498
|
import {
|
|
4491
4499
|
getNpmLockfileDependencies,
|
|
4492
4500
|
getNpmLockfileNodes
|
|
@@ -4502,22 +4510,22 @@ import {
|
|
|
4502
4510
|
var YARN_LOCK_FILE = "yarn.lock";
|
|
4503
4511
|
var NPM_LOCK_FILE = "package-lock.json";
|
|
4504
4512
|
var PNPM_LOCK_FILE = "pnpm-lock.yaml";
|
|
4505
|
-
var YARN_LOCK_PATH =
|
|
4506
|
-
var NPM_LOCK_PATH =
|
|
4507
|
-
var PNPM_LOCK_PATH =
|
|
4513
|
+
var YARN_LOCK_PATH = join5(workspaceRoot2, YARN_LOCK_FILE);
|
|
4514
|
+
var NPM_LOCK_PATH = join5(workspaceRoot2, NPM_LOCK_FILE);
|
|
4515
|
+
var PNPM_LOCK_PATH = join5(workspaceRoot2, PNPM_LOCK_FILE);
|
|
4508
4516
|
|
|
4509
4517
|
// ../workspace-tools/src/utils/package-helpers.ts
|
|
4510
4518
|
import {
|
|
4511
4519
|
joinPathFragments as joinPathFragments6,
|
|
4512
|
-
readJsonFile as
|
|
4520
|
+
readJsonFile as readJsonFile3
|
|
4513
4521
|
} from "@nx/devkit";
|
|
4514
|
-
import { existsSync as
|
|
4522
|
+
import { existsSync as existsSync10 } from "node:fs";
|
|
4515
4523
|
|
|
4516
4524
|
// ../workspace-tools/src/utils/plugin-helpers.ts
|
|
4517
|
-
import { readJsonFile as
|
|
4525
|
+
import { readJsonFile as readJsonFile4 } from "@nx/devkit";
|
|
4518
4526
|
import defu6 from "defu";
|
|
4519
|
-
import { existsSync as
|
|
4520
|
-
import { dirname, join as
|
|
4527
|
+
import { existsSync as existsSync11 } from "node:fs";
|
|
4528
|
+
import { dirname, join as join6 } from "node:path";
|
|
4521
4529
|
|
|
4522
4530
|
// ../workspace-tools/src/utils/typia-transform.ts
|
|
4523
4531
|
import transform2 from "typia/lib/transform";
|
|
@@ -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 _chunkDQF4ETOOjs = require('./chunk-DQF4ETOO.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 _chunkDQF4ETOOjs.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
|
+
_chunkDQF4ETOOjs.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 _chunkQ4CKWHPMjs = require('./chunk-Q4CKWHPM.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/refresh/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkQ4CKWHPMjs.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 _chunkQ4CKWHPMjs = require('./chunk-Q4CKWHPM.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/config/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkQ4CKWHPMjs.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 _chunkQ4CKWHPMjs = require('./chunk-Q4CKWHPM.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/preview/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkQ4CKWHPMjs.withPulumiExecutor.call(void 0,
|
|
7
7
|
"preview",
|
|
8
8
|
(options) => [
|
|
9
9
|
options.stack && `--stack=${options.stack}`,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkQ4CKWHPMjs = require('./chunk-Q4CKWHPM.js');
|
|
4
4
|
|
|
5
5
|
// src/executors/up/executor.ts
|
|
6
|
-
var executor_default =
|
|
6
|
+
var executor_default = _chunkQ4CKWHPMjs.withPulumiExecutor.call(void 0, "up", (options) => [
|
|
7
7
|
"--suppress-progress",
|
|
8
8
|
options.stack && `--stack=${options.stack}`,
|
|
9
9
|
options.skipPreview && "--skip-preview",
|
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-FLSGBXS4.js');
|
|
3
|
+
require('./chunk-X6FOFN6M.js');
|
|
4
|
+
require('./chunk-TDUXEEJE.js');
|
|
5
|
+
require('./chunk-YEORYOVK.js');
|
|
6
|
+
require('./chunk-UFAAW3EP.js');
|
|
7
|
+
require('./chunk-Q4CKWHPM.js');
|
|
8
|
+
require('./chunk-DQF4ETOO.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-
|
|
2
|
+
import "./chunk-YO5I6TUI.mjs";
|
|
3
|
+
import "./chunk-2DGPOHPV.mjs";
|
|
4
|
+
import "./chunk-EX7FIDME.mjs";
|
|
5
|
+
import "./chunk-IOQCO27P.mjs";
|
|
6
|
+
import "./chunk-2WOVRK7D.mjs";
|
|
7
|
+
import "./chunk-UIUSAJII.mjs";
|
|
8
|
+
import "./chunk-PJUV5DSE.mjs";
|
|
9
9
|
import "./chunk-IEZKYJSF.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 _chunkFPC2C44Gjs = require('./chunk-FPC2C44G.js');
|
|
5
5
|
require('./chunk-HUKXHFCA.js');
|
|
6
|
-
require('./chunk-
|
|
6
|
+
require('./chunk-DQF4ETOO.js');
|
|
7
7
|
require('./chunk-3RG5ZIWI.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.initGeneratorFn =
|
|
10
|
+
exports.initGeneratorFn = _chunkFPC2C44Gjs.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-XGW62IC4.mjs";
|
|
5
5
|
import "./chunk-KPFHCT4A.mjs";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-PJUV5DSE.mjs";
|
|
7
7
|
import "./chunk-IEZKYJSF.mjs";
|
|
8
8
|
export {
|
|
9
9
|
initGeneratorFn
|
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-FLSGBXS4.js');
|
|
3
|
+
require('./chunk-X6FOFN6M.js');
|
|
4
|
+
require('./chunk-TDUXEEJE.js');
|
|
5
|
+
require('./chunk-YEORYOVK.js');
|
|
6
6
|
require('./chunk-N2YKXZ5R.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkFPC2C44Gjs = require('./chunk-FPC2C44G.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-UFAAW3EP.js');
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
19
|
-
require('./chunk-
|
|
18
|
+
var _chunkQ4CKWHPMjs = require('./chunk-Q4CKWHPM.js');
|
|
19
|
+
require('./chunk-DQF4ETOO.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 = _chunkFPC2C44Gjs.initGeneratorFn; exports.withPulumiExecutor = _chunkQ4CKWHPMjs.withPulumiExecutor;
|
package/dist/index.mjs
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import "./chunk-UV4HQO3Y.mjs";
|
|
2
|
-
import "./chunk-
|
|
3
|
-
import "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-YO5I6TUI.mjs";
|
|
3
|
+
import "./chunk-2DGPOHPV.mjs";
|
|
4
|
+
import "./chunk-EX7FIDME.mjs";
|
|
5
|
+
import "./chunk-IOQCO27P.mjs";
|
|
6
6
|
import "./chunk-23KFTIT2.mjs";
|
|
7
7
|
import {
|
|
8
8
|
initGeneratorFn
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-XGW62IC4.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-2WOVRK7D.mjs";
|
|
16
16
|
import {
|
|
17
17
|
withPulumiExecutor
|
|
18
|
-
} from "./chunk-
|
|
19
|
-
import "./chunk-
|
|
18
|
+
} from "./chunk-UIUSAJII.mjs";
|
|
19
|
+
import "./chunk-PJUV5DSE.mjs";
|
|
20
20
|
import "./chunk-IEZKYJSF.mjs";
|
|
21
21
|
export {
|
|
22
22
|
Provider,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../../chunk-
|
|
3
|
+
var _chunkQ4CKWHPMjs = require('../../chunk-Q4CKWHPM.js');
|
|
4
|
+
require('../../chunk-DQF4ETOO.js');
|
|
5
5
|
require('../../chunk-3RG5ZIWI.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
exports.withPulumiExecutor =
|
|
8
|
+
exports.withPulumiExecutor = _chunkQ4CKWHPMjs.withPulumiExecutor;
|
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 _chunkQ4CKWHPMjs = require('../../chunk-Q4CKWHPM.js');
|
|
9
|
+
require('../../chunk-DQF4ETOO.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 = _chunkQ4CKWHPMjs.withPulumiExecutor;
|
package/dist/src/base/index.mjs
CHANGED
|
@@ -5,8 +5,8 @@ import {
|
|
|
5
5
|
} from "../../chunk-KPFHCT4A.mjs";
|
|
6
6
|
import {
|
|
7
7
|
withPulumiExecutor
|
|
8
|
-
} from "../../chunk-
|
|
9
|
-
import "../../chunk-
|
|
8
|
+
} from "../../chunk-UIUSAJII.mjs";
|
|
9
|
+
import "../../chunk-PJUV5DSE.mjs";
|
|
10
10
|
import "../../chunk-IEZKYJSF.mjs";
|
|
11
11
|
export {
|
|
12
12
|
Provider,
|
|
@@ -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 _chunkUFAAW3EPjs = require('../../../chunk-UFAAW3EP.js');
|
|
4
|
+
require('../../../chunk-Q4CKWHPM.js');
|
|
5
|
+
require('../../../chunk-DQF4ETOO.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkUFAAW3EPjs.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-2WOVRK7D.mjs";
|
|
4
|
+
import "../../../chunk-UIUSAJII.mjs";
|
|
5
|
+
import "../../../chunk-PJUV5DSE.mjs";
|
|
6
6
|
import "../../../chunk-IEZKYJSF.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|
|
@@ -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 _chunkFLSGBXS4js = require('../../../chunk-FLSGBXS4.js');
|
|
4
|
+
require('../../../chunk-Q4CKWHPM.js');
|
|
5
|
+
require('../../../chunk-DQF4ETOO.js');
|
|
6
6
|
require('../../../chunk-3RG5ZIWI.js');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = _chunkFLSGBXS4js.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-YO5I6TUI.mjs";
|
|
4
|
+
import "../../../chunk-UIUSAJII.mjs";
|
|
5
|
+
import "../../../chunk-PJUV5DSE.mjs";
|
|
6
6
|
import "../../../chunk-IEZKYJSF.mjs";
|
|
7
7
|
export {
|
|
8
8
|
executor_default as default
|