├── .circleci └── config.yml ├── .editorconfig ├── .eslintrc ├── .github └── ISSUE_TEMPLATE │ ├── bug_report_nx-deploy-it.md │ └── feature_request_nx-deploy-it.md ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps ├── .gitkeep └── nx-deploy-it-e2e │ ├── jest.config.js │ ├── tests │ └── nx-deploy-it.test.ts │ ├── tsconfig.json │ └── tsconfig.spec.json ├── jest.config.js ├── libs ├── .gitkeep └── nx-deploy-it │ ├── .eslintrc │ ├── README.md │ ├── builders.json │ ├── collection.json │ ├── docs │ └── nx-deploy-it-aws.gif │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── adapter │ │ ├── angular-universal │ │ │ ├── angular-universal.adapter.ts │ │ │ └── deployment-type.enum.ts │ │ ├── base.adapter.model.ts │ │ ├── base.adapter.ts │ │ ├── express │ │ │ └── express.adapter.ts │ │ ├── nestjs │ │ │ └── nestjs.adapter.ts │ │ └── webapp │ │ │ └── webapp.adapter.ts │ ├── builders │ │ ├── deploy │ │ │ ├── __snapshots__ │ │ │ │ └── builder.spec.ts.snap │ │ │ ├── builder.spec.ts │ │ │ ├── builder.ts │ │ │ ├── schema.d.ts │ │ │ ├── schema.json │ │ │ └── target-options.ts │ │ └── destroy │ │ │ ├── __snapshots__ │ │ │ └── builder.spec.ts.snap │ │ │ ├── builder.spec.ts │ │ │ ├── builder.ts │ │ │ ├── schema.d.ts │ │ │ ├── schema.json │ │ │ └── target-options.ts │ ├── index.ts │ ├── schematics │ │ ├── init │ │ │ ├── __snapshots__ │ │ │ │ └── schematic.spec.ts.snap │ │ │ ├── architect-options.ts │ │ │ ├── files │ │ │ │ ├── aws │ │ │ │ │ ├── angular-universal │ │ │ │ │ │ └── infrastructure │ │ │ │ │ │ │ ├── cdn.ts.template │ │ │ │ │ │ │ ├── certificate.ts.template │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── index.ts.template │ │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ │ ├── server-side-rendering.ts.template │ │ │ │ │ │ │ ├── tsconfig.json.template │ │ │ │ │ │ │ └── utils.ts.template │ │ │ │ │ ├── express │ │ │ │ │ │ ├── __rootDir__ │ │ │ │ │ │ │ └── main.aws.ts.template │ │ │ │ │ │ └── infrastructure │ │ │ │ │ │ │ ├── .gitignore.template │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── index.ts.template │ │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ │ └── tsconfig.json.template │ │ │ │ │ ├── nestjs │ │ │ │ │ │ ├── __rootDir__ │ │ │ │ │ │ │ └── main.aws.ts.template │ │ │ │ │ │ └── infrastructure │ │ │ │ │ │ │ ├── .gitignore.template │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── index.ts.template │ │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ │ └── tsconfig.json.template │ │ │ │ │ └── webapp │ │ │ │ │ │ └── infrastructure │ │ │ │ │ │ ├── cdn.ts.template │ │ │ │ │ │ ├── certificate.ts.template │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ └── utils.ts.template │ │ │ │ ├── azure │ │ │ │ │ ├── angular-universal │ │ │ │ │ │ └── infrastructure │ │ │ │ │ │ │ ├── cdnCustomDomain.ts.template │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── host.json.template │ │ │ │ │ │ │ ├── local.settings.json.template │ │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ │ ├── function.json.template │ │ │ │ │ │ │ │ └── index.ts.template │ │ │ │ │ │ │ └── proxies.json.template │ │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ │ ├── server-side-rendering.ts.template │ │ │ │ │ │ │ ├── static-website.resource.ts.template │ │ │ │ │ │ │ ├── tsconfig.json.template │ │ │ │ │ │ │ └── utils.ts.template │ │ │ │ │ ├── express │ │ │ │ │ │ ├── __rootDir__ │ │ │ │ │ │ │ └── main.azure.ts.template │ │ │ │ │ │ └── infrastructure │ │ │ │ │ │ │ ├── .gitignore.template │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── host.json.template │ │ │ │ │ │ │ ├── local.settings.json.template │ │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ │ ├── function.json.template │ │ │ │ │ │ │ │ └── index.ts.template │ │ │ │ │ │ │ └── proxies.json.template │ │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ │ └── tsconfig.json.template │ │ │ │ │ ├── nestjs │ │ │ │ │ │ ├── __rootDir__ │ │ │ │ │ │ │ └── main.azure.ts.template │ │ │ │ │ │ └── infrastructure │ │ │ │ │ │ │ ├── .gitignore.template │ │ │ │ │ │ │ ├── functions │ │ │ │ │ │ │ ├── host.json.template │ │ │ │ │ │ │ ├── local.settings.json.template │ │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ │ ├── function.json.template │ │ │ │ │ │ │ │ └── index.ts.template │ │ │ │ │ │ │ └── proxies.json.template │ │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ │ └── tsconfig.json.template │ │ │ │ │ └── webapp │ │ │ │ │ │ └── infrastructure │ │ │ │ │ │ ├── cdnCustomDomain.ts.template │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ ├── static-website.resource.ts.template │ │ │ │ │ │ └── utils.ts.template │ │ │ │ └── gcp │ │ │ │ │ ├── angular-universal │ │ │ │ │ └── infrastructure │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── index.ts.template │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ ├── server-side-rendering.ts.template │ │ │ │ │ │ └── tsconfig.json.template │ │ │ │ │ ├── express │ │ │ │ │ ├── __rootDir__ │ │ │ │ │ │ └── main.gcp.ts.template │ │ │ │ │ └── infrastructure │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── index.ts.template │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ └── tsconfig.json.template │ │ │ │ │ ├── nestjs │ │ │ │ │ ├── __rootDir__ │ │ │ │ │ │ └── main.gcp.ts.template │ │ │ │ │ └── infrastructure │ │ │ │ │ │ ├── functions │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── index.ts.template │ │ │ │ │ │ ├── index.ts.template │ │ │ │ │ │ └── tsconfig.json.template │ │ │ │ │ └── webapp │ │ │ │ │ └── infrastructure │ │ │ │ │ └── index.ts.template │ │ │ ├── schema.d.ts │ │ │ ├── schema.json │ │ │ ├── schematic.spec.ts │ │ │ └── schematic.ts │ │ └── scan │ │ │ ├── __snapshots__ │ │ │ └── schematic.spec.ts.snap │ │ │ ├── schema.json │ │ │ ├── schematic.spec.ts │ │ │ └── schematic.ts │ ├── utils-test │ │ ├── app.utils.ts │ │ ├── builders.utils.ts │ │ ├── enquirer.utils.ts │ │ ├── logger.utils.ts │ │ └── pulumi.mock.ts │ └── utils │ │ ├── application-type.ts │ │ ├── ats.utils.ts │ │ ├── provider.ts │ │ ├── questions.ts │ │ ├── versions.ts │ │ └── workspace.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nx.json ├── package.json ├── tools ├── schematics │ └── .gitkeep └── tsconfig.tools.json ├── tsconfig.json └── workspace.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_nx-deploy-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/.github/ISSUE_TEMPLATE/bug_report_nx-deploy-it.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_nx-deploy-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/.github/ISSUE_TEMPLATE/feature_request_nx-deploy-it.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/README.md -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/nx-deploy-it-e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/apps/nx-deploy-it-e2e/jest.config.js -------------------------------------------------------------------------------- /apps/nx-deploy-it-e2e/tests/nx-deploy-it.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/apps/nx-deploy-it-e2e/tests/nx-deploy-it.test.ts -------------------------------------------------------------------------------- /apps/nx-deploy-it-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/apps/nx-deploy-it-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/nx-deploy-it-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/apps/nx-deploy-it-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/jest.config.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/nx-deploy-it/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/.eslintrc -------------------------------------------------------------------------------- /libs/nx-deploy-it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/README.md -------------------------------------------------------------------------------- /libs/nx-deploy-it/builders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/builders.json -------------------------------------------------------------------------------- /libs/nx-deploy-it/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/collection.json -------------------------------------------------------------------------------- /libs/nx-deploy-it/docs/nx-deploy-it-aws.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/docs/nx-deploy-it-aws.gif -------------------------------------------------------------------------------- /libs/nx-deploy-it/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/jest.config.js -------------------------------------------------------------------------------- /libs/nx-deploy-it/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/package.json -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/adapter/angular-universal/angular-universal.adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/adapter/angular-universal/angular-universal.adapter.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/adapter/angular-universal/deployment-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/adapter/angular-universal/deployment-type.enum.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/adapter/base.adapter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/adapter/base.adapter.model.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/adapter/base.adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/adapter/base.adapter.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/adapter/express/express.adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/adapter/express/express.adapter.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/adapter/nestjs/nestjs.adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/adapter/nestjs/nestjs.adapter.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/adapter/webapp/webapp.adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/adapter/webapp/webapp.adapter.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/builders/deploy/__snapshots__/builder.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/builders/deploy/__snapshots__/builder.spec.ts.snap -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/builders/deploy/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/builders/deploy/builder.spec.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/builders/deploy/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/builders/deploy/builder.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/builders/deploy/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/builders/deploy/schema.d.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/builders/deploy/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/builders/deploy/schema.json -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/builders/deploy/target-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/builders/deploy/target-options.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/builders/destroy/__snapshots__/builder.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/builders/destroy/__snapshots__/builder.spec.ts.snap -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/builders/destroy/builder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/builders/destroy/builder.spec.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/builders/destroy/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/builders/destroy/builder.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/builders/destroy/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/builders/destroy/schema.d.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/builders/destroy/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/builders/destroy/schema.json -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/builders/destroy/target-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/builders/destroy/target-options.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/__snapshots__/schematic.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/__snapshots__/schematic.spec.ts.snap -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/architect-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/architect-options.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/cdn.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/cdn.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/certificate.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/certificate.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/functions/main/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/functions/main/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/server-side-rendering.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/server-side-rendering.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/tsconfig.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/tsconfig.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/utils.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/angular-universal/infrastructure/utils.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/express/__rootDir__/main.aws.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/express/__rootDir__/main.aws.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/express/infrastructure/.gitignore.template: -------------------------------------------------------------------------------- 1 | functions/dist 2 | buildcache 3 | -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/express/infrastructure/functions/main/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/express/infrastructure/functions/main/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/express/infrastructure/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/express/infrastructure/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/express/infrastructure/tsconfig.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/express/infrastructure/tsconfig.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/nestjs/__rootDir__/main.aws.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/nestjs/__rootDir__/main.aws.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/nestjs/infrastructure/.gitignore.template: -------------------------------------------------------------------------------- 1 | functions/dist 2 | buildcache 3 | -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/nestjs/infrastructure/functions/main/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/nestjs/infrastructure/functions/main/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/nestjs/infrastructure/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/nestjs/infrastructure/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/nestjs/infrastructure/tsconfig.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/nestjs/infrastructure/tsconfig.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/webapp/infrastructure/cdn.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/webapp/infrastructure/cdn.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/webapp/infrastructure/certificate.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/webapp/infrastructure/certificate.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/webapp/infrastructure/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/webapp/infrastructure/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/aws/webapp/infrastructure/utils.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/aws/webapp/infrastructure/utils.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/cdnCustomDomain.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/cdnCustomDomain.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/functions/host.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/functions/host.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/functions/local.settings.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/functions/local.settings.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/functions/main/function.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/functions/main/function.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/functions/main/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/functions/main/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/functions/proxies.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/functions/proxies.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/server-side-rendering.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/server-side-rendering.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/static-website.resource.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/static-website.resource.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/tsconfig.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/tsconfig.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/utils.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/angular-universal/infrastructure/utils.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/express/__rootDir__/main.azure.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/express/__rootDir__/main.azure.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/.gitignore.template: -------------------------------------------------------------------------------- 1 | functions/dist 2 | buildcache 3 | -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/functions/host.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/functions/host.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/functions/local.settings.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/functions/local.settings.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/functions/main/function.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/functions/main/function.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/functions/main/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/functions/main/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/functions/proxies.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/functions/proxies.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/tsconfig.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/express/infrastructure/tsconfig.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/__rootDir__/main.azure.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/__rootDir__/main.azure.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/.gitignore.template: -------------------------------------------------------------------------------- 1 | functions/dist 2 | buildcache 3 | -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/functions/host.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/functions/host.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/functions/local.settings.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/functions/local.settings.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/functions/main/function.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/functions/main/function.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/functions/main/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/functions/main/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/functions/proxies.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/functions/proxies.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/tsconfig.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/nestjs/infrastructure/tsconfig.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/webapp/infrastructure/cdnCustomDomain.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/webapp/infrastructure/cdnCustomDomain.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/webapp/infrastructure/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/webapp/infrastructure/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/webapp/infrastructure/static-website.resource.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/webapp/infrastructure/static-website.resource.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/azure/webapp/infrastructure/utils.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/azure/webapp/infrastructure/utils.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/angular-universal/infrastructure/functions/main/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/angular-universal/infrastructure/functions/main/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/angular-universal/infrastructure/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/angular-universal/infrastructure/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/angular-universal/infrastructure/server-side-rendering.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/angular-universal/infrastructure/server-side-rendering.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/angular-universal/infrastructure/tsconfig.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/angular-universal/infrastructure/tsconfig.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/express/__rootDir__/main.gcp.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/express/__rootDir__/main.gcp.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/express/infrastructure/functions/main/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/express/infrastructure/functions/main/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/express/infrastructure/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/express/infrastructure/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/express/infrastructure/tsconfig.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/express/infrastructure/tsconfig.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/nestjs/__rootDir__/main.gcp.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/nestjs/__rootDir__/main.gcp.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/nestjs/infrastructure/functions/main/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/nestjs/infrastructure/functions/main/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/nestjs/infrastructure/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/nestjs/infrastructure/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/nestjs/infrastructure/tsconfig.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/nestjs/infrastructure/tsconfig.json.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/files/gcp/webapp/infrastructure/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/files/gcp/webapp/infrastructure/index.ts.template -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/schema.d.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/schema.json -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/schematic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/schematic.spec.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/init/schematic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/init/schematic.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/scan/__snapshots__/schematic.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/scan/__snapshots__/schematic.spec.ts.snap -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/scan/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/scan/schema.json -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/scan/schematic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/scan/schematic.spec.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/schematics/scan/schematic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/schematics/scan/schematic.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/utils-test/app.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/utils-test/app.utils.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/utils-test/builders.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/utils-test/builders.utils.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/utils-test/enquirer.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/utils-test/enquirer.utils.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/utils-test/logger.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/utils-test/logger.utils.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/utils-test/pulumi.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/utils-test/pulumi.mock.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/utils/application-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/utils/application-type.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/utils/ats.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/utils/ats.utils.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/utils/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/utils/provider.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/utils/questions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/utils/questions.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/utils/versions.ts: -------------------------------------------------------------------------------- 1 | export const pulumiVersion = '^1.1.4'; 2 | -------------------------------------------------------------------------------- /libs/nx-deploy-it/src/utils/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/src/utils/workspace.ts -------------------------------------------------------------------------------- /libs/nx-deploy-it/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/tsconfig.json -------------------------------------------------------------------------------- /libs/nx-deploy-it/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/nx-deploy-it/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/libs/nx-deploy-it/tsconfig.spec.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/package.json -------------------------------------------------------------------------------- /tools/schematics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/tsconfig.json -------------------------------------------------------------------------------- /workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dev-Thought/nx-plugins/HEAD/workspace.json --------------------------------------------------------------------------------