├── .circleci └── config.yml ├── .cz-config.js ├── .editorconfig ├── .env ├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── SECURITY.md └── pull_request_template.md ├── .gitignore ├── .npmrc.local ├── .prettierignore ├── .prettierrc ├── .scully └── settings.yml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CONTRIBUTING.md ├── README.md ├── apps ├── .gitkeep ├── aws-cdk-stack-e2e │ ├── jest.config.js │ ├── tests │ │ └── aws-cdk-stack.spec.ts │ ├── tsconfig.json │ └── tsconfig.spec.json ├── nx-aws-cdk-core-e2e │ ├── jest.config.js │ ├── tests │ │ └── nx-aws-cdk-core.spec.ts │ ├── tsconfig.json │ └── tsconfig.spec.json ├── nx-aws-cdk-e2e │ ├── jest.config.js │ ├── project.json │ ├── tests │ │ └── nx-aws-cdk.test.ts │ ├── tsconfig.json │ └── tsconfig.spec.json └── nx-serverless-e2e │ ├── jest.config.js │ ├── project.json │ ├── tests │ └── nx-serverless.test.ts │ ├── tsconfig.json │ └── tsconfig.spec.json ├── jest.config.ts ├── jest.preset.js ├── libs ├── .gitkeep ├── aws-cdk-core │ ├── .babelrc │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── aws-cdk-client.ts │ │ │ ├── aws-cdk-factory.ts │ │ │ ├── types │ │ │ └── index.ts │ │ │ └── utils.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── aws-cdk-stack │ ├── .babelrc │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── lambda-asset-code │ │ │ └── typescript-code.ts │ │ │ ├── stacks │ │ │ ├── application-load-balancer.ts │ │ │ ├── application-target-group.ts │ │ │ ├── aurora-severless-db.ts │ │ │ ├── aws-ecs-cluster.ts │ │ │ ├── builders │ │ │ │ ├── aurora-serverless-db-builder.ts │ │ │ │ ├── base-application-stack-builder.ts │ │ │ │ ├── index.ts │ │ │ │ ├── serverless-application-builder.ts │ │ │ │ └── sqs-stack-builder.ts │ │ │ ├── dynamo-db-stack.ts │ │ │ ├── ecs-autoscaling-group.ts │ │ │ ├── ecs-capacity-provider.ts │ │ │ ├── ecs-cluster.ts │ │ │ ├── ecs-network-stack.ts │ │ │ ├── ecs-service.ts │ │ │ ├── elasticsearch.ts │ │ │ ├── index.ts │ │ │ ├── inline-role-stack.ts │ │ │ ├── lambda-stack.ts │ │ │ ├── managed-policy-stack.ts │ │ │ ├── policy-stack.ts │ │ │ ├── rds-read-replica.ts │ │ │ ├── role-stack.ts │ │ │ ├── serverless-application-stack.ts │ │ │ ├── service-alb-adapter.ts │ │ │ ├── sqs.ts │ │ │ └── vpc.ts │ │ │ ├── types │ │ │ └── index.ts │ │ │ └── versions.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nx-aws-cdk │ ├── .eslintrc.json │ ├── README.md │ ├── executors.json │ ├── generators.json │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── builders │ │ │ ├── deploy │ │ │ │ ├── deploy.executor.ts │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.json │ │ │ └── synth │ │ │ │ ├── compat.ts │ │ │ │ ├── schema.d.ts │ │ │ │ ├── schema.json │ │ │ │ └── synth.executor.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── cdk-arguments.ts │ │ │ └── cdk-bootstrap-arguments.ts │ │ ├── schematics │ │ │ ├── application │ │ │ │ ├── app.ts │ │ │ │ ├── files │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ └── handler.ts.template │ │ │ │ │ │ ├── environments │ │ │ │ │ │ │ └── environment.staging.ts.template │ │ │ │ │ │ └── main.ts.template │ │ │ │ │ ├── tsconfig.app.json │ │ │ │ │ └── tsconfig.json │ │ │ │ └── schema.json │ │ │ ├── base-aws-cdk.ts │ │ │ ├── base-schema.d.ts │ │ │ ├── common-schematics.ts │ │ │ ├── ecs │ │ │ │ ├── files │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── environments │ │ │ │ │ │ │ └── environment.staging.ts.template │ │ │ │ │ │ └── main.ts.template │ │ │ │ │ ├── tsconfig.app.json │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.json │ │ │ ├── index.ts │ │ │ ├── init │ │ │ │ ├── index.ts │ │ │ │ ├── init.spec.ts │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.json │ │ │ ├── normalized-schema.d.ts │ │ │ ├── schema.d.ts │ │ │ └── schema.json │ │ ├── utils │ │ │ ├── enum.ts │ │ │ ├── testing.ts │ │ │ ├── versions.ts │ │ │ └── with-externals.ts │ │ └── webpack │ │ │ └── webpack.config.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nx-serverless │ ├── .eslintrc.json │ ├── .npmignore │ ├── README.md │ ├── builders.json │ ├── collection.json │ ├── docs │ │ └── serverless-build-executor-examples.md │ ├── jest.config.ts │ ├── migrations.json │ ├── package.json │ ├── plugin │ │ └── index.ts │ ├── project.json │ ├── src │ │ ├── builders │ │ │ ├── build │ │ │ │ ├── build.impl.spec.ts │ │ │ │ ├── build.impl.ts │ │ │ │ ├── compat.ts │ │ │ │ ├── schema.json │ │ │ │ └── source-map-install.ts │ │ │ ├── deploy │ │ │ │ ├── compat.ts │ │ │ │ ├── deploy.impl.spec.ts │ │ │ │ ├── deploy.impl.ts │ │ │ │ └── schema.json │ │ │ ├── destroy │ │ │ │ ├── compat.ts │ │ │ │ ├── destroy.impl.spec.ts │ │ │ │ ├── destroy.impl.ts │ │ │ │ └── schema.json │ │ │ ├── offline │ │ │ │ ├── compat.ts │ │ │ │ ├── offline.executor.ts │ │ │ │ ├── offline.impl.spec.ts │ │ │ │ ├── offline.impl.ts │ │ │ │ └── schema.json │ │ │ ├── scully │ │ │ │ ├── compat.ts │ │ │ │ ├── schema.json │ │ │ │ ├── scully.impl.spec.ts │ │ │ │ └── scully.impl.ts │ │ │ └── sls │ │ │ │ ├── compat.ts │ │ │ │ ├── schema.json │ │ │ │ ├── sls.impl.spec.ts │ │ │ │ └── sls.impl.ts │ │ ├── integrations │ │ │ └── serverless-offline.ts │ │ ├── nrwl │ │ │ └── nx-facade.ts │ │ ├── schematics │ │ │ ├── api │ │ │ │ ├── api.spec.ts │ │ │ │ ├── api.ts │ │ │ │ ├── files │ │ │ │ │ ├── env.json │ │ │ │ │ ├── environment.prod.ts.template │ │ │ │ │ ├── environment.ts.template │ │ │ │ │ ├── serverless.ts.template │ │ │ │ │ ├── serverless.yml.template │ │ │ │ │ ├── src │ │ │ │ │ │ └── handler.ts.template │ │ │ │ │ ├── tsconfig.app.json │ │ │ │ │ └── tsconfig.json │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.json │ │ │ ├── express │ │ │ │ ├── application.spec.ts │ │ │ │ ├── application.ts │ │ │ │ ├── files │ │ │ │ │ ├── env.json │ │ │ │ │ ├── handler.ts.template │ │ │ │ │ ├── serverless.yml.template │ │ │ │ │ ├── src │ │ │ │ │ │ └── main.ts.template │ │ │ │ │ └── tsconfig.serverless.json │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.json │ │ │ ├── init │ │ │ │ ├── init.spec.ts │ │ │ │ ├── init.ts │ │ │ │ ├── lib │ │ │ │ │ ├── add-jest-plugin.ts │ │ │ │ │ ├── add-linter-plugin.ts │ │ │ │ │ └── util.ts │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.json │ │ │ ├── scully │ │ │ │ ├── application.spec.ts │ │ │ │ ├── application.ts │ │ │ │ ├── files │ │ │ │ │ └── app │ │ │ │ │ │ ├── env.json │ │ │ │ │ │ ├── handler.ts__tmpl__ │ │ │ │ │ │ ├── scully.config.js │ │ │ │ │ │ ├── serve-static.ts__tmpl__ │ │ │ │ │ │ ├── server-prerender.ts__tmpl__ │ │ │ │ │ │ ├── serverless.yml.__tmpl__ │ │ │ │ │ │ └── tsconfig.serverless.json │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.json │ │ │ └── utils.ts │ │ ├── serverless.d.ts │ │ ├── utils │ │ │ ├── config.ts │ │ │ ├── copy-asset-files.ts │ │ │ ├── depcheck.ts │ │ │ ├── enums.ts │ │ │ ├── gracefulify-fs.ts │ │ │ ├── middleware.ts │ │ │ ├── node.config.ts │ │ │ ├── normalize-options.ts │ │ │ ├── normalize.ts │ │ │ ├── packagers │ │ │ │ ├── index.ts │ │ │ │ ├── npm.ts │ │ │ │ └── yarn.ts │ │ │ ├── serverless.config.spec.ts │ │ │ ├── serverless.config.ts │ │ │ ├── serverless.ts │ │ │ ├── target.schedulers.ts │ │ │ ├── types.ts │ │ │ ├── typescript.spec.ts │ │ │ ├── versions.ts │ │ │ ├── webpack.stats.ts │ │ │ ├── with-externals.ts │ │ │ └── with-patterns.ts │ │ └── webpack │ │ │ └── webpack.config.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── scully-plugin-angular-delay │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── scully-plugin-angular-delay.spec.ts │ │ │ └── scully-plugin-angular-delay.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── scully-plugin-google-analytics │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── scully-plugin-google-analytics.spec.ts │ │ │ └── scully-plugin-google-analytics.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json └── scully-plugin-lazy-load-picture-tag │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ ├── index.ts │ └── lib │ │ ├── scully-plugin-lazy-load-picture-tag.spec.ts │ │ └── scully-plugin-lazy-load-picture-tag.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── migrations.json ├── nx.json ├── output.txt ├── package.json ├── scripts └── commit-lint.js ├── scully.log ├── tools ├── scripts │ ├── local-registry │ │ └── config.yml │ ├── patch-package-versions │ │ └── index.ts │ ├── publish-all │ │ └── index.ts │ ├── publish-beta │ │ └── index.ts │ └── publish-nx-serverless │ │ └── index.ts ├── tsconfig.tools.json └── utils │ ├── fs.ts │ ├── get-affected.ts │ ├── index.ts │ └── nx.ts ├── tsconfig.base.json ├── tslint-to-eslint-config.log └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.cz-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.cz-config.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.env -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.npmrc.local -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.scully/settings.yml: -------------------------------------------------------------------------------- 1 | identifier: kaxe4dp4kelcv7w1 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/README.md -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/aws-cdk-stack-e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/aws-cdk-stack-e2e/jest.config.js -------------------------------------------------------------------------------- /apps/aws-cdk-stack-e2e/tests/aws-cdk-stack.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/aws-cdk-stack-e2e/tests/aws-cdk-stack.spec.ts -------------------------------------------------------------------------------- /apps/aws-cdk-stack-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/aws-cdk-stack-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/aws-cdk-stack-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/aws-cdk-stack-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/nx-aws-cdk-core-e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-aws-cdk-core-e2e/jest.config.js -------------------------------------------------------------------------------- /apps/nx-aws-cdk-core-e2e/tests/nx-aws-cdk-core.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-aws-cdk-core-e2e/tests/nx-aws-cdk-core.spec.ts -------------------------------------------------------------------------------- /apps/nx-aws-cdk-core-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-aws-cdk-core-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/nx-aws-cdk-core-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-aws-cdk-core-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/nx-aws-cdk-e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-aws-cdk-e2e/jest.config.js -------------------------------------------------------------------------------- /apps/nx-aws-cdk-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-aws-cdk-e2e/project.json -------------------------------------------------------------------------------- /apps/nx-aws-cdk-e2e/tests/nx-aws-cdk.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-aws-cdk-e2e/tests/nx-aws-cdk.test.ts -------------------------------------------------------------------------------- /apps/nx-aws-cdk-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-aws-cdk-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/nx-aws-cdk-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-aws-cdk-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/nx-serverless-e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-serverless-e2e/jest.config.js -------------------------------------------------------------------------------- /apps/nx-serverless-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-serverless-e2e/project.json -------------------------------------------------------------------------------- /apps/nx-serverless-e2e/tests/nx-serverless.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-serverless-e2e/tests/nx-serverless.test.ts -------------------------------------------------------------------------------- /apps/nx-serverless-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-serverless-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/nx-serverless-e2e/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/apps/nx-serverless-e2e/tsconfig.spec.json -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/aws-cdk-core/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/.babelrc -------------------------------------------------------------------------------- /libs/aws-cdk-core/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/.eslintrc.json -------------------------------------------------------------------------------- /libs/aws-cdk-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/README.md -------------------------------------------------------------------------------- /libs/aws-cdk-core/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/jest.config.ts -------------------------------------------------------------------------------- /libs/aws-cdk-core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/package.json -------------------------------------------------------------------------------- /libs/aws-cdk-core/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/project.json -------------------------------------------------------------------------------- /libs/aws-cdk-core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/src/index.ts -------------------------------------------------------------------------------- /libs/aws-cdk-core/src/lib/aws-cdk-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/src/lib/aws-cdk-client.ts -------------------------------------------------------------------------------- /libs/aws-cdk-core/src/lib/aws-cdk-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/src/lib/aws-cdk-factory.ts -------------------------------------------------------------------------------- /libs/aws-cdk-core/src/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/src/lib/types/index.ts -------------------------------------------------------------------------------- /libs/aws-cdk-core/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/src/lib/utils.ts -------------------------------------------------------------------------------- /libs/aws-cdk-core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/tsconfig.json -------------------------------------------------------------------------------- /libs/aws-cdk-core/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/aws-cdk-core/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-core/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/aws-cdk-stack/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/.babelrc -------------------------------------------------------------------------------- /libs/aws-cdk-stack/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/.eslintrc.json -------------------------------------------------------------------------------- /libs/aws-cdk-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/README.md -------------------------------------------------------------------------------- /libs/aws-cdk-stack/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/jest.config.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/package.json -------------------------------------------------------------------------------- /libs/aws-cdk-stack/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/project.json -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/index.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/lambda-asset-code/typescript-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/lambda-asset-code/typescript-code.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/application-load-balancer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/application-load-balancer.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/application-target-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/application-target-group.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/aurora-severless-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/aurora-severless-db.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/aws-ecs-cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/aws-ecs-cluster.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/builders/aurora-serverless-db-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/builders/aurora-serverless-db-builder.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/builders/base-application-stack-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/builders/base-application-stack-builder.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/builders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/builders/index.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/builders/serverless-application-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/builders/serverless-application-builder.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/builders/sqs-stack-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/builders/sqs-stack-builder.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/dynamo-db-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/dynamo-db-stack.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/ecs-autoscaling-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/ecs-autoscaling-group.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/ecs-capacity-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/ecs-capacity-provider.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/ecs-cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/ecs-cluster.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/ecs-network-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/ecs-network-stack.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/ecs-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/ecs-service.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/elasticsearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/elasticsearch.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/index.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/inline-role-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/inline-role-stack.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/lambda-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/lambda-stack.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/managed-policy-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/managed-policy-stack.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/policy-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/policy-stack.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/rds-read-replica.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/rds-read-replica.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/role-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/role-stack.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/serverless-application-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/serverless-application-stack.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/service-alb-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/service-alb-adapter.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/sqs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/sqs.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/stacks/vpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/stacks/vpc.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/types/index.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/src/lib/versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/src/lib/versions.ts -------------------------------------------------------------------------------- /libs/aws-cdk-stack/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/tsconfig.json -------------------------------------------------------------------------------- /libs/aws-cdk-stack/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/aws-cdk-stack/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/aws-cdk-stack/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/.eslintrc.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/README.md -------------------------------------------------------------------------------- /libs/nx-aws-cdk/executors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/executors.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/generators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/generators.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/jest.config.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/package.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/project.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/builders/deploy/deploy.executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/builders/deploy/deploy.executor.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/builders/deploy/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/builders/deploy/schema.d.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/builders/deploy/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/builders/deploy/schema.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/builders/synth/compat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/builders/synth/compat.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/builders/synth/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/builders/synth/schema.d.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/builders/synth/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/builders/synth/schema.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/builders/synth/synth.executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/builders/synth/synth.executor.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/models/cdk-arguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/models/cdk-arguments.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/models/cdk-bootstrap-arguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/models/cdk-bootstrap-arguments.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/application/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/application/app.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/application/files/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/application/files/.eslintrc.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/application/files/src/app/handler.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/application/files/src/app/handler.ts.template -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/application/files/src/environments/environment.staging.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/application/files/src/environments/environment.staging.ts.template -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/application/files/src/main.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/application/files/src/main.ts.template -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/application/files/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/application/files/tsconfig.app.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/application/files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/application/files/tsconfig.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/application/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/application/schema.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/base-aws-cdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/base-aws-cdk.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/base-schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/base-schema.d.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/common-schematics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/common-schematics.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/ecs/files/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/ecs/files/.eslintrc.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/ecs/files/src/environments/environment.staging.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/ecs/files/src/environments/environment.staging.ts.template -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/ecs/files/src/main.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/ecs/files/src/main.ts.template -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/ecs/files/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/ecs/files/tsconfig.app.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/ecs/files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/ecs/files/tsconfig.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/ecs/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/ecs/schema.d.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/ecs/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/ecs/schema.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/init/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/init/index.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/init/init.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/init/init.spec.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/init/schema.d.ts: -------------------------------------------------------------------------------- 1 | export interface Schema { 2 | skipFormat: boolean; 3 | } 4 | -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/init/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/init/schema.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/normalized-schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/normalized-schema.d.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/schema.d.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/schematics/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/schematics/schema.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/utils/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/utils/enum.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/utils/testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/utils/testing.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/utils/versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/utils/versions.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/utils/with-externals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/utils/with-externals.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/src/webpack/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/src/webpack/webpack.config.ts -------------------------------------------------------------------------------- /libs/nx-aws-cdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/tsconfig.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/nx-aws-cdk/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-aws-cdk/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/nx-serverless/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/.eslintrc.json -------------------------------------------------------------------------------- /libs/nx-serverless/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/.npmignore -------------------------------------------------------------------------------- /libs/nx-serverless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/README.md -------------------------------------------------------------------------------- /libs/nx-serverless/builders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/builders.json -------------------------------------------------------------------------------- /libs/nx-serverless/collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/collection.json -------------------------------------------------------------------------------- /libs/nx-serverless/docs/serverless-build-executor-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/docs/serverless-build-executor-examples.md -------------------------------------------------------------------------------- /libs/nx-serverless/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/jest.config.ts -------------------------------------------------------------------------------- /libs/nx-serverless/migrations.json: -------------------------------------------------------------------------------- 1 | { 2 | "schematics": {} 3 | } 4 | -------------------------------------------------------------------------------- /libs/nx-serverless/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/package.json -------------------------------------------------------------------------------- /libs/nx-serverless/plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/plugin/index.ts -------------------------------------------------------------------------------- /libs/nx-serverless/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/project.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/build/build.impl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/build/build.impl.spec.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/build/build.impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/build/build.impl.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/build/compat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/build/compat.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/build/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/build/schema.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/build/source-map-install.ts: -------------------------------------------------------------------------------- 1 | import 'source-map-support/register'; 2 | -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/deploy/compat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/deploy/compat.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/deploy/deploy.impl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/deploy/deploy.impl.spec.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/deploy/deploy.impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/deploy/deploy.impl.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/deploy/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/deploy/schema.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/destroy/compat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/destroy/compat.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/destroy/destroy.impl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/destroy/destroy.impl.spec.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/destroy/destroy.impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/destroy/destroy.impl.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/destroy/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/destroy/schema.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/offline/compat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/offline/compat.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/offline/offline.executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/offline/offline.executor.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/offline/offline.impl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/offline/offline.impl.spec.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/offline/offline.impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/offline/offline.impl.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/offline/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/offline/schema.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/scully/compat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/scully/compat.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/scully/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/scully/schema.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/scully/scully.impl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/scully/scully.impl.spec.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/scully/scully.impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/scully/scully.impl.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/sls/compat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/sls/compat.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/sls/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/sls/schema.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/sls/sls.impl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/sls/sls.impl.spec.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/builders/sls/sls.impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/builders/sls/sls.impl.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/integrations/serverless-offline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/integrations/serverless-offline.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/nrwl/nx-facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/nrwl/nx-facade.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/api/api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/api/api.spec.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/api/api.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/api/files/env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/api/files/env.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/api/files/environment.prod.ts.template: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | } 4 | -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/api/files/environment.ts.template: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | } 4 | -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/api/files/serverless.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/api/files/serverless.ts.template -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/api/files/serverless.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/api/files/serverless.yml.template -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/api/files/src/handler.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/api/files/src/handler.ts.template -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/api/files/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/api/files/tsconfig.app.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/api/files/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/api/files/tsconfig.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/api/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/api/schema.d.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/api/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/api/schema.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/express/application.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/express/application.spec.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/express/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/express/application.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/express/files/env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/express/files/env.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/express/files/handler.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/express/files/handler.ts.template -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/express/files/serverless.yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/express/files/serverless.yml.template -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/express/files/src/main.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/express/files/src/main.ts.template -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/express/files/tsconfig.serverless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/express/files/tsconfig.serverless.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/express/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/express/schema.d.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/express/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/express/schema.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/init/init.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/init/init.spec.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/init/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/init/init.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/init/lib/add-jest-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/init/lib/add-jest-plugin.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/init/lib/add-linter-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/init/lib/add-linter-plugin.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/init/lib/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/init/lib/util.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/init/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/init/schema.d.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/init/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/init/schema.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/scully/application.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/scully/application.spec.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/scully/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/scully/application.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/scully/files/app/env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/scully/files/app/env.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/scully/files/app/handler.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/scully/files/app/handler.ts__tmpl__ -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/scully/files/app/scully.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/scully/files/app/scully.config.js -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/scully/files/app/serve-static.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/scully/files/app/serve-static.ts__tmpl__ -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/scully/files/app/server-prerender.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/scully/files/app/server-prerender.ts__tmpl__ -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/scully/files/app/serverless.yml.__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/scully/files/app/serverless.yml.__tmpl__ -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/scully/files/app/tsconfig.serverless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/scully/files/app/tsconfig.serverless.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/scully/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/scully/schema.d.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/scully/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/scully/schema.json -------------------------------------------------------------------------------- /libs/nx-serverless/src/schematics/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/schematics/utils.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/serverless.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/serverless.d.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/config.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/copy-asset-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/copy-asset-files.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/depcheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/depcheck.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/enums.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/gracefulify-fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/gracefulify-fs.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/middleware.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/node.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/node.config.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/normalize-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/normalize-options.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/normalize.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/packagers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/packagers/index.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/packagers/npm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/packagers/npm.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/packagers/yarn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/packagers/yarn.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/serverless.config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/serverless.config.spec.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/serverless.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/serverless.config.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/serverless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/serverless.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/target.schedulers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/target.schedulers.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/types.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/typescript.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/typescript.spec.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/versions.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/webpack.stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/webpack.stats.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/with-externals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/with-externals.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/utils/with-patterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/utils/with-patterns.ts -------------------------------------------------------------------------------- /libs/nx-serverless/src/webpack/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/src/webpack/webpack.config.ts -------------------------------------------------------------------------------- /libs/nx-serverless/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/tsconfig.json -------------------------------------------------------------------------------- /libs/nx-serverless/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/nx-serverless/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/nx-serverless/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/scully-plugin-angular-delay/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-angular-delay/.eslintrc.json -------------------------------------------------------------------------------- /libs/scully-plugin-angular-delay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-angular-delay/README.md -------------------------------------------------------------------------------- /libs/scully-plugin-angular-delay/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-angular-delay/jest.config.ts -------------------------------------------------------------------------------- /libs/scully-plugin-angular-delay/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-angular-delay/package.json -------------------------------------------------------------------------------- /libs/scully-plugin-angular-delay/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-angular-delay/project.json -------------------------------------------------------------------------------- /libs/scully-plugin-angular-delay/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-angular-delay/src/index.ts -------------------------------------------------------------------------------- /libs/scully-plugin-angular-delay/src/lib/scully-plugin-angular-delay.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-angular-delay/src/lib/scully-plugin-angular-delay.spec.ts -------------------------------------------------------------------------------- /libs/scully-plugin-angular-delay/src/lib/scully-plugin-angular-delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-angular-delay/src/lib/scully-plugin-angular-delay.ts -------------------------------------------------------------------------------- /libs/scully-plugin-angular-delay/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-angular-delay/tsconfig.json -------------------------------------------------------------------------------- /libs/scully-plugin-angular-delay/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-angular-delay/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/scully-plugin-angular-delay/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-angular-delay/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/scully-plugin-google-analytics/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-google-analytics/.eslintrc.json -------------------------------------------------------------------------------- /libs/scully-plugin-google-analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-google-analytics/README.md -------------------------------------------------------------------------------- /libs/scully-plugin-google-analytics/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-google-analytics/jest.config.ts -------------------------------------------------------------------------------- /libs/scully-plugin-google-analytics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-google-analytics/package.json -------------------------------------------------------------------------------- /libs/scully-plugin-google-analytics/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-google-analytics/project.json -------------------------------------------------------------------------------- /libs/scully-plugin-google-analytics/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-google-analytics/src/index.ts -------------------------------------------------------------------------------- /libs/scully-plugin-google-analytics/src/lib/scully-plugin-google-analytics.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-google-analytics/src/lib/scully-plugin-google-analytics.spec.ts -------------------------------------------------------------------------------- /libs/scully-plugin-google-analytics/src/lib/scully-plugin-google-analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-google-analytics/src/lib/scully-plugin-google-analytics.ts -------------------------------------------------------------------------------- /libs/scully-plugin-google-analytics/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-google-analytics/tsconfig.json -------------------------------------------------------------------------------- /libs/scully-plugin-google-analytics/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-google-analytics/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/scully-plugin-google-analytics/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-google-analytics/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/scully-plugin-lazy-load-picture-tag/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-lazy-load-picture-tag/.eslintrc.json -------------------------------------------------------------------------------- /libs/scully-plugin-lazy-load-picture-tag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-lazy-load-picture-tag/README.md -------------------------------------------------------------------------------- /libs/scully-plugin-lazy-load-picture-tag/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-lazy-load-picture-tag/jest.config.ts -------------------------------------------------------------------------------- /libs/scully-plugin-lazy-load-picture-tag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-lazy-load-picture-tag/package.json -------------------------------------------------------------------------------- /libs/scully-plugin-lazy-load-picture-tag/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-lazy-load-picture-tag/project.json -------------------------------------------------------------------------------- /libs/scully-plugin-lazy-load-picture-tag/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-lazy-load-picture-tag/src/index.ts -------------------------------------------------------------------------------- /libs/scully-plugin-lazy-load-picture-tag/src/lib/scully-plugin-lazy-load-picture-tag.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-lazy-load-picture-tag/src/lib/scully-plugin-lazy-load-picture-tag.spec.ts -------------------------------------------------------------------------------- /libs/scully-plugin-lazy-load-picture-tag/src/lib/scully-plugin-lazy-load-picture-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-lazy-load-picture-tag/src/lib/scully-plugin-lazy-load-picture-tag.ts -------------------------------------------------------------------------------- /libs/scully-plugin-lazy-load-picture-tag/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-lazy-load-picture-tag/tsconfig.json -------------------------------------------------------------------------------- /libs/scully-plugin-lazy-load-picture-tag/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-lazy-load-picture-tag/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/scully-plugin-lazy-load-picture-tag/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/libs/scully-plugin-lazy-load-picture-tag/tsconfig.spec.json -------------------------------------------------------------------------------- /migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/migrations.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/nx.json -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/output.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/package.json -------------------------------------------------------------------------------- /scripts/commit-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/scripts/commit-lint.js -------------------------------------------------------------------------------- /scully.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/scripts/local-registry/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/tools/scripts/local-registry/config.yml -------------------------------------------------------------------------------- /tools/scripts/patch-package-versions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/tools/scripts/patch-package-versions/index.ts -------------------------------------------------------------------------------- /tools/scripts/publish-all/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/tools/scripts/publish-all/index.ts -------------------------------------------------------------------------------- /tools/scripts/publish-beta/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/tools/scripts/publish-beta/index.ts -------------------------------------------------------------------------------- /tools/scripts/publish-nx-serverless/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/tools/scripts/publish-nx-serverless/index.ts -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tools/utils/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/tools/utils/fs.ts -------------------------------------------------------------------------------- /tools/utils/get-affected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/tools/utils/get-affected.ts -------------------------------------------------------------------------------- /tools/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/tools/utils/index.ts -------------------------------------------------------------------------------- /tools/utils/nx.ts: -------------------------------------------------------------------------------- 1 | export function isDryRun() { 2 | return process.argv.includes('--dry-run'); 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tslint-to-eslint-config.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowaccount/nx-plugins/HEAD/yarn.lock --------------------------------------------------------------------------------