@storm-software/terraform-tools 0.1.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/CHANGELOG.md +12 -0
- package/LICENSE +201 -0
- package/README.md +431 -0
- package/executors.json +46 -0
- package/generators.json +14 -0
- package/index.js +4901 -0
- package/meta.json +1 -0
- package/package.json +69 -0
- package/packages/build-tools/src/build/index.d.ts +3 -0
- package/packages/build-tools/src/build/rolldown.d.ts +20 -0
- package/packages/build-tools/src/build/ts-build.d.ts +20 -0
- package/packages/build-tools/src/build/unbuild.d.ts +20 -0
- package/packages/build-tools/src/cli/index.d.ts +2 -0
- package/packages/build-tools/src/config/browser-config.d.ts +2 -0
- package/packages/build-tools/src/config/default-config.d.ts +2 -0
- package/packages/build-tools/src/config/get-config.d.ts +2 -0
- package/packages/build-tools/src/config/get-rolldown-config.d.ts +6 -0
- package/packages/build-tools/src/config/get-unbuild-config.d.ts +6 -0
- package/packages/build-tools/src/config/index.d.ts +7 -0
- package/packages/build-tools/src/config/neutral-config.d.ts +2 -0
- package/packages/build-tools/src/config/node-config.d.ts +3 -0
- package/packages/build-tools/src/index.d.ts +6 -0
- package/packages/build-tools/src/plugins/analyze-plugin.d.ts +4 -0
- package/packages/build-tools/src/plugins/index.d.ts +3 -0
- package/packages/build-tools/src/plugins/swc-plugin.d.ts +2 -0
- package/packages/build-tools/src/plugins/type-definitions.d.ts +7 -0
- package/packages/build-tools/src/types.d.ts +213 -0
- package/packages/build-tools/src/utils/apply-default-options.d.ts +6 -0
- package/packages/build-tools/src/utils/generate-package-json.d.ts +7 -0
- package/packages/build-tools/src/utils/get-entry-points.d.ts +3 -0
- package/packages/build-tools/src/utils/get-file-banner.d.ts +8 -0
- package/packages/build-tools/src/utils/get-project-deps.d.ts +5 -0
- package/packages/build-tools/src/utils/index.d.ts +7 -0
- package/packages/build-tools/src/utils/out-extension.d.ts +6 -0
- package/packages/build-tools/src/utils/run-tsup-build.d.ts +3 -0
- package/packages/build-tools/src/utils/task-graph.d.ts +6 -0
- package/packages/config/src/define-config.d.ts +172 -0
- package/packages/config/src/index.d.ts +11 -0
- package/packages/config/src/schema.d.ts +1909 -0
- package/packages/config/src/types.d.ts +23 -0
- package/packages/config-tools/src/config-file/get-config-file.d.ts +16 -0
- package/packages/config-tools/src/config-file/index.d.ts +1 -0
- package/packages/config-tools/src/create-storm-config.d.ts +26 -0
- package/packages/config-tools/src/env/get-env.d.ts +15 -0
- package/packages/config-tools/src/env/index.d.ts +2 -0
- package/packages/config-tools/src/env/set-env.d.ts +14 -0
- package/packages/config-tools/src/index.d.ts +13 -0
- package/packages/config-tools/src/types.d.ts +33 -0
- package/packages/config-tools/src/utilities/apply-workspace-tokens.d.ts +4 -0
- package/packages/config-tools/src/utilities/chalk.d.ts +23 -0
- package/packages/config-tools/src/utilities/correct-paths.d.ts +1 -0
- package/packages/config-tools/src/utilities/file-path-utils.d.ts +2 -0
- package/packages/config-tools/src/utilities/find-up.d.ts +4 -0
- package/packages/config-tools/src/utilities/find-workspace-root.d.ts +14 -0
- package/packages/config-tools/src/utilities/get-default-config.d.ts +15 -0
- package/packages/config-tools/src/utilities/get-log-level.d.ts +15 -0
- package/packages/config-tools/src/utilities/index.d.ts +10 -0
- package/packages/config-tools/src/utilities/logger.d.ts +74 -0
- package/packages/config-tools/src/utilities/process-handler.d.ts +4 -0
- package/packages/config-tools/src/utilities/run.d.ts +18 -0
- package/packages/terraform-tools/index.d.ts +1 -0
- package/packages/terraform-tools/src/base/base-executor.d.ts +24 -0
- package/packages/terraform-tools/src/base/index.d.ts +1 -0
- package/packages/terraform-tools/src/executors/apply/executor.d.ts +4 -0
- package/packages/terraform-tools/src/executors/destroy/executor.d.ts +4 -0
- package/packages/terraform-tools/src/executors/index.d.ts +4 -0
- package/packages/terraform-tools/src/executors/output/executor.d.ts +5 -0
- package/packages/terraform-tools/src/executors/plan/executor.d.ts +4 -0
- package/packages/terraform-tools/src/generators/index.d.ts +1 -0
- package/packages/terraform-tools/src/generators/init/init.d.ts +4 -0
- package/packages/terraform-tools/src/index.d.ts +3 -0
- package/packages/workspace-tools/index.d.ts +32 -0
- package/packages/workspace-tools/src/base/base-executor.d.ts +7 -0
- package/packages/workspace-tools/src/base/base-generator.d.ts +4 -0
- package/packages/workspace-tools/src/base/index.d.ts +3 -0
- package/packages/workspace-tools/src/base/typescript-library-generator.d.ts +8 -0
- package/packages/workspace-tools/src/executors/cargo-publish/executor.d.ts +6 -0
- package/packages/workspace-tools/src/executors/clean-package/constants.d.ts +4 -0
- package/packages/workspace-tools/src/executors/clean-package/executor.d.ts +8 -0
- package/packages/workspace-tools/src/executors/clean-package/types.d.ts +8 -0
- package/packages/workspace-tools/src/executors/clean-package/utils.d.ts +4 -0
- package/packages/workspace-tools/src/executors/npm-publish/executor.d.ts +6 -0
- package/packages/workspace-tools/src/executors/rolldown/executor.d.ts +9 -0
- package/packages/workspace-tools/src/executors/size-limit/executor.d.ts +8 -0
- package/packages/workspace-tools/src/executors/tsup/executor.d.ts +8 -0
- package/packages/workspace-tools/src/executors/tsup-browser/executor.d.ts +7 -0
- package/packages/workspace-tools/src/executors/tsup-neutral/executor.d.ts +8 -0
- package/packages/workspace-tools/src/executors/tsup-node/executor.d.ts +7 -0
- package/packages/workspace-tools/src/executors/typia/executor.d.ts +8 -0
- package/packages/workspace-tools/src/executors/unbuild/executor.d.ts +9 -0
- package/packages/workspace-tools/src/generators/config-schema/generator.d.ts +13 -0
- package/packages/workspace-tools/src/generators/init/init.d.ts +4 -0
- package/packages/workspace-tools/src/generators/node-library/generator.d.ts +5 -0
- package/packages/workspace-tools/src/generators/preset/generator.d.ts +5 -0
- package/packages/workspace-tools/src/generators/release-version/generator.d.ts +13 -0
- package/packages/workspace-tools/src/utils/apply-workspace-tokens.d.ts +8 -0
- package/packages/workspace-tools/src/utils/cargo.d.ts +26 -0
- package/packages/workspace-tools/src/utils/create-cli-options.d.ts +1 -0
- package/packages/workspace-tools/src/utils/get-project-configurations.d.ts +13 -0
- package/packages/workspace-tools/src/utils/index.d.ts +9 -0
- package/packages/workspace-tools/src/utils/lock-file.d.ts +23 -0
- package/packages/workspace-tools/src/utils/project-tags.d.ts +30 -0
- package/packages/workspace-tools/src/utils/toml.d.ts +167 -0
- package/packages/workspace-tools/src/utils/typia-transform.d.ts +2 -0
- package/packages/workspace-tools/src/utils/versions.d.ts +18 -0
- package/src/executors/apply/executor.js +4875 -0
- package/src/executors/apply/schema.d.ts +5 -0
- package/src/executors/apply/schema.json +21 -0
- package/src/executors/destroy/executor.js +4875 -0
- package/src/executors/destroy/schema.d.ts +5 -0
- package/src/executors/destroy/schema.json +16 -0
- package/src/executors/output/executor.js +4875 -0
- package/src/executors/output/schema.d.ts +1 -0
- package/src/executors/output/schema.json +10 -0
- package/src/executors/plan/executor.js +4875 -0
- package/src/executors/plan/schema.d.ts +5 -0
- package/src/executors/plan/schema.json +16 -0
- package/src/generators/init/init.js +39 -0
- package/src/generators/init/schema.d.ts +3 -0
- package/src/generators/init/schema.json +16 -0
package/meta.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"inputs":{"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/old.js":{"bytes":8542,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/index.js":{"bytes":1308,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/old.js","kind":"require-call","original":"./old.js"}],"format":"cjs"},"node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map/index.js":{"bytes":345,"imports":[],"format":"cjs"},"node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js":{"bytes":1219,"imports":[],"format":"cjs"},"node_modules/.pnpm/brace-expansion@1.1.11/node_modules/brace-expansion/index.js":{"bytes":4792,"imports":[{"path":"node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map/index.js","kind":"require-call","original":"concat-map"},{"path":"node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js","kind":"require-call","original":"balanced-match"}],"format":"cjs"},"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js":{"bytes":26266,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"node_modules/.pnpm/brace-expansion@1.1.11/node_modules/brace-expansion/index.js","kind":"require-call","original":"brace-expansion"}],"format":"cjs"},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytes":753,"imports":[],"format":"cjs"},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js":{"bytes":250,"imports":[{"path":"util","kind":"require-call","external":true},{"path":"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js","kind":"require-call","original":"./inherits_browser.js"}],"format":"cjs"},"node_modules/.pnpm/path-is-absolute@1.0.1/node_modules/path-is-absolute/index.js":{"bytes":611,"imports":[],"format":"cjs"},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/common.js":{"bytes":6149,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js","kind":"require-call","original":"minimatch"},{"path":"node_modules/.pnpm/path-is-absolute@1.0.1/node_modules/path-is-absolute/index.js","kind":"require-call","original":"path-is-absolute"}],"format":"cjs"},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js":{"bytes":12020,"imports":[{"path":"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/index.js","kind":"require-call","original":"fs.realpath"},{"path":"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js","kind":"require-call","original":"minimatch"},{"path":"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js","kind":"require-call","original":"./glob.js"},{"path":"util","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"assert","kind":"require-call","external":true},{"path":"node_modules/.pnpm/path-is-absolute@1.0.1/node_modules/path-is-absolute/index.js","kind":"require-call","original":"path-is-absolute"},{"path":"node_modules/.pnpm/glob@7.2.3/node_modules/glob/common.js","kind":"require-call","original":"./common.js"}],"format":"cjs"},"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js":{"bytes":905,"imports":[],"format":"cjs"},"node_modules/.pnpm/once@1.4.0/node_modules/once/once.js":{"bytes":935,"imports":[{"path":"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js","kind":"require-call","original":"wrappy"}],"format":"cjs"},"node_modules/.pnpm/inflight@1.0.6/node_modules/inflight/inflight.js":{"bytes":1365,"imports":[{"path":"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js","kind":"require-call","original":"wrappy"},{"path":"node_modules/.pnpm/once@1.4.0/node_modules/once/once.js","kind":"require-call","original":"once"}],"format":"cjs"},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js":{"bytes":19445,"imports":[{"path":"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/index.js","kind":"require-call","original":"fs.realpath"},{"path":"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js","kind":"require-call","original":"minimatch"},{"path":"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js","kind":"require-call","original":"inherits"},{"path":"events","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"assert","kind":"require-call","external":true},{"path":"node_modules/.pnpm/path-is-absolute@1.0.1/node_modules/path-is-absolute/index.js","kind":"require-call","original":"path-is-absolute"},{"path":"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js","kind":"require-call","original":"./sync.js"},{"path":"node_modules/.pnpm/glob@7.2.3/node_modules/glob/common.js","kind":"require-call","original":"./common.js"},{"path":"node_modules/.pnpm/inflight@1.0.6/node_modules/inflight/inflight.js","kind":"require-call","original":"inflight"},{"path":"util","kind":"require-call","external":true},{"path":"node_modules/.pnpm/once@1.4.0/node_modules/once/once.js","kind":"require-call","original":"once"}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js":{"bytes":13609,"imports":[{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js","kind":"require-call","original":"glob"},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/shell.js","kind":"require-call","original":".."}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/commands.js":{"bytes":282,"imports":[],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/error.js":{"bytes":451,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cat.js":{"bytes":1840,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cd.js":{"bytes":929,"imports":[{"path":"os","kind":"require-call","external":true},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/chmod.js":{"bytes":6824,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cp.js":{"bytes":9739,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/dirs.js":{"bytes":5698,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cd.js","kind":"require-call","original":"./cd"},{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/echo.js":{"bytes":1384,"imports":[{"path":"util","kind":"require-call","external":true},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/exec-child.js":{"bytes":947,"imports":[{"path":"child_process","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tempdir.js":{"bytes":2253,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pwd.js":{"bytes":278,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/exec.js":{"bytes":7395,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tempdir.js","kind":"require-call","original":"./tempdir"},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pwd.js","kind":"require-call","original":"./pwd"},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ls.js":{"bytes":4346,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js","kind":"require-call","original":"glob"}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/find.js":{"bytes":1553,"imports":[{"path":"path","kind":"require-call","external":true},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ls.js","kind":"require-call","original":"./ls"}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/grep.js":{"bytes":1832,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/head.js":{"bytes":2684,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ln.js":{"bytes":1886,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/mkdir.js":{"bytes":2603,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/rm.js":{"bytes":5618,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/mv.js":{"bytes":3576,"imports":[{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cp.js","kind":"require-call","original":"./cp"},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/rm.js","kind":"require-call","original":"./rm"}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/popd.js":{"bytes":15,"imports":[]},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pushd.js":{"bytes":15,"imports":[]},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/sed.js":{"bytes":2258,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/set.js":{"bytes":1371,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/sort.js":{"bytes":2558,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tail.js":{"bytes":1930,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/test.js":{"bytes":2079,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/to.js":{"bytes":963,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/toEnd.js":{"bytes":921,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/touch.js":{"bytes":2716,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/uniq.js":{"bytes":2559,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/which.js":{"bytes":3573,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./common"},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true}],"format":"cjs"},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/shell.js":{"bytes":3472,"imports":[{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js","kind":"require-call","original":"./src/common"},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/commands.js","kind":"require-call","original":"./commands"},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/error.js","kind":"require-call","original":"./src/error"},{"path":"./src/**/*","kind":"import-statement","external":true}],"format":"cjs"},"packages/terraform-tools/src/base/base-executor.ts":{"bytes":3782,"imports":[{"path":"@storm-software/config","kind":"import-statement","external":true},{"path":"@storm-software/config-tools","kind":"import-statement","external":true},{"path":"@storm-software/workspace-tools","kind":"import-statement","external":true},{"path":"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/shell.js","kind":"import-statement","original":"shelljs"}],"format":"esm"},"packages/terraform-tools/src/base/index.ts":{"bytes":33,"imports":[{"path":"packages/terraform-tools/src/base/base-executor.ts","kind":"import-statement","original":"./base-executor"}],"format":"esm"},"packages/terraform-tools/src/executors/apply/executor.ts":{"bytes":183,"imports":[{"path":"packages/terraform-tools/src/base/base-executor.ts","kind":"import-statement","original":"../../base/base-executor"},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"packages/terraform-tools/src/executors/destroy/executor.ts":{"bytes":189,"imports":[{"path":"packages/terraform-tools/src/base/base-executor.ts","kind":"import-statement","original":"../../base/base-executor"},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"packages/terraform-tools/src/executors/output/executor.ts":{"bytes":186,"imports":[{"path":"packages/terraform-tools/src/base/base-executor.ts","kind":"import-statement","original":"../../base/base-executor"},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"packages/terraform-tools/src/executors/plan/executor.ts":{"bytes":180,"imports":[{"path":"packages/terraform-tools/src/base/base-executor.ts","kind":"import-statement","original":"../../base/base-executor"},{"path":"./schema","kind":"import-statement","external":true}],"format":"esm"},"packages/terraform-tools/src/executors/index.ts":{"bytes":138,"imports":[{"path":"packages/terraform-tools/src/executors/apply/executor.ts","kind":"import-statement","original":"./apply/executor"},{"path":"packages/terraform-tools/src/executors/destroy/executor.ts","kind":"import-statement","original":"./destroy/executor"},{"path":"packages/terraform-tools/src/executors/output/executor.ts","kind":"import-statement","original":"./output/executor"},{"path":"packages/terraform-tools/src/executors/plan/executor.ts","kind":"import-statement","original":"./plan/executor"}],"format":"esm"},"packages/terraform-tools/src/generators/init/init.ts":{"bytes":405,"imports":[{"path":"@nx/devkit","kind":"import-statement","external":true},{"path":"@storm-software/workspace-tools","kind":"import-statement","external":true}],"format":"esm"},"packages/terraform-tools/src/generators/index.ts":{"bytes":29,"imports":[{"path":"packages/terraform-tools/src/generators/init/init.ts","kind":"import-statement","original":"./init/init"}],"format":"esm"},"packages/terraform-tools/src/index.ts":{"bytes":83,"imports":[{"path":"packages/terraform-tools/src/base/index.ts","kind":"import-statement","original":"./base"},{"path":"packages/terraform-tools/src/executors/index.ts","kind":"import-statement","original":"./executors"},{"path":"packages/terraform-tools/src/generators/index.ts","kind":"import-statement","original":"./generators"}],"format":"esm"},"packages/terraform-tools/index.ts":{"bytes":23,"imports":[{"path":"packages/terraform-tools/src/index.ts","kind":"import-statement","original":"./src"}],"format":"esm"}},"outputs":{"dist/packages/terraform-tools/index.js":{"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"assert","kind":"require-call","external":true},{"path":"events","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"assert","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"@storm-software/config-tools","kind":"require-call","external":true},{"path":"@storm-software/workspace-tools","kind":"require-call","external":true},{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@storm-software/workspace-tools","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/terraform-tools/index.ts","inputs":{"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/old.js":{"bytesInOutput":6181},"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/index.js":{"bytesInOutput":1645},"node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map/index.js":{"bytesInOutput":509},"node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js":{"bytesInOutput":1569},"node_modules/.pnpm/brace-expansion@1.1.11/node_modules/brace-expansion/index.js":{"bytesInOutput":4549},"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js":{"bytesInOutput":18050},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytesInOutput":932},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js":{"bytesInOutput":363},"node_modules/.pnpm/path-is-absolute@1.0.1/node_modules/path-is-absolute/index.js":{"bytesInOutput":699},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/common.js":{"bytesInOutput":6400},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js":{"bytesInOutput":11035},"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js":{"bytesInOutput":866},"node_modules/.pnpm/once@1.4.0/node_modules/once/once.js":{"bytesInOutput":1220},"node_modules/.pnpm/inflight@1.0.6/node_modules/inflight/inflight.js":{"bytesInOutput":1183},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js":{"bytesInOutput":16966},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js":{"bytesInOutput":10762},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cat.js":{"bytesInOutput":1406},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cd.js":{"bytesInOutput":914},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/chmod.js":{"bytesInOutput":5697},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cp.js":{"bytesInOutput":7724},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/dirs.js":{"bytesInOutput":3428},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/echo.js":{"bytesInOutput":893},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/error.js":{"bytesInOutput":260},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/exec-child.js":{"bytesInOutput":1203},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tempdir.js":{"bytesInOutput":1576},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pwd.js":{"bytesInOutput":386},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/exec.js":{"bytesInOutput":4568},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ls.js":{"bytesInOutput":2832},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/find.js":{"bytesInOutput":1133},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/grep.js":{"bytesInOutput":1538},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/head.js":{"bytesInOutput":2579},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ln.js":{"bytesInOutput":1891},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/mkdir.js":{"bytesInOutput":2128},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/rm.js":{"bytesInOutput":4087},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/mv.js":{"bytesInOutput":2739},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/popd.js":{"bytesInOutput":114},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pushd.js":{"bytesInOutput":116},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/sed.js":{"bytesInOutput":1636},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/set.js":{"bytesInOutput":1035},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/sort.js":{"bytesInOutput":2177},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tail.js":{"bytesInOutput":1808},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/test.js":{"bytesInOutput":1509},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/to.js":{"bytesInOutput":790},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/toEnd.js":{"bytesInOutput":810},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/touch.js":{"bytesInOutput":1911},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/uniq.js":{"bytesInOutput":2073},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/which.js":{"bytesInOutput":2535},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/commands.js":{"bytesInOutput":533},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/shell.js":{"bytesInOutput":459},"packages/terraform-tools/index.ts":{"bytesInOutput":221},"packages/terraform-tools/src/base/base-executor.ts":{"bytesInOutput":2688},"packages/terraform-tools/src/base/index.ts":{"bytesInOutput":0},"packages/terraform-tools/src/index.ts":{"bytesInOutput":0},"packages/terraform-tools/src/executors/apply/executor.ts":{"bytesInOutput":55},"packages/terraform-tools/src/executors/index.ts":{"bytesInOutput":0},"packages/terraform-tools/src/executors/destroy/executor.ts":{"bytesInOutput":58},"packages/terraform-tools/src/executors/output/executor.ts":{"bytesInOutput":57},"packages/terraform-tools/src/executors/plan/executor.ts":{"bytesInOutput":55},"packages/terraform-tools/src/generators/init/init.ts":{"bytesInOutput":332},"packages/terraform-tools/src/generators/index.ts":{"bytesInOutput":0}},"bytes":158381},"dist/packages/terraform-tools/src/executors/apply/executor.js":{"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"assert","kind":"require-call","external":true},{"path":"events","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"assert","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"@storm-software/config-tools","kind":"require-call","external":true},{"path":"@storm-software/workspace-tools","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/terraform-tools/src/executors/apply/executor.ts","inputs":{"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/old.js":{"bytesInOutput":6181},"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/index.js":{"bytesInOutput":1645},"node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map/index.js":{"bytesInOutput":509},"node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js":{"bytesInOutput":1569},"node_modules/.pnpm/brace-expansion@1.1.11/node_modules/brace-expansion/index.js":{"bytesInOutput":4549},"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js":{"bytesInOutput":18050},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytesInOutput":932},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js":{"bytesInOutput":363},"node_modules/.pnpm/path-is-absolute@1.0.1/node_modules/path-is-absolute/index.js":{"bytesInOutput":699},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/common.js":{"bytesInOutput":6400},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js":{"bytesInOutput":11035},"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js":{"bytesInOutput":866},"node_modules/.pnpm/once@1.4.0/node_modules/once/once.js":{"bytesInOutput":1220},"node_modules/.pnpm/inflight@1.0.6/node_modules/inflight/inflight.js":{"bytesInOutput":1183},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js":{"bytesInOutput":16966},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js":{"bytesInOutput":10762},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cat.js":{"bytesInOutput":1406},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cd.js":{"bytesInOutput":914},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/chmod.js":{"bytesInOutput":5697},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cp.js":{"bytesInOutput":7724},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/dirs.js":{"bytesInOutput":3428},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/echo.js":{"bytesInOutput":893},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/error.js":{"bytesInOutput":260},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/exec-child.js":{"bytesInOutput":1203},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tempdir.js":{"bytesInOutput":1576},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pwd.js":{"bytesInOutput":386},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/exec.js":{"bytesInOutput":4568},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ls.js":{"bytesInOutput":2832},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/find.js":{"bytesInOutput":1133},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/grep.js":{"bytesInOutput":1538},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/head.js":{"bytesInOutput":2579},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ln.js":{"bytesInOutput":1891},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/mkdir.js":{"bytesInOutput":2128},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/rm.js":{"bytesInOutput":4087},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/mv.js":{"bytesInOutput":2739},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/popd.js":{"bytesInOutput":114},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pushd.js":{"bytesInOutput":116},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/sed.js":{"bytesInOutput":1636},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/set.js":{"bytesInOutput":1035},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/sort.js":{"bytesInOutput":2177},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tail.js":{"bytesInOutput":1808},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/test.js":{"bytesInOutput":1509},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/to.js":{"bytesInOutput":790},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/toEnd.js":{"bytesInOutput":810},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/touch.js":{"bytesInOutput":1911},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/uniq.js":{"bytesInOutput":2073},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/which.js":{"bytesInOutput":2535},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/commands.js":{"bytesInOutput":533},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/shell.js":{"bytesInOutput":459},"packages/terraform-tools/src/executors/apply/executor.ts":{"bytesInOutput":198},"packages/terraform-tools/src/base/base-executor.ts":{"bytesInOutput":2688}},"bytes":157450},"dist/packages/terraform-tools/src/executors/destroy/executor.js":{"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"assert","kind":"require-call","external":true},{"path":"events","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"assert","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"@storm-software/config-tools","kind":"require-call","external":true},{"path":"@storm-software/workspace-tools","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/terraform-tools/src/executors/destroy/executor.ts","inputs":{"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/old.js":{"bytesInOutput":6181},"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/index.js":{"bytesInOutput":1645},"node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map/index.js":{"bytesInOutput":509},"node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js":{"bytesInOutput":1569},"node_modules/.pnpm/brace-expansion@1.1.11/node_modules/brace-expansion/index.js":{"bytesInOutput":4549},"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js":{"bytesInOutput":18050},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytesInOutput":932},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js":{"bytesInOutput":363},"node_modules/.pnpm/path-is-absolute@1.0.1/node_modules/path-is-absolute/index.js":{"bytesInOutput":699},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/common.js":{"bytesInOutput":6400},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js":{"bytesInOutput":11035},"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js":{"bytesInOutput":866},"node_modules/.pnpm/once@1.4.0/node_modules/once/once.js":{"bytesInOutput":1220},"node_modules/.pnpm/inflight@1.0.6/node_modules/inflight/inflight.js":{"bytesInOutput":1183},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js":{"bytesInOutput":16966},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js":{"bytesInOutput":10762},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cat.js":{"bytesInOutput":1406},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cd.js":{"bytesInOutput":914},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/chmod.js":{"bytesInOutput":5697},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cp.js":{"bytesInOutput":7724},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/dirs.js":{"bytesInOutput":3428},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/echo.js":{"bytesInOutput":893},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/error.js":{"bytesInOutput":260},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/exec-child.js":{"bytesInOutput":1203},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tempdir.js":{"bytesInOutput":1576},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pwd.js":{"bytesInOutput":386},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/exec.js":{"bytesInOutput":4568},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ls.js":{"bytesInOutput":2832},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/find.js":{"bytesInOutput":1133},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/grep.js":{"bytesInOutput":1538},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/head.js":{"bytesInOutput":2579},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ln.js":{"bytesInOutput":1891},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/mkdir.js":{"bytesInOutput":2128},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/rm.js":{"bytesInOutput":4087},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/mv.js":{"bytesInOutput":2739},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/popd.js":{"bytesInOutput":114},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pushd.js":{"bytesInOutput":116},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/sed.js":{"bytesInOutput":1636},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/set.js":{"bytesInOutput":1035},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/sort.js":{"bytesInOutput":2177},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tail.js":{"bytesInOutput":1808},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/test.js":{"bytesInOutput":1509},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/to.js":{"bytesInOutput":790},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/toEnd.js":{"bytesInOutput":810},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/touch.js":{"bytesInOutput":1911},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/uniq.js":{"bytesInOutput":2073},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/which.js":{"bytesInOutput":2535},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/commands.js":{"bytesInOutput":533},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/shell.js":{"bytesInOutput":459},"packages/terraform-tools/src/executors/destroy/executor.ts":{"bytesInOutput":200},"packages/terraform-tools/src/base/base-executor.ts":{"bytesInOutput":2688}},"bytes":157456},"dist/packages/terraform-tools/src/executors/output/executor.js":{"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"assert","kind":"require-call","external":true},{"path":"events","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"assert","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"@storm-software/config-tools","kind":"require-call","external":true},{"path":"@storm-software/workspace-tools","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/terraform-tools/src/executors/output/executor.ts","inputs":{"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/old.js":{"bytesInOutput":6181},"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/index.js":{"bytesInOutput":1645},"node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map/index.js":{"bytesInOutput":509},"node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js":{"bytesInOutput":1569},"node_modules/.pnpm/brace-expansion@1.1.11/node_modules/brace-expansion/index.js":{"bytesInOutput":4549},"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js":{"bytesInOutput":18050},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytesInOutput":932},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js":{"bytesInOutput":363},"node_modules/.pnpm/path-is-absolute@1.0.1/node_modules/path-is-absolute/index.js":{"bytesInOutput":699},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/common.js":{"bytesInOutput":6400},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js":{"bytesInOutput":11035},"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js":{"bytesInOutput":866},"node_modules/.pnpm/once@1.4.0/node_modules/once/once.js":{"bytesInOutput":1220},"node_modules/.pnpm/inflight@1.0.6/node_modules/inflight/inflight.js":{"bytesInOutput":1183},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js":{"bytesInOutput":16966},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js":{"bytesInOutput":10762},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cat.js":{"bytesInOutput":1406},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cd.js":{"bytesInOutput":914},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/chmod.js":{"bytesInOutput":5697},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cp.js":{"bytesInOutput":7724},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/dirs.js":{"bytesInOutput":3428},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/echo.js":{"bytesInOutput":893},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/error.js":{"bytesInOutput":260},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/exec-child.js":{"bytesInOutput":1203},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tempdir.js":{"bytesInOutput":1576},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pwd.js":{"bytesInOutput":386},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/exec.js":{"bytesInOutput":4568},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ls.js":{"bytesInOutput":2832},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/find.js":{"bytesInOutput":1133},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/grep.js":{"bytesInOutput":1538},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/head.js":{"bytesInOutput":2579},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ln.js":{"bytesInOutput":1891},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/mkdir.js":{"bytesInOutput":2128},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/rm.js":{"bytesInOutput":4087},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/mv.js":{"bytesInOutput":2739},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/popd.js":{"bytesInOutput":114},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pushd.js":{"bytesInOutput":116},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/sed.js":{"bytesInOutput":1636},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/set.js":{"bytesInOutput":1035},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/sort.js":{"bytesInOutput":2177},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tail.js":{"bytesInOutput":1808},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/test.js":{"bytesInOutput":1509},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/to.js":{"bytesInOutput":790},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/toEnd.js":{"bytesInOutput":810},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/touch.js":{"bytesInOutput":1911},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/uniq.js":{"bytesInOutput":2073},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/which.js":{"bytesInOutput":2535},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/commands.js":{"bytesInOutput":533},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/shell.js":{"bytesInOutput":459},"packages/terraform-tools/src/executors/output/executor.ts":{"bytesInOutput":199},"packages/terraform-tools/src/base/base-executor.ts":{"bytesInOutput":2688}},"bytes":157453},"dist/packages/terraform-tools/src/executors/plan/executor.js":{"imports":[{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"assert","kind":"require-call","external":true},{"path":"events","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"assert","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"util","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"os","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"child_process","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"fs","kind":"require-call","external":true},{"path":"path","kind":"require-call","external":true},{"path":"@storm-software/config-tools","kind":"require-call","external":true},{"path":"@storm-software/workspace-tools","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/terraform-tools/src/executors/plan/executor.ts","inputs":{"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/old.js":{"bytesInOutput":6181},"node_modules/.pnpm/fs.realpath@1.0.0/node_modules/fs.realpath/index.js":{"bytesInOutput":1645},"node_modules/.pnpm/concat-map@0.0.1/node_modules/concat-map/index.js":{"bytesInOutput":509},"node_modules/.pnpm/balanced-match@1.0.2/node_modules/balanced-match/index.js":{"bytesInOutput":1569},"node_modules/.pnpm/brace-expansion@1.1.11/node_modules/brace-expansion/index.js":{"bytesInOutput":4549},"node_modules/.pnpm/minimatch@3.1.2/node_modules/minimatch/minimatch.js":{"bytesInOutput":18050},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js":{"bytesInOutput":932},"node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits.js":{"bytesInOutput":363},"node_modules/.pnpm/path-is-absolute@1.0.1/node_modules/path-is-absolute/index.js":{"bytesInOutput":699},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/common.js":{"bytesInOutput":6400},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/sync.js":{"bytesInOutput":11035},"node_modules/.pnpm/wrappy@1.0.2/node_modules/wrappy/wrappy.js":{"bytesInOutput":866},"node_modules/.pnpm/once@1.4.0/node_modules/once/once.js":{"bytesInOutput":1220},"node_modules/.pnpm/inflight@1.0.6/node_modules/inflight/inflight.js":{"bytesInOutput":1183},"node_modules/.pnpm/glob@7.2.3/node_modules/glob/glob.js":{"bytesInOutput":16966},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/common.js":{"bytesInOutput":10762},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cat.js":{"bytesInOutput":1406},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cd.js":{"bytesInOutput":914},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/chmod.js":{"bytesInOutput":5697},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/cp.js":{"bytesInOutput":7724},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/dirs.js":{"bytesInOutput":3428},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/echo.js":{"bytesInOutput":893},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/error.js":{"bytesInOutput":260},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/exec-child.js":{"bytesInOutput":1203},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tempdir.js":{"bytesInOutput":1576},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pwd.js":{"bytesInOutput":386},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/exec.js":{"bytesInOutput":4568},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ls.js":{"bytesInOutput":2832},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/find.js":{"bytesInOutput":1133},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/grep.js":{"bytesInOutput":1538},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/head.js":{"bytesInOutput":2579},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/ln.js":{"bytesInOutput":1891},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/mkdir.js":{"bytesInOutput":2128},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/rm.js":{"bytesInOutput":4087},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/mv.js":{"bytesInOutput":2739},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/popd.js":{"bytesInOutput":114},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/pushd.js":{"bytesInOutput":116},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/sed.js":{"bytesInOutput":1636},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/set.js":{"bytesInOutput":1035},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/sort.js":{"bytesInOutput":2177},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/tail.js":{"bytesInOutput":1808},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/test.js":{"bytesInOutput":1509},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/to.js":{"bytesInOutput":790},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/toEnd.js":{"bytesInOutput":810},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/touch.js":{"bytesInOutput":1911},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/uniq.js":{"bytesInOutput":2073},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/src/which.js":{"bytesInOutput":2535},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/commands.js":{"bytesInOutput":533},"node_modules/.pnpm/shelljs@0.8.5/node_modules/shelljs/shell.js":{"bytesInOutput":459},"packages/terraform-tools/src/executors/plan/executor.ts":{"bytesInOutput":197},"packages/terraform-tools/src/base/base-executor.ts":{"bytesInOutput":2688}},"bytes":157447},"dist/packages/terraform-tools/src/generators/init/init.js":{"imports":[{"path":"@nx/devkit","kind":"require-call","external":true},{"path":"@storm-software/workspace-tools","kind":"require-call","external":true}],"exports":[],"entryPoint":"packages/terraform-tools/src/generators/init/init.ts","inputs":{"packages/terraform-tools/src/generators/init/init.ts":{"bytesInOutput":529}},"bytes":1478}}}
|
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@storm-software/terraform-tools",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "commonjs",
|
|
5
|
+
"description": "⚡ A Nx plugin package that contains various executors, generators, and utilities that assist in managing Terraform IoC.",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "github",
|
|
8
|
+
"url": "https://github.com/storm-software/storm-ops",
|
|
9
|
+
"directory": "packages/terraform-tools"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://stormsoftware.com",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/storm-software/storm-ops/issues",
|
|
14
|
+
"email": "support@stormsoftware.com"
|
|
15
|
+
},
|
|
16
|
+
"author": {
|
|
17
|
+
"name": "Storm Software",
|
|
18
|
+
"email": "contact@stormsoftware.com",
|
|
19
|
+
"url": "https://stormsoftware.com"
|
|
20
|
+
},
|
|
21
|
+
"license": "Apache 2.0",
|
|
22
|
+
"private": false,
|
|
23
|
+
"main": "./index.js",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": "./index.js",
|
|
26
|
+
"./package.json": "./package.json",
|
|
27
|
+
"./generators.json": "./generators.json",
|
|
28
|
+
"./generators/*/schema.json": "./src/generators/*/schema.json",
|
|
29
|
+
"./executors.json": "./executors.json",
|
|
30
|
+
"./executors/*/schema.json": "./src/executors/*/schema.json"
|
|
31
|
+
},
|
|
32
|
+
"typings": "./declarations.d.ts",
|
|
33
|
+
"keywords": [
|
|
34
|
+
"storm",
|
|
35
|
+
"storm-ops",
|
|
36
|
+
"terraform",
|
|
37
|
+
"open-tofu",
|
|
38
|
+
"terragrunt",
|
|
39
|
+
"storm-stack",
|
|
40
|
+
"sullivanpj",
|
|
41
|
+
"monorepo"
|
|
42
|
+
],
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"@nx/devkit": "^19.5.3",
|
|
45
|
+
"nx": "^19.5.3"
|
|
46
|
+
},
|
|
47
|
+
"peerDependenciesMeta": {
|
|
48
|
+
"@nx/devkit": {
|
|
49
|
+
"optional": false
|
|
50
|
+
},
|
|
51
|
+
"nx": {
|
|
52
|
+
"optional": false
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@nx/devkit": "^19.5.3",
|
|
57
|
+
"@nx/workspace": "^19.5.3",
|
|
58
|
+
"shelljs": "^0.8.5",
|
|
59
|
+
"tslib": "^2.6.3"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"nx": "^19.5.3"
|
|
63
|
+
},
|
|
64
|
+
"publishConfig": {
|
|
65
|
+
"access": "public"
|
|
66
|
+
},
|
|
67
|
+
"executors": "./executors.json",
|
|
68
|
+
"generators": "./generators.json"
|
|
69
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { StormConfig } from "@storm-software/config";
|
|
2
|
+
import type { RolldownOptions } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* Build and bundle a TypeScript project using the tsup build tools.
|
|
5
|
+
*
|
|
6
|
+
* @remarks
|
|
7
|
+
* This function is a wrapper around the `buildWithOptions` function that provides a default set of options.
|
|
8
|
+
*
|
|
9
|
+
* @param config - The storm configuration.
|
|
10
|
+
* @param options - A build options partial. The minimum required options are `projectRoot` or `projectName`.
|
|
11
|
+
*/
|
|
12
|
+
export declare function rolldown(config: StormConfig, options?: Partial<RolldownOptions>): Promise<void>;
|
|
13
|
+
/**
|
|
14
|
+
* Build and bundle a TypeScript project using the tsup build tools.
|
|
15
|
+
*
|
|
16
|
+
* @param config - The storm configuration.
|
|
17
|
+
* @param options - The build options.
|
|
18
|
+
*/
|
|
19
|
+
export declare function rolldownWithOptions(config: StormConfig, options: RolldownOptions): Promise<void>;
|
|
20
|
+
export default rolldown;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { TypeScriptBuildOptions } from "../../declarations";
|
|
2
|
+
import type { StormConfig } from "@storm-software/config";
|
|
3
|
+
/**
|
|
4
|
+
* Build and bundle a TypeScript project using the tsup build tools.
|
|
5
|
+
*
|
|
6
|
+
* @remarks
|
|
7
|
+
* This function is a wrapper around the `buildWithOptions` function that provides a default set of options.
|
|
8
|
+
*
|
|
9
|
+
* @param config - The storm configuration.
|
|
10
|
+
* @param options - A build options partial. The minimum required options are `projectRoot` or `projectName`.
|
|
11
|
+
*/
|
|
12
|
+
export declare function build(config: StormConfig, options?: Partial<TypeScriptBuildOptions>): Promise<void>;
|
|
13
|
+
/**
|
|
14
|
+
* Build and bundle a TypeScript project using the tsup build tools.
|
|
15
|
+
*
|
|
16
|
+
* @param config - The storm configuration.
|
|
17
|
+
* @param options - The build options.
|
|
18
|
+
*/
|
|
19
|
+
export declare function buildWithOptions(config: StormConfig, options: TypeScriptBuildOptions): Promise<void>;
|
|
20
|
+
export default build;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { StormConfig } from "@storm-software/config";
|
|
2
|
+
import type { UnbuildBuildOptions } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* Build and bundle a TypeScript project using the tsup build tools.
|
|
5
|
+
*
|
|
6
|
+
* @remarks
|
|
7
|
+
* This function is a wrapper around the `buildWithOptions` function that provides a default set of options.
|
|
8
|
+
*
|
|
9
|
+
* @param config - The storm configuration.
|
|
10
|
+
* @param options - A build options partial. The minimum required options are `projectRoot` or `projectName`.
|
|
11
|
+
*/
|
|
12
|
+
export declare function unbuild(config: StormConfig, options?: Partial<UnbuildBuildOptions>): Promise<void>;
|
|
13
|
+
/**
|
|
14
|
+
* Build and bundle a TypeScript project using the tsup build tools.
|
|
15
|
+
*
|
|
16
|
+
* @param config - The storm configuration.
|
|
17
|
+
* @param options - The build options.
|
|
18
|
+
*/
|
|
19
|
+
export declare function unbuildWithOptions(config: StormConfig, options: UnbuildBuildOptions): Promise<void>;
|
|
20
|
+
export default unbuild;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import type { BuildOptions, GetConfigParams } from "../../declarations";
|
|
2
|
+
export declare const browserConfig: ({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, dtsTsConfig, minify, getTransform, }: GetConfigParams) => BuildOptions;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import type { BuildOptions, GetConfigParams } from "../../declarations";
|
|
2
|
+
export declare function defaultConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, format, debug, shims, external, banner, platform, verbose, apiReport, docModel, tsdocMetadata, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, dtsTsConfig, minify, getTransform }: GetConfigParams): BuildOptions;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import type { BuildOptions, GetConfigParams, TsupGetConfigOptions } from "../types";
|
|
2
|
+
export declare const getConfig: (workspaceRoot: string, projectRoot: string, getConfigFn: (options: GetConfigParams) => BuildOptions, { outputPath, tsConfig, platform, ...rest }: TsupGetConfigOptions) => import("tsup").Options;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { RolldownBuildOptions, RolldownOptions } from "../types";
|
|
2
|
+
import { type DependentBuildableProjectNode } from "@nx/js/src/utils/buildable-libs-utils.js";
|
|
3
|
+
import type { StormConfig } from "@storm-software/config";
|
|
4
|
+
import type { PackageJson } from "nx/src/utils/package-json.js";
|
|
5
|
+
export declare const DEFAULT_CONFIG: RolldownBuildOptions;
|
|
6
|
+
export declare function getRolldownBuildOptions(config: StormConfig, options: RolldownOptions, dependencies: DependentBuildableProjectNode[], packageJson: PackageJson, npmDeps: string[]): Promise<RolldownBuildOptions[]>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ProjectGraph } from "@nx/devkit";
|
|
2
|
+
import type { StormConfig } from "@storm-software/config";
|
|
3
|
+
import type { PackageJson } from "nx/src/utils/package-json.js";
|
|
4
|
+
import { type BuildConfig } from "unbuild";
|
|
5
|
+
import type { UnbuildBuildOptions } from "../types";
|
|
6
|
+
export declare function getUnbuildBuildOptions(config: StormConfig, options: UnbuildBuildOptions, packageJson: PackageJson, projectGraph: ProjectGraph): Promise<BuildConfig[]>;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import type { BuildOptions, GetConfigParams } from "../../declarations";
|
|
2
|
+
export declare const neutralConfig: ({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, metafile, skipNativeModulesPlugin, define, env, apiReport, docModel, tsdocMetadata, plugins, generatePackageJson, dtsTsConfig, minify, getTransform }: GetConfigParams) => BuildOptions;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { BuildOptions, GetConfigParams } from "../../declarations";
|
|
2
|
+
export declare function nodeConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, shims, external, banner, platform, verbose, apiReport, docModel, tsdocMetadata, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, dtsTsConfig, minify, getTransform }: GetConfigParams): BuildOptions;
|
|
3
|
+
export declare function workerConfig({ entry, outDir, projectRoot, workspaceRoot, tsconfig, splitting, treeshake, debug, external, banner, verbose, apiReport, docModel, tsdocMetadata, shims, metafile, skipNativeModulesPlugin, define, env, plugins, generatePackageJson, dtsTsConfig, getTransform }: GetConfigParams): BuildOptions;
|