├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc.js ├── .git-blame-ignore-revs ├── .github ├── CODEOWNERS └── dependabot.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .release-please-manifest.json ├── commitlint.config.js ├── contributing.md ├── core ├── cli │ ├── .editorconfig │ ├── CHANGELOG.md │ ├── bin │ │ ├── run │ │ └── run.cmd │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── config.ts │ │ ├── config │ │ │ ├── hash.ts │ │ │ └── validate-plugins.ts │ │ ├── fetch.ts │ │ ├── help.ts │ │ ├── index.ts │ │ ├── init.ts │ │ ├── install.ts │ │ ├── messages.ts │ │ ├── plugin.ts │ │ ├── plugin │ │ │ ├── entry-point.ts │ │ │ ├── is-descendent.ts │ │ │ ├── merge-commands.ts │ │ │ ├── merge-hooks.ts │ │ │ ├── merge-inits.ts │ │ │ ├── merge-plugin-options.ts │ │ │ ├── merge-task-options.ts │ │ │ ├── merge-tasks.ts │ │ │ ├── options.ts │ │ │ ├── reduce-installations.ts │ │ │ ├── require-resolve.ts │ │ │ └── resolve-root.ts │ │ ├── rc-file.ts │ │ └── tasks.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── config.test.ts.snap │ │ ├── config.test.ts │ │ ├── files │ │ │ ├── conflict-resolution │ │ │ │ └── .toolkitrc.yml │ │ │ ├── conflicted │ │ │ │ └── .toolkitrc.yml │ │ │ ├── cousins │ │ │ │ └── .toolkitrc.yml │ │ │ ├── duplicate │ │ │ │ └── .toolkitrc.yml │ │ │ ├── multiple-hook-options │ │ │ │ └── .toolkitrc.yml │ │ │ ├── successful │ │ │ │ └── .toolkitrc.yml │ │ │ └── with-index │ │ │ │ ├── .toolkitrc.yml │ │ │ │ └── index.js │ │ ├── helpers.ts │ │ ├── index.test.ts │ │ ├── options.test.ts │ │ └── resolve-root.test.ts │ ├── tsconfig.json │ └── tsconfig.test.json ├── create │ ├── CHANGELOG.md │ ├── bin │ │ └── create-tool-kit │ ├── files │ │ └── oidc-cloudformation.yml │ ├── package.json │ ├── src │ │ ├── augmentations.d.ts │ │ ├── bizOps.ts │ │ ├── declarations.d.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── makefile.ts │ │ └── prompts │ │ │ ├── confirmation.ts │ │ │ ├── conflicts.ts │ │ │ ├── main.ts │ │ │ ├── oidc.ts │ │ │ ├── options.ts │ │ │ ├── scheduledPipeline.ts │ │ │ └── systemCode.ts │ └── tsconfig.json └── sandbox │ ├── .gitignore │ ├── jest.config.js │ └── readme.md ├── docs ├── concepts.md ├── developing-tool-kit.md ├── extending-tool-kit.md ├── migration-guides │ └── v4.md ├── resolving-plugin-conflicts.md └── tool-kit-principles.md ├── etc ├── concepts.sketch ├── installing-hook.svg ├── logo.sketch ├── logo.svg ├── plugin.svg └── running-command.svg ├── jest.config.base.js ├── jest.config.js ├── jest └── serializers │ ├── aggregate-error.js │ └── tool-kit-error.js ├── lib ├── base │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ ├── base.ts │ │ ├── hook.ts │ │ ├── index.ts │ │ ├── init.ts │ │ ├── symbols.ts │ │ ├── task.ts │ │ └── type-utils.ts │ └── tsconfig.json ├── config │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── conflict │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── doppler │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── schema.ts │ ├── test │ │ └── index.test.ts │ └── tsconfig.json ├── error │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── logger │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ ├── format.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── styles.ts │ │ └── transports.ts │ └── tsconfig.json ├── plugin │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── root-schema.ts │ └── tsconfig.json ├── state │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── validated │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── index.ts │ ├── test │ │ └── index.test.ts │ └── tsconfig.json └── wait-for-ok │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ └── index.ts │ └── tsconfig.json ├── orb ├── .circleci │ └── README.md ├── .gitignore ├── .yamllint ├── CHANGELOG.md ├── README.md ├── src │ ├── @orb.yml │ ├── README.md │ ├── commands │ │ ├── README.md │ │ ├── attach-workspace.yml │ │ ├── persist-workspace.yml │ │ └── serverless-assume-role.yml │ ├── executors │ │ └── default.yml │ ├── jobs │ │ ├── README.md │ │ ├── build.yml │ │ ├── deploy-production.yml │ │ ├── deploy-review.yml │ │ ├── deploy-staging.yml │ │ ├── e2e-test-review.yml │ │ ├── e2e-test-staging.yml │ │ ├── heroku-promote.yml │ │ ├── heroku-provision.yml │ │ ├── heroku-staging.yml │ │ ├── publish-tag.yml │ │ ├── publish.yml │ │ ├── setup.yml │ │ └── test.yml │ └── tests │ │ └── README.md └── version.txt ├── package.json ├── plugins ├── aws │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ ├── src │ │ └── tasks │ │ │ └── assume-role.ts │ └── tsconfig.json ├── babel │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ └── tasks │ │ │ └── babel.ts │ ├── test │ │ ├── files │ │ │ ├── babel.config.json │ │ │ └── index.js │ │ └── tasks │ │ │ └── babel.test.ts │ └── tsconfig.json ├── backend-heroku-app │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ └── readme.md ├── backend-serverless-app │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ └── readme.md ├── circleci-deploy │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── test │ │ ├── __snapshots__ │ │ │ └── circleci-deploy.test.ts.snap │ │ ├── circleci-deploy.test.ts │ │ └── files │ │ │ └── configs │ │ │ └── base │ │ │ └── .toolkitrc.yml │ └── tsconfig.json ├── circleci-npm │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── test │ │ ├── __snapshots__ │ │ │ └── circleci-npm.test.ts.snap │ │ └── circleci-npm.test.ts │ └── tsconfig.json ├── circleci │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── circleci-config.ts │ │ ├── init-env-vars.ts │ │ └── schemas │ │ │ ├── hook.ts │ │ │ └── plugin.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── circleci-config.test.ts.snap │ │ ├── circleci-config.test.ts │ │ └── files │ │ │ ├── configs │ │ │ └── base │ │ │ │ └── .toolkitrc.yml │ │ │ ├── managed │ │ │ ├── without-job │ │ │ │ └── .circleci │ │ │ │ │ └── config.yml │ │ │ └── without-workflow-job │ │ │ │ └── .circleci │ │ │ │ └── config.yml │ │ │ └── unmanaged │ │ │ ├── with-workflow-job │ │ │ └── .circleci │ │ │ │ └── config.yml │ │ │ ├── without-tool-kit │ │ │ └── .circleci │ │ │ │ └── config.yml │ │ │ └── without-workflow-job │ │ │ └── .circleci │ │ │ └── config.yml │ └── tsconfig.json ├── cloudsmith │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ ├── src │ │ └── schema.ts │ └── tsconfig.json ├── commitlint │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ └── tasks │ │ │ └── commitlint.ts │ └── tsconfig.json ├── component │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── containerised-app-with-assets │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ └── readme.md ├── containerised-app │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ └── schema.js ├── cypress │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── index.ts │ │ └── tasks │ │ │ └── cypress.ts │ └── tsconfig.json ├── docker │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── image-info.ts │ │ ├── schema.ts │ │ └── tasks │ │ │ ├── auth-cloudsmith.ts │ │ │ ├── build.ts │ │ │ └── push.ts │ └── tsconfig.json ├── eslint │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ └── tasks │ │ │ └── eslint.ts │ ├── test │ │ └── tasks │ │ │ └── eslint.test.ts │ └── tsconfig.json ├── frontend-app │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ └── readme.md ├── hako │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── get-app-details.ts │ │ ├── hako.ts │ │ └── tasks │ │ │ ├── delete.ts │ │ │ └── deploy.ts │ └── tsconfig.json ├── heroku │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── buildHerokuReviewApp.ts │ │ ├── checkIfStagingUpdated.ts │ │ ├── createBuild.ts │ │ ├── declarations.d.ts │ │ ├── getHerokuReviewApp.ts │ │ ├── getHerokuStagingApp.ts │ │ ├── getPipelineCouplings.ts │ │ ├── githubApi.ts │ │ ├── gtg.ts │ │ ├── herokuClient.ts │ │ ├── promoteStagingToProduction.ts │ │ ├── repeatedCheckForBuildSuccess.ts │ │ ├── repeatedCheckForSuccessStatus.ts │ │ ├── scaleDyno.ts │ │ ├── schema.ts │ │ ├── setStagingSlug.ts │ │ └── tasks │ │ │ ├── production.ts │ │ │ ├── review.ts │ │ │ ├── staging.ts │ │ │ └── teardown.ts │ ├── test │ │ ├── createBuild.test.ts │ │ ├── getHerokuReviewApp.test.ts │ │ ├── getHerokuStagingApp.test.ts │ │ ├── getPipelineCouplings.test.ts │ │ ├── gtg.test.ts │ │ ├── promoteStagingToProduction.test.ts │ │ ├── repeatedCheckForBuildSuccess.test.ts │ │ ├── repeatedCheckForSuccessStatus.test.ts │ │ ├── scaleDyno.test.ts │ │ ├── setStagingSlug.test.ts │ │ └── tasks │ │ │ ├── production.test.ts │ │ │ ├── review.test.ts │ │ │ ├── staging.test.ts │ │ │ └── teardown.test.ts │ └── tsconfig.json ├── husky-npm │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.js │ ├── package.json │ └── tsconfig.json ├── jest │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ └── tasks │ │ │ └── jest.ts │ ├── tests │ │ └── jest-plugin.test.ts │ └── tsconfig.json ├── lint-staged-npm │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ └── schema.ts │ └── tsconfig.json ├── lint-staged │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── declarations.d.ts │ │ └── tasks │ │ │ └── lint-staged.ts │ └── tsconfig.json ├── mocha │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ └── tasks │ │ │ └── mocha.ts │ ├── test │ │ ├── files │ │ │ ├── fail │ │ │ │ └── test.js │ │ │ └── pass │ │ │ │ └── test.js │ │ └── tasks │ │ │ └── mocha.test.ts │ └── tsconfig.json ├── monorepo │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── load-workspace-configs.ts │ │ └── tasks │ │ │ └── workspace-command.ts │ ├── test │ │ ├── __snapshots__ │ │ │ └── load-workspace-configs.test.ts.snap │ │ ├── files │ │ │ ├── invalid │ │ │ │ ├── a │ │ │ │ │ ├── .toolkitrc.yml │ │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ │ ├── .toolkitrc.yml │ │ │ │ │ └── package.json │ │ │ │ ├── c │ │ │ │ │ ├── .toolkitrc.yml │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ └── successful │ │ │ │ ├── a │ │ │ │ ├── .toolkitrc.yml │ │ │ │ └── package.json │ │ │ │ ├── b │ │ │ │ ├── .toolkitrc.yml │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ └── load-workspace-configs.test.ts │ └── tsconfig.json ├── n-test │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── README.md │ ├── __mocks__ │ │ └── puppeteer.ts │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── tasks │ │ │ └── n-test.ts │ │ └── types │ │ │ └── n-test.d.ts │ ├── test │ │ ├── files │ │ │ └── smoke.js │ │ └── tasks │ │ │ └── n-test.test.ts │ ├── tsconfig.json │ └── tsconfig.test.json ├── next-router │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── schema.ts │ │ ├── tasks │ │ │ └── next-router.ts │ │ └── types │ │ │ └── ft-next-router.d.ts │ └── tsconfig.json ├── node-test │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ ├── src │ │ └── tasks │ │ │ └── node-test.ts │ └── tsconfig.json ├── node │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ ├── src │ │ └── tasks │ │ │ └── node.ts │ └── tsconfig.json ├── nodemon │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ ├── src │ │ └── tasks │ │ │ └── nodemon.ts │ └── tsconfig.json ├── npm │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── tasks │ │ │ ├── prune.ts │ │ │ └── publish.ts │ │ └── types │ │ │ └── declarations.d.ts │ ├── test │ │ └── npm-publish.test.ts │ └── tsconfig.json ├── package-json-hook │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── package-json-helper.ts │ │ └── schema.ts │ ├── test │ │ ├── files │ │ │ ├── existing-hook │ │ │ │ └── package.json │ │ │ ├── multiple-hooks │ │ │ │ └── package.json │ │ │ ├── with-hook │ │ │ │ └── package.json │ │ │ └── without-hook │ │ │ │ └── package.json │ │ └── index.test.ts │ └── tsconfig.json ├── parallel │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ └── tasks │ │ │ └── parallel.ts │ ├── test │ │ └── tasks │ │ │ └── parallel.test.ts │ └── tsconfig.json ├── prettier │ ├── .gitignore │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ └── tasks │ │ │ └── prettier.ts │ ├── test │ │ ├── .prettierrc-test.json │ │ ├── files │ │ │ └── fixtures │ │ │ │ ├── formatted-config-file.ts │ │ │ │ ├── formatted-default.ts │ │ │ │ └── unformatted.ts │ │ └── tasks │ │ │ └── prettier.test.ts │ └── tsconfig.json ├── serverless │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── schema.ts │ │ └── tasks │ │ │ ├── deploy.ts │ │ │ ├── provision.ts │ │ │ ├── run.ts │ │ │ └── teardown.ts │ └── tsconfig.json ├── typescript │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ │ └── tasks │ │ │ └── typescript.ts │ ├── test │ │ └── tasks │ │ │ └── typescript.test.ts │ └── tsconfig.json ├── upload-assets-to-s3 │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.js │ ├── package.json │ ├── src │ │ └── tasks │ │ │ └── upload-assets-to-s3.ts │ ├── test │ │ ├── files │ │ │ ├── nested │ │ │ │ └── test.js.gz │ │ │ ├── test.css │ │ │ ├── test.js │ │ │ ├── test.json │ │ │ └── test.ts │ │ └── tasks │ │ │ └── upload-assets-to-s3.test.ts │ └── tsconfig.json └── webpack │ ├── .gitignore │ ├── .toolkitrc.yml │ ├── CHANGELOG.md │ ├── jest.config.js │ ├── package.json │ ├── readme.md │ ├── src │ └── tasks │ │ └── webpack.ts │ ├── test │ └── tasks │ │ └── webpack.test.ts │ └── tsconfig.json ├── pull_request_template.md ├── readme.md ├── release-please-config.json ├── scripts ├── circleci-publish.sh ├── clean-up-packages.sh ├── create-plugin.js ├── generate-and-commit-docs.sh └── generate-docs.js ├── tsconfig.json ├── tsconfig.settings.json └── types └── financial-times__package-json ├── index.d.ts └── package.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | */**/lib/ 2 | **/test/files 3 | core/sandbox 4 | scripts 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | d3920defa32a6c86139a20c2574a5225a0cf6b24 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | README.md 2 | **/test/files 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/.release-please-manifest.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/contributing.md -------------------------------------------------------------------------------- /core/cli/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/.editorconfig -------------------------------------------------------------------------------- /core/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/CHANGELOG.md -------------------------------------------------------------------------------- /core/cli/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/bin/run -------------------------------------------------------------------------------- /core/cli/bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /core/cli/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/jest.config.js -------------------------------------------------------------------------------- /core/cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/package.json -------------------------------------------------------------------------------- /core/cli/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/readme.md -------------------------------------------------------------------------------- /core/cli/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/config.ts -------------------------------------------------------------------------------- /core/cli/src/config/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/config/hash.ts -------------------------------------------------------------------------------- /core/cli/src/config/validate-plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/config/validate-plugins.ts -------------------------------------------------------------------------------- /core/cli/src/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/fetch.ts -------------------------------------------------------------------------------- /core/cli/src/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/help.ts -------------------------------------------------------------------------------- /core/cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/index.ts -------------------------------------------------------------------------------- /core/cli/src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/init.ts -------------------------------------------------------------------------------- /core/cli/src/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/install.ts -------------------------------------------------------------------------------- /core/cli/src/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/messages.ts -------------------------------------------------------------------------------- /core/cli/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin.ts -------------------------------------------------------------------------------- /core/cli/src/plugin/entry-point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin/entry-point.ts -------------------------------------------------------------------------------- /core/cli/src/plugin/is-descendent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin/is-descendent.ts -------------------------------------------------------------------------------- /core/cli/src/plugin/merge-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin/merge-commands.ts -------------------------------------------------------------------------------- /core/cli/src/plugin/merge-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin/merge-hooks.ts -------------------------------------------------------------------------------- /core/cli/src/plugin/merge-inits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin/merge-inits.ts -------------------------------------------------------------------------------- /core/cli/src/plugin/merge-plugin-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin/merge-plugin-options.ts -------------------------------------------------------------------------------- /core/cli/src/plugin/merge-task-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin/merge-task-options.ts -------------------------------------------------------------------------------- /core/cli/src/plugin/merge-tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin/merge-tasks.ts -------------------------------------------------------------------------------- /core/cli/src/plugin/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin/options.ts -------------------------------------------------------------------------------- /core/cli/src/plugin/reduce-installations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin/reduce-installations.ts -------------------------------------------------------------------------------- /core/cli/src/plugin/require-resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin/require-resolve.ts -------------------------------------------------------------------------------- /core/cli/src/plugin/resolve-root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/plugin/resolve-root.ts -------------------------------------------------------------------------------- /core/cli/src/rc-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/rc-file.ts -------------------------------------------------------------------------------- /core/cli/src/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/src/tasks.ts -------------------------------------------------------------------------------- /core/cli/test/__snapshots__/config.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/test/__snapshots__/config.test.ts.snap -------------------------------------------------------------------------------- /core/cli/test/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/test/config.test.ts -------------------------------------------------------------------------------- /core/cli/test/files/conflict-resolution/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/test/files/conflict-resolution/.toolkitrc.yml -------------------------------------------------------------------------------- /core/cli/test/files/conflicted/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/test/files/conflicted/.toolkitrc.yml -------------------------------------------------------------------------------- /core/cli/test/files/cousins/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/test/files/cousins/.toolkitrc.yml -------------------------------------------------------------------------------- /core/cli/test/files/duplicate/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/test/files/duplicate/.toolkitrc.yml -------------------------------------------------------------------------------- /core/cli/test/files/multiple-hook-options/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/test/files/multiple-hook-options/.toolkitrc.yml -------------------------------------------------------------------------------- /core/cli/test/files/successful/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/test/files/successful/.toolkitrc.yml -------------------------------------------------------------------------------- /core/cli/test/files/with-index/.toolkitrc.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/cli/test/files/with-index/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/cli/test/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/test/helpers.ts -------------------------------------------------------------------------------- /core/cli/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/test/index.test.ts -------------------------------------------------------------------------------- /core/cli/test/options.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/test/options.test.ts -------------------------------------------------------------------------------- /core/cli/test/resolve-root.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/test/resolve-root.test.ts -------------------------------------------------------------------------------- /core/cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/tsconfig.json -------------------------------------------------------------------------------- /core/cli/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/cli/tsconfig.test.json -------------------------------------------------------------------------------- /core/create/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/CHANGELOG.md -------------------------------------------------------------------------------- /core/create/bin/create-tool-kit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/index.js') 3 | -------------------------------------------------------------------------------- /core/create/files/oidc-cloudformation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/files/oidc-cloudformation.yml -------------------------------------------------------------------------------- /core/create/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/package.json -------------------------------------------------------------------------------- /core/create/src/augmentations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/augmentations.d.ts -------------------------------------------------------------------------------- /core/create/src/bizOps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/bizOps.ts -------------------------------------------------------------------------------- /core/create/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/declarations.d.ts -------------------------------------------------------------------------------- /core/create/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/index.ts -------------------------------------------------------------------------------- /core/create/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/logger.ts -------------------------------------------------------------------------------- /core/create/src/makefile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/makefile.ts -------------------------------------------------------------------------------- /core/create/src/prompts/confirmation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/prompts/confirmation.ts -------------------------------------------------------------------------------- /core/create/src/prompts/conflicts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/prompts/conflicts.ts -------------------------------------------------------------------------------- /core/create/src/prompts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/prompts/main.ts -------------------------------------------------------------------------------- /core/create/src/prompts/oidc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/prompts/oidc.ts -------------------------------------------------------------------------------- /core/create/src/prompts/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/prompts/options.ts -------------------------------------------------------------------------------- /core/create/src/prompts/scheduledPipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/prompts/scheduledPipeline.ts -------------------------------------------------------------------------------- /core/create/src/prompts/systemCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/src/prompts/systemCode.ts -------------------------------------------------------------------------------- /core/create/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/create/tsconfig.json -------------------------------------------------------------------------------- /core/sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !readme.md 3 | !.gitignore 4 | !jest.config.js 5 | -------------------------------------------------------------------------------- /core/sandbox/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/sandbox/jest.config.js -------------------------------------------------------------------------------- /core/sandbox/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/core/sandbox/readme.md -------------------------------------------------------------------------------- /docs/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/docs/concepts.md -------------------------------------------------------------------------------- /docs/developing-tool-kit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/docs/developing-tool-kit.md -------------------------------------------------------------------------------- /docs/extending-tool-kit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/docs/extending-tool-kit.md -------------------------------------------------------------------------------- /docs/migration-guides/v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/docs/migration-guides/v4.md -------------------------------------------------------------------------------- /docs/resolving-plugin-conflicts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/docs/resolving-plugin-conflicts.md -------------------------------------------------------------------------------- /docs/tool-kit-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/docs/tool-kit-principles.md -------------------------------------------------------------------------------- /etc/concepts.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/etc/concepts.sketch -------------------------------------------------------------------------------- /etc/installing-hook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/etc/installing-hook.svg -------------------------------------------------------------------------------- /etc/logo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/etc/logo.sketch -------------------------------------------------------------------------------- /etc/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/etc/logo.svg -------------------------------------------------------------------------------- /etc/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/etc/plugin.svg -------------------------------------------------------------------------------- /etc/running-command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/etc/running-command.svg -------------------------------------------------------------------------------- /jest.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/jest.config.base.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest/serializers/aggregate-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/jest/serializers/aggregate-error.js -------------------------------------------------------------------------------- /jest/serializers/tool-kit-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/jest/serializers/tool-kit-error.js -------------------------------------------------------------------------------- /lib/base/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/base/CHANGELOG.md -------------------------------------------------------------------------------- /lib/base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/base/package.json -------------------------------------------------------------------------------- /lib/base/src/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/base/src/base.ts -------------------------------------------------------------------------------- /lib/base/src/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/base/src/hook.ts -------------------------------------------------------------------------------- /lib/base/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/base/src/index.ts -------------------------------------------------------------------------------- /lib/base/src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/base/src/init.ts -------------------------------------------------------------------------------- /lib/base/src/symbols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/base/src/symbols.ts -------------------------------------------------------------------------------- /lib/base/src/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/base/src/task.ts -------------------------------------------------------------------------------- /lib/base/src/type-utils.ts: -------------------------------------------------------------------------------- 1 | export type Default = T extends undefined ? D : T 2 | -------------------------------------------------------------------------------- /lib/base/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/base/tsconfig.json -------------------------------------------------------------------------------- /lib/config/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/config/CHANGELOG.md -------------------------------------------------------------------------------- /lib/config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/config/package.json -------------------------------------------------------------------------------- /lib/config/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/config/src/index.ts -------------------------------------------------------------------------------- /lib/config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/config/tsconfig.json -------------------------------------------------------------------------------- /lib/conflict/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/conflict/CHANGELOG.md -------------------------------------------------------------------------------- /lib/conflict/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/conflict/package.json -------------------------------------------------------------------------------- /lib/conflict/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/conflict/src/index.ts -------------------------------------------------------------------------------- /lib/conflict/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/conflict/tsconfig.json -------------------------------------------------------------------------------- /lib/doppler/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/doppler/.toolkitrc.yml -------------------------------------------------------------------------------- /lib/doppler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/doppler/CHANGELOG.md -------------------------------------------------------------------------------- /lib/doppler/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/doppler/jest.config.js -------------------------------------------------------------------------------- /lib/doppler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/doppler/package.json -------------------------------------------------------------------------------- /lib/doppler/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/doppler/src/index.ts -------------------------------------------------------------------------------- /lib/doppler/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/doppler/src/schema.ts -------------------------------------------------------------------------------- /lib/doppler/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/doppler/test/index.test.ts -------------------------------------------------------------------------------- /lib/doppler/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/doppler/tsconfig.json -------------------------------------------------------------------------------- /lib/error/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/error/CHANGELOG.md -------------------------------------------------------------------------------- /lib/error/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/error/package.json -------------------------------------------------------------------------------- /lib/error/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/error/src/index.ts -------------------------------------------------------------------------------- /lib/error/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/error/tsconfig.json -------------------------------------------------------------------------------- /lib/logger/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/logger/CHANGELOG.md -------------------------------------------------------------------------------- /lib/logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/logger/package.json -------------------------------------------------------------------------------- /lib/logger/src/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/logger/src/format.ts -------------------------------------------------------------------------------- /lib/logger/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/logger/src/helpers.ts -------------------------------------------------------------------------------- /lib/logger/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/logger/src/index.ts -------------------------------------------------------------------------------- /lib/logger/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/logger/src/logger.ts -------------------------------------------------------------------------------- /lib/logger/src/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/logger/src/styles.ts -------------------------------------------------------------------------------- /lib/logger/src/transports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/logger/src/transports.ts -------------------------------------------------------------------------------- /lib/logger/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/logger/tsconfig.json -------------------------------------------------------------------------------- /lib/plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/plugin/CHANGELOG.md -------------------------------------------------------------------------------- /lib/plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/plugin/package.json -------------------------------------------------------------------------------- /lib/plugin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/plugin/src/index.ts -------------------------------------------------------------------------------- /lib/plugin/src/root-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/plugin/src/root-schema.ts -------------------------------------------------------------------------------- /lib/plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/plugin/tsconfig.json -------------------------------------------------------------------------------- /lib/state/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/state/CHANGELOG.md -------------------------------------------------------------------------------- /lib/state/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/state/package.json -------------------------------------------------------------------------------- /lib/state/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/state/src/index.ts -------------------------------------------------------------------------------- /lib/state/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/state/tsconfig.json -------------------------------------------------------------------------------- /lib/validated/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/validated/CHANGELOG.md -------------------------------------------------------------------------------- /lib/validated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/validated/README.md -------------------------------------------------------------------------------- /lib/validated/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/validated/jest.config.js -------------------------------------------------------------------------------- /lib/validated/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/validated/package.json -------------------------------------------------------------------------------- /lib/validated/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/validated/src/index.ts -------------------------------------------------------------------------------- /lib/validated/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/validated/test/index.test.ts -------------------------------------------------------------------------------- /lib/validated/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/validated/tsconfig.json -------------------------------------------------------------------------------- /lib/wait-for-ok/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/wait-for-ok/CHANGELOG.md -------------------------------------------------------------------------------- /lib/wait-for-ok/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/wait-for-ok/package.json -------------------------------------------------------------------------------- /lib/wait-for-ok/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/wait-for-ok/src/index.ts -------------------------------------------------------------------------------- /lib/wait-for-ok/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/lib/wait-for-ok/tsconfig.json -------------------------------------------------------------------------------- /orb/.circleci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/.circleci/README.md -------------------------------------------------------------------------------- /orb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/.gitignore -------------------------------------------------------------------------------- /orb/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/.yamllint -------------------------------------------------------------------------------- /orb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/CHANGELOG.md -------------------------------------------------------------------------------- /orb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/README.md -------------------------------------------------------------------------------- /orb/src/@orb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/@orb.yml -------------------------------------------------------------------------------- /orb/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/README.md -------------------------------------------------------------------------------- /orb/src/commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/commands/README.md -------------------------------------------------------------------------------- /orb/src/commands/attach-workspace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/commands/attach-workspace.yml -------------------------------------------------------------------------------- /orb/src/commands/persist-workspace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/commands/persist-workspace.yml -------------------------------------------------------------------------------- /orb/src/commands/serverless-assume-role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/commands/serverless-assume-role.yml -------------------------------------------------------------------------------- /orb/src/executors/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/executors/default.yml -------------------------------------------------------------------------------- /orb/src/jobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/README.md -------------------------------------------------------------------------------- /orb/src/jobs/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/build.yml -------------------------------------------------------------------------------- /orb/src/jobs/deploy-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/deploy-production.yml -------------------------------------------------------------------------------- /orb/src/jobs/deploy-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/deploy-review.yml -------------------------------------------------------------------------------- /orb/src/jobs/deploy-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/deploy-staging.yml -------------------------------------------------------------------------------- /orb/src/jobs/e2e-test-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/e2e-test-review.yml -------------------------------------------------------------------------------- /orb/src/jobs/e2e-test-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/e2e-test-staging.yml -------------------------------------------------------------------------------- /orb/src/jobs/heroku-promote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/heroku-promote.yml -------------------------------------------------------------------------------- /orb/src/jobs/heroku-provision.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/heroku-provision.yml -------------------------------------------------------------------------------- /orb/src/jobs/heroku-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/heroku-staging.yml -------------------------------------------------------------------------------- /orb/src/jobs/publish-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/publish-tag.yml -------------------------------------------------------------------------------- /orb/src/jobs/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/publish.yml -------------------------------------------------------------------------------- /orb/src/jobs/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/setup.yml -------------------------------------------------------------------------------- /orb/src/jobs/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/jobs/test.yml -------------------------------------------------------------------------------- /orb/src/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/orb/src/tests/README.md -------------------------------------------------------------------------------- /orb/version.txt: -------------------------------------------------------------------------------- 1 | 5.2.1 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/package.json -------------------------------------------------------------------------------- /plugins/aws/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/aws/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/aws/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/aws/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/aws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/aws/package.json -------------------------------------------------------------------------------- /plugins/aws/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/aws/readme.md -------------------------------------------------------------------------------- /plugins/aws/src/tasks/assume-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/aws/src/tasks/assume-role.ts -------------------------------------------------------------------------------- /plugins/aws/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/aws/tsconfig.json -------------------------------------------------------------------------------- /plugins/babel/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/babel/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/babel/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/babel/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/babel/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/babel/jest.config.js -------------------------------------------------------------------------------- /plugins/babel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/babel/package.json -------------------------------------------------------------------------------- /plugins/babel/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/babel/readme.md -------------------------------------------------------------------------------- /plugins/babel/src/tasks/babel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/babel/src/tasks/babel.ts -------------------------------------------------------------------------------- /plugins/babel/test/files/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/babel/test/files/babel.config.json -------------------------------------------------------------------------------- /plugins/babel/test/files/index.js: -------------------------------------------------------------------------------- 1 | export function test(x) { 2 | return x ?? 0 3 | } 4 | -------------------------------------------------------------------------------- /plugins/babel/test/tasks/babel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/babel/test/tasks/babel.test.ts -------------------------------------------------------------------------------- /plugins/babel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/babel/tsconfig.json -------------------------------------------------------------------------------- /plugins/backend-heroku-app/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/backend-heroku-app/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/backend-heroku-app/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/backend-heroku-app/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/backend-heroku-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/backend-heroku-app/package.json -------------------------------------------------------------------------------- /plugins/backend-heroku-app/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/backend-heroku-app/readme.md -------------------------------------------------------------------------------- /plugins/backend-serverless-app/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/backend-serverless-app/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/backend-serverless-app/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/backend-serverless-app/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/backend-serverless-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/backend-serverless-app/package.json -------------------------------------------------------------------------------- /plugins/backend-serverless-app/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/backend-serverless-app/readme.md -------------------------------------------------------------------------------- /plugins/circleci-deploy/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-deploy/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/circleci-deploy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-deploy/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/circleci-deploy/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-deploy/jest.config.js -------------------------------------------------------------------------------- /plugins/circleci-deploy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-deploy/package.json -------------------------------------------------------------------------------- /plugins/circleci-deploy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-deploy/readme.md -------------------------------------------------------------------------------- /plugins/circleci-deploy/test/__snapshots__/circleci-deploy.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-deploy/test/__snapshots__/circleci-deploy.test.ts.snap -------------------------------------------------------------------------------- /plugins/circleci-deploy/test/circleci-deploy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-deploy/test/circleci-deploy.test.ts -------------------------------------------------------------------------------- /plugins/circleci-deploy/test/files/configs/base/.toolkitrc.yml: -------------------------------------------------------------------------------- 1 | plugins: 2 | - @dotcom-tool-kit/circleci-deploy 3 | -------------------------------------------------------------------------------- /plugins/circleci-deploy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-deploy/tsconfig.json -------------------------------------------------------------------------------- /plugins/circleci-npm/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-npm/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/circleci-npm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-npm/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/circleci-npm/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-npm/jest.config.js -------------------------------------------------------------------------------- /plugins/circleci-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-npm/package.json -------------------------------------------------------------------------------- /plugins/circleci-npm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-npm/readme.md -------------------------------------------------------------------------------- /plugins/circleci-npm/test/__snapshots__/circleci-npm.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-npm/test/__snapshots__/circleci-npm.test.ts.snap -------------------------------------------------------------------------------- /plugins/circleci-npm/test/circleci-npm.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-npm/test/circleci-npm.test.ts -------------------------------------------------------------------------------- /plugins/circleci-npm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci-npm/tsconfig.json -------------------------------------------------------------------------------- /plugins/circleci/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/circleci/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/circleci/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/jest.config.js -------------------------------------------------------------------------------- /plugins/circleci/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/package.json -------------------------------------------------------------------------------- /plugins/circleci/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/readme.md -------------------------------------------------------------------------------- /plugins/circleci/src/circleci-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/src/circleci-config.ts -------------------------------------------------------------------------------- /plugins/circleci/src/init-env-vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/src/init-env-vars.ts -------------------------------------------------------------------------------- /plugins/circleci/src/schemas/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/src/schemas/hook.ts -------------------------------------------------------------------------------- /plugins/circleci/src/schemas/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/src/schemas/plugin.ts -------------------------------------------------------------------------------- /plugins/circleci/test/__snapshots__/circleci-config.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/test/__snapshots__/circleci-config.test.ts.snap -------------------------------------------------------------------------------- /plugins/circleci/test/circleci-config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/test/circleci-config.test.ts -------------------------------------------------------------------------------- /plugins/circleci/test/files/configs/base/.toolkitrc.yml: -------------------------------------------------------------------------------- 1 | plugins: 2 | - @dotcom-tool-kit/circleci 3 | -------------------------------------------------------------------------------- /plugins/circleci/test/files/managed/without-job/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/test/files/managed/without-job/.circleci/config.yml -------------------------------------------------------------------------------- /plugins/circleci/test/files/managed/without-workflow-job/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/test/files/managed/without-workflow-job/.circleci/config.yml -------------------------------------------------------------------------------- /plugins/circleci/test/files/unmanaged/with-workflow-job/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/test/files/unmanaged/with-workflow-job/.circleci/config.yml -------------------------------------------------------------------------------- /plugins/circleci/test/files/unmanaged/without-tool-kit/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/test/files/unmanaged/without-tool-kit/.circleci/config.yml -------------------------------------------------------------------------------- /plugins/circleci/test/files/unmanaged/without-workflow-job/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/test/files/unmanaged/without-workflow-job/.circleci/config.yml -------------------------------------------------------------------------------- /plugins/circleci/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/circleci/tsconfig.json -------------------------------------------------------------------------------- /plugins/cloudsmith/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/cloudsmith/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/cloudsmith/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/cloudsmith/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/cloudsmith/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/cloudsmith/package.json -------------------------------------------------------------------------------- /plugins/cloudsmith/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/cloudsmith/readme.md -------------------------------------------------------------------------------- /plugins/cloudsmith/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/cloudsmith/src/schema.ts -------------------------------------------------------------------------------- /plugins/cloudsmith/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/cloudsmith/tsconfig.json -------------------------------------------------------------------------------- /plugins/commitlint/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/commitlint/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/commitlint/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/commitlint/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/commitlint/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/commitlint/jest.config.js -------------------------------------------------------------------------------- /plugins/commitlint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/commitlint/package.json -------------------------------------------------------------------------------- /plugins/commitlint/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/commitlint/readme.md -------------------------------------------------------------------------------- /plugins/commitlint/src/tasks/commitlint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/commitlint/src/tasks/commitlint.ts -------------------------------------------------------------------------------- /plugins/commitlint/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/commitlint/tsconfig.json -------------------------------------------------------------------------------- /plugins/component/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/component/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/component/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/component/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/component/package.json -------------------------------------------------------------------------------- /plugins/component/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/component/readme.md -------------------------------------------------------------------------------- /plugins/component/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/component/tsconfig.json -------------------------------------------------------------------------------- /plugins/containerised-app-with-assets/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/containerised-app-with-assets/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/containerised-app-with-assets/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/containerised-app-with-assets/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/containerised-app-with-assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/containerised-app-with-assets/package.json -------------------------------------------------------------------------------- /plugins/containerised-app-with-assets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/containerised-app-with-assets/readme.md -------------------------------------------------------------------------------- /plugins/containerised-app/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/containerised-app/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/containerised-app/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/containerised-app/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/containerised-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/containerised-app/package.json -------------------------------------------------------------------------------- /plugins/containerised-app/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/containerised-app/readme.md -------------------------------------------------------------------------------- /plugins/containerised-app/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/containerised-app/schema.js -------------------------------------------------------------------------------- /plugins/cypress/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/cypress/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/cypress/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/cypress/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/cypress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/cypress/package.json -------------------------------------------------------------------------------- /plugins/cypress/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/cypress/readme.md -------------------------------------------------------------------------------- /plugins/cypress/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/cypress/src/tasks/cypress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/cypress/src/tasks/cypress.ts -------------------------------------------------------------------------------- /plugins/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/cypress/tsconfig.json -------------------------------------------------------------------------------- /plugins/docker/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/docker/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/docker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/docker/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/docker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/docker/package.json -------------------------------------------------------------------------------- /plugins/docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/docker/readme.md -------------------------------------------------------------------------------- /plugins/docker/src/image-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/docker/src/image-info.ts -------------------------------------------------------------------------------- /plugins/docker/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/docker/src/schema.ts -------------------------------------------------------------------------------- /plugins/docker/src/tasks/auth-cloudsmith.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/docker/src/tasks/auth-cloudsmith.ts -------------------------------------------------------------------------------- /plugins/docker/src/tasks/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/docker/src/tasks/build.ts -------------------------------------------------------------------------------- /plugins/docker/src/tasks/push.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/docker/src/tasks/push.ts -------------------------------------------------------------------------------- /plugins/docker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/docker/tsconfig.json -------------------------------------------------------------------------------- /plugins/eslint/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/eslint/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/eslint/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/eslint/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/eslint/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/eslint/jest.config.js -------------------------------------------------------------------------------- /plugins/eslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/eslint/package.json -------------------------------------------------------------------------------- /plugins/eslint/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/eslint/readme.md -------------------------------------------------------------------------------- /plugins/eslint/src/tasks/eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/eslint/src/tasks/eslint.ts -------------------------------------------------------------------------------- /plugins/eslint/test/tasks/eslint.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/eslint/test/tasks/eslint.test.ts -------------------------------------------------------------------------------- /plugins/eslint/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/eslint/tsconfig.json -------------------------------------------------------------------------------- /plugins/frontend-app/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/frontend-app/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/frontend-app/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/frontend-app/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/frontend-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/frontend-app/package.json -------------------------------------------------------------------------------- /plugins/frontend-app/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/frontend-app/readme.md -------------------------------------------------------------------------------- /plugins/hako/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/hako/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/hako/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/hako/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/hako/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/hako/package.json -------------------------------------------------------------------------------- /plugins/hako/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/hako/readme.md -------------------------------------------------------------------------------- /plugins/hako/src/get-app-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/hako/src/get-app-details.ts -------------------------------------------------------------------------------- /plugins/hako/src/hako.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/hako/src/hako.ts -------------------------------------------------------------------------------- /plugins/hako/src/tasks/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/hako/src/tasks/delete.ts -------------------------------------------------------------------------------- /plugins/hako/src/tasks/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/hako/src/tasks/deploy.ts -------------------------------------------------------------------------------- /plugins/hako/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/hako/tsconfig.json -------------------------------------------------------------------------------- /plugins/heroku/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/heroku/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/heroku/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/jest.config.js -------------------------------------------------------------------------------- /plugins/heroku/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/package.json -------------------------------------------------------------------------------- /plugins/heroku/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/readme.md -------------------------------------------------------------------------------- /plugins/heroku/src/buildHerokuReviewApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/buildHerokuReviewApp.ts -------------------------------------------------------------------------------- /plugins/heroku/src/checkIfStagingUpdated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/checkIfStagingUpdated.ts -------------------------------------------------------------------------------- /plugins/heroku/src/createBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/createBuild.ts -------------------------------------------------------------------------------- /plugins/heroku/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/declarations.d.ts -------------------------------------------------------------------------------- /plugins/heroku/src/getHerokuReviewApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/getHerokuReviewApp.ts -------------------------------------------------------------------------------- /plugins/heroku/src/getHerokuStagingApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/getHerokuStagingApp.ts -------------------------------------------------------------------------------- /plugins/heroku/src/getPipelineCouplings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/getPipelineCouplings.ts -------------------------------------------------------------------------------- /plugins/heroku/src/githubApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/githubApi.ts -------------------------------------------------------------------------------- /plugins/heroku/src/gtg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/gtg.ts -------------------------------------------------------------------------------- /plugins/heroku/src/herokuClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/herokuClient.ts -------------------------------------------------------------------------------- /plugins/heroku/src/promoteStagingToProduction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/promoteStagingToProduction.ts -------------------------------------------------------------------------------- /plugins/heroku/src/repeatedCheckForBuildSuccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/repeatedCheckForBuildSuccess.ts -------------------------------------------------------------------------------- /plugins/heroku/src/repeatedCheckForSuccessStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/repeatedCheckForSuccessStatus.ts -------------------------------------------------------------------------------- /plugins/heroku/src/scaleDyno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/scaleDyno.ts -------------------------------------------------------------------------------- /plugins/heroku/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/schema.ts -------------------------------------------------------------------------------- /plugins/heroku/src/setStagingSlug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/setStagingSlug.ts -------------------------------------------------------------------------------- /plugins/heroku/src/tasks/production.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/tasks/production.ts -------------------------------------------------------------------------------- /plugins/heroku/src/tasks/review.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/tasks/review.ts -------------------------------------------------------------------------------- /plugins/heroku/src/tasks/staging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/tasks/staging.ts -------------------------------------------------------------------------------- /plugins/heroku/src/tasks/teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/src/tasks/teardown.ts -------------------------------------------------------------------------------- /plugins/heroku/test/createBuild.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/createBuild.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/getHerokuReviewApp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/getHerokuReviewApp.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/getHerokuStagingApp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/getHerokuStagingApp.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/getPipelineCouplings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/getPipelineCouplings.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/gtg.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/gtg.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/promoteStagingToProduction.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/promoteStagingToProduction.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/repeatedCheckForBuildSuccess.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/repeatedCheckForBuildSuccess.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/repeatedCheckForSuccessStatus.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/repeatedCheckForSuccessStatus.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/scaleDyno.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/scaleDyno.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/setStagingSlug.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/setStagingSlug.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/tasks/production.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/tasks/production.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/tasks/review.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/tasks/review.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/tasks/staging.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/tasks/staging.test.ts -------------------------------------------------------------------------------- /plugins/heroku/test/tasks/teardown.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/test/tasks/teardown.test.ts -------------------------------------------------------------------------------- /plugins/heroku/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/heroku/tsconfig.json -------------------------------------------------------------------------------- /plugins/husky-npm/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/husky-npm/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/husky-npm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/husky-npm/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/husky-npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/husky-npm/README.md -------------------------------------------------------------------------------- /plugins/husky-npm/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/husky-npm/jest.config.js -------------------------------------------------------------------------------- /plugins/husky-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/husky-npm/package.json -------------------------------------------------------------------------------- /plugins/husky-npm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/husky-npm/tsconfig.json -------------------------------------------------------------------------------- /plugins/jest/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/jest/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/jest/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/jest/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/jest/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/jest/jest.config.js -------------------------------------------------------------------------------- /plugins/jest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/jest/package.json -------------------------------------------------------------------------------- /plugins/jest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/jest/readme.md -------------------------------------------------------------------------------- /plugins/jest/src/tasks/jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/jest/src/tasks/jest.ts -------------------------------------------------------------------------------- /plugins/jest/tests/jest-plugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/jest/tests/jest-plugin.test.ts -------------------------------------------------------------------------------- /plugins/jest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/jest/tsconfig.json -------------------------------------------------------------------------------- /plugins/lint-staged-npm/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged-npm/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/lint-staged-npm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged-npm/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/lint-staged-npm/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged-npm/jest.config.js -------------------------------------------------------------------------------- /plugins/lint-staged-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged-npm/package.json -------------------------------------------------------------------------------- /plugins/lint-staged-npm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged-npm/readme.md -------------------------------------------------------------------------------- /plugins/lint-staged-npm/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged-npm/src/schema.ts -------------------------------------------------------------------------------- /plugins/lint-staged-npm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged-npm/tsconfig.json -------------------------------------------------------------------------------- /plugins/lint-staged/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/lint-staged/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/lint-staged/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged/package.json -------------------------------------------------------------------------------- /plugins/lint-staged/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged/readme.md -------------------------------------------------------------------------------- /plugins/lint-staged/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged/src/declarations.d.ts -------------------------------------------------------------------------------- /plugins/lint-staged/src/tasks/lint-staged.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged/src/tasks/lint-staged.ts -------------------------------------------------------------------------------- /plugins/lint-staged/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/lint-staged/tsconfig.json -------------------------------------------------------------------------------- /plugins/mocha/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/mocha/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/mocha/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/mocha/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/mocha/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/mocha/jest.config.js -------------------------------------------------------------------------------- /plugins/mocha/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/mocha/package.json -------------------------------------------------------------------------------- /plugins/mocha/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/mocha/readme.md -------------------------------------------------------------------------------- /plugins/mocha/src/tasks/mocha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/mocha/src/tasks/mocha.ts -------------------------------------------------------------------------------- /plugins/mocha/test/files/fail/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/mocha/test/files/fail/test.js -------------------------------------------------------------------------------- /plugins/mocha/test/files/pass/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/mocha/test/files/pass/test.js -------------------------------------------------------------------------------- /plugins/mocha/test/tasks/mocha.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/mocha/test/tasks/mocha.test.ts -------------------------------------------------------------------------------- /plugins/mocha/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/mocha/tsconfig.json -------------------------------------------------------------------------------- /plugins/monorepo/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/monorepo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/monorepo/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/jest.config.js -------------------------------------------------------------------------------- /plugins/monorepo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/package.json -------------------------------------------------------------------------------- /plugins/monorepo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/readme.md -------------------------------------------------------------------------------- /plugins/monorepo/src/load-workspace-configs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/src/load-workspace-configs.ts -------------------------------------------------------------------------------- /plugins/monorepo/src/tasks/workspace-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/src/tasks/workspace-command.ts -------------------------------------------------------------------------------- /plugins/monorepo/test/__snapshots__/load-workspace-configs.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/test/__snapshots__/load-workspace-configs.test.ts.snap -------------------------------------------------------------------------------- /plugins/monorepo/test/files/invalid/a/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/test/files/invalid/a/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/monorepo/test/files/invalid/a/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@monorepo-plugin-tests/a" 3 | } 4 | -------------------------------------------------------------------------------- /plugins/monorepo/test/files/invalid/b/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/test/files/invalid/b/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/monorepo/test/files/invalid/b/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@monorepo-plugin-tests/b" 3 | } 4 | -------------------------------------------------------------------------------- /plugins/monorepo/test/files/invalid/c/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/test/files/invalid/c/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/monorepo/test/files/invalid/c/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@monorepo-plugin-tests/c" 3 | } 4 | -------------------------------------------------------------------------------- /plugins/monorepo/test/files/invalid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/test/files/invalid/package.json -------------------------------------------------------------------------------- /plugins/monorepo/test/files/successful/a/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/test/files/successful/a/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/monorepo/test/files/successful/a/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@monorepo-plugin-tests/a" 3 | } 4 | -------------------------------------------------------------------------------- /plugins/monorepo/test/files/successful/b/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/test/files/successful/b/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/monorepo/test/files/successful/b/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@monorepo-plugin-tests/b" 3 | } 4 | -------------------------------------------------------------------------------- /plugins/monorepo/test/files/successful/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/test/files/successful/package.json -------------------------------------------------------------------------------- /plugins/monorepo/test/load-workspace-configs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/test/load-workspace-configs.test.ts -------------------------------------------------------------------------------- /plugins/monorepo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/monorepo/tsconfig.json -------------------------------------------------------------------------------- /plugins/n-test/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/n-test/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/n-test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/n-test/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/n-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/n-test/README.md -------------------------------------------------------------------------------- /plugins/n-test/__mocks__/puppeteer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/n-test/__mocks__/puppeteer.ts -------------------------------------------------------------------------------- /plugins/n-test/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/n-test/jest.config.js -------------------------------------------------------------------------------- /plugins/n-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/n-test/package.json -------------------------------------------------------------------------------- /plugins/n-test/src/tasks/n-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/n-test/src/tasks/n-test.ts -------------------------------------------------------------------------------- /plugins/n-test/src/types/n-test.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/n-test/src/types/n-test.d.ts -------------------------------------------------------------------------------- /plugins/n-test/test/files/smoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/n-test/test/files/smoke.js -------------------------------------------------------------------------------- /plugins/n-test/test/tasks/n-test.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/n-test/test/tasks/n-test.test.ts -------------------------------------------------------------------------------- /plugins/n-test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/n-test/tsconfig.json -------------------------------------------------------------------------------- /plugins/n-test/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/n-test/tsconfig.test.json -------------------------------------------------------------------------------- /plugins/next-router/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/next-router/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/next-router/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/next-router/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/next-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/next-router/package.json -------------------------------------------------------------------------------- /plugins/next-router/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/next-router/readme.md -------------------------------------------------------------------------------- /plugins/next-router/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/next-router/src/schema.ts -------------------------------------------------------------------------------- /plugins/next-router/src/tasks/next-router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/next-router/src/tasks/next-router.ts -------------------------------------------------------------------------------- /plugins/next-router/src/types/ft-next-router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/next-router/src/types/ft-next-router.d.ts -------------------------------------------------------------------------------- /plugins/next-router/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/next-router/tsconfig.json -------------------------------------------------------------------------------- /plugins/node-test/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/node-test/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/node-test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/node-test/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/node-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/node-test/package.json -------------------------------------------------------------------------------- /plugins/node-test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/node-test/readme.md -------------------------------------------------------------------------------- /plugins/node-test/src/tasks/node-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/node-test/src/tasks/node-test.ts -------------------------------------------------------------------------------- /plugins/node-test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/node-test/tsconfig.json -------------------------------------------------------------------------------- /plugins/node/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/node/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/node/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/node/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/node/package.json -------------------------------------------------------------------------------- /plugins/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/node/readme.md -------------------------------------------------------------------------------- /plugins/node/src/tasks/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/node/src/tasks/node.ts -------------------------------------------------------------------------------- /plugins/node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/node/tsconfig.json -------------------------------------------------------------------------------- /plugins/nodemon/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/nodemon/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/nodemon/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/nodemon/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/nodemon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/nodemon/package.json -------------------------------------------------------------------------------- /plugins/nodemon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/nodemon/readme.md -------------------------------------------------------------------------------- /plugins/nodemon/src/tasks/nodemon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/nodemon/src/tasks/nodemon.ts -------------------------------------------------------------------------------- /plugins/nodemon/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/nodemon/tsconfig.json -------------------------------------------------------------------------------- /plugins/npm/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/npm/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/npm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/npm/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/npm/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/npm/jest.config.js -------------------------------------------------------------------------------- /plugins/npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/npm/package.json -------------------------------------------------------------------------------- /plugins/npm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/npm/readme.md -------------------------------------------------------------------------------- /plugins/npm/src/tasks/prune.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/npm/src/tasks/prune.ts -------------------------------------------------------------------------------- /plugins/npm/src/tasks/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/npm/src/tasks/publish.ts -------------------------------------------------------------------------------- /plugins/npm/src/types/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/npm/src/types/declarations.d.ts -------------------------------------------------------------------------------- /plugins/npm/test/npm-publish.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/npm/test/npm-publish.test.ts -------------------------------------------------------------------------------- /plugins/npm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/npm/tsconfig.json -------------------------------------------------------------------------------- /plugins/package-json-hook/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/package-json-hook/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/package-json-hook/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/package-json-hook/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/package-json-hook/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/package-json-hook/jest.config.js -------------------------------------------------------------------------------- /plugins/package-json-hook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/package-json-hook/package.json -------------------------------------------------------------------------------- /plugins/package-json-hook/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/package-json-hook/readme.md -------------------------------------------------------------------------------- /plugins/package-json-hook/src/package-json-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/package-json-hook/src/package-json-helper.ts -------------------------------------------------------------------------------- /plugins/package-json-hook/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/package-json-hook/src/schema.ts -------------------------------------------------------------------------------- /plugins/package-json-hook/test/files/existing-hook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/package-json-hook/test/files/existing-hook/package.json -------------------------------------------------------------------------------- /plugins/package-json-hook/test/files/multiple-hooks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/package-json-hook/test/files/multiple-hooks/package.json -------------------------------------------------------------------------------- /plugins/package-json-hook/test/files/with-hook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/package-json-hook/test/files/with-hook/package.json -------------------------------------------------------------------------------- /plugins/package-json-hook/test/files/without-hook/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": {} 3 | } 4 | -------------------------------------------------------------------------------- /plugins/package-json-hook/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/package-json-hook/test/index.test.ts -------------------------------------------------------------------------------- /plugins/package-json-hook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/package-json-hook/tsconfig.json -------------------------------------------------------------------------------- /plugins/parallel/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/parallel/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/parallel/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/parallel/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/parallel/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/parallel/jest.config.js -------------------------------------------------------------------------------- /plugins/parallel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/parallel/package.json -------------------------------------------------------------------------------- /plugins/parallel/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/parallel/readme.md -------------------------------------------------------------------------------- /plugins/parallel/src/tasks/parallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/parallel/src/tasks/parallel.ts -------------------------------------------------------------------------------- /plugins/parallel/test/tasks/parallel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/parallel/test/tasks/parallel.test.ts -------------------------------------------------------------------------------- /plugins/parallel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/parallel/tsconfig.json -------------------------------------------------------------------------------- /plugins/prettier/.gitignore: -------------------------------------------------------------------------------- 1 | test/files/unformatted.ts 2 | -------------------------------------------------------------------------------- /plugins/prettier/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/prettier/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/prettier/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/prettier/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/prettier/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/prettier/jest.config.js -------------------------------------------------------------------------------- /plugins/prettier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/prettier/package.json -------------------------------------------------------------------------------- /plugins/prettier/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/prettier/readme.md -------------------------------------------------------------------------------- /plugins/prettier/src/tasks/prettier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/prettier/src/tasks/prettier.ts -------------------------------------------------------------------------------- /plugins/prettier/test/.prettierrc-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/prettier/test/.prettierrc-test.json -------------------------------------------------------------------------------- /plugins/prettier/test/files/fixtures/formatted-config-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/prettier/test/files/fixtures/formatted-config-file.ts -------------------------------------------------------------------------------- /plugins/prettier/test/files/fixtures/formatted-default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/prettier/test/files/fixtures/formatted-default.ts -------------------------------------------------------------------------------- /plugins/prettier/test/files/fixtures/unformatted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/prettier/test/files/fixtures/unformatted.ts -------------------------------------------------------------------------------- /plugins/prettier/test/tasks/prettier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/prettier/test/tasks/prettier.test.ts -------------------------------------------------------------------------------- /plugins/prettier/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/prettier/tsconfig.json -------------------------------------------------------------------------------- /plugins/serverless/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/serverless/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/serverless/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/serverless/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/serverless/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/serverless/package.json -------------------------------------------------------------------------------- /plugins/serverless/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/serverless/readme.md -------------------------------------------------------------------------------- /plugins/serverless/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/serverless/src/schema.ts -------------------------------------------------------------------------------- /plugins/serverless/src/tasks/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/serverless/src/tasks/deploy.ts -------------------------------------------------------------------------------- /plugins/serverless/src/tasks/provision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/serverless/src/tasks/provision.ts -------------------------------------------------------------------------------- /plugins/serverless/src/tasks/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/serverless/src/tasks/run.ts -------------------------------------------------------------------------------- /plugins/serverless/src/tasks/teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/serverless/src/tasks/teardown.ts -------------------------------------------------------------------------------- /plugins/serverless/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/serverless/tsconfig.json -------------------------------------------------------------------------------- /plugins/typescript/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/typescript/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/typescript/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/typescript/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/typescript/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/typescript/jest.config.js -------------------------------------------------------------------------------- /plugins/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/typescript/package.json -------------------------------------------------------------------------------- /plugins/typescript/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/typescript/readme.md -------------------------------------------------------------------------------- /plugins/typescript/src/tasks/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/typescript/src/tasks/typescript.ts -------------------------------------------------------------------------------- /plugins/typescript/test/tasks/typescript.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/typescript/test/tasks/typescript.test.ts -------------------------------------------------------------------------------- /plugins/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/typescript/tsconfig.json -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/upload-assets-to-s3/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/upload-assets-to-s3/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/upload-assets-to-s3/README.md -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/upload-assets-to-s3/jest.config.js -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/upload-assets-to-s3/package.json -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/src/tasks/upload-assets-to-s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/upload-assets-to-s3/src/tasks/upload-assets-to-s3.ts -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/test/files/nested/test.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/upload-assets-to-s3/test/files/nested/test.js.gz -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/test/files/test.css: -------------------------------------------------------------------------------- 1 | color: red; 2 | -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/test/files/test.js: -------------------------------------------------------------------------------- 1 | console.log('Hello world!') 2 | -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/test/files/test.json: -------------------------------------------------------------------------------- 1 | [{ "test": true }] 2 | -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/test/files/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/upload-assets-to-s3/test/files/test.ts -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/test/tasks/upload-assets-to-s3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/upload-assets-to-s3/test/tasks/upload-assets-to-s3.test.ts -------------------------------------------------------------------------------- /plugins/upload-assets-to-s3/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/upload-assets-to-s3/tsconfig.json -------------------------------------------------------------------------------- /plugins/webpack/.gitignore: -------------------------------------------------------------------------------- 1 | test/files/dist 2 | -------------------------------------------------------------------------------- /plugins/webpack/.toolkitrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/webpack/.toolkitrc.yml -------------------------------------------------------------------------------- /plugins/webpack/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/webpack/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/webpack/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/webpack/jest.config.js -------------------------------------------------------------------------------- /plugins/webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/webpack/package.json -------------------------------------------------------------------------------- /plugins/webpack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/webpack/readme.md -------------------------------------------------------------------------------- /plugins/webpack/src/tasks/webpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/webpack/src/tasks/webpack.ts -------------------------------------------------------------------------------- /plugins/webpack/test/tasks/webpack.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/webpack/test/tasks/webpack.test.ts -------------------------------------------------------------------------------- /plugins/webpack/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/plugins/webpack/tsconfig.json -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/readme.md -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/release-please-config.json -------------------------------------------------------------------------------- /scripts/circleci-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/scripts/circleci-publish.sh -------------------------------------------------------------------------------- /scripts/clean-up-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/scripts/clean-up-packages.sh -------------------------------------------------------------------------------- /scripts/create-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/scripts/create-plugin.js -------------------------------------------------------------------------------- /scripts/generate-and-commit-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/scripts/generate-and-commit-docs.sh -------------------------------------------------------------------------------- /scripts/generate-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/scripts/generate-docs.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/tsconfig.settings.json -------------------------------------------------------------------------------- /types/financial-times__package-json/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/types/financial-times__package-json/index.d.ts -------------------------------------------------------------------------------- /types/financial-times__package-json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/dotcom-tool-kit/HEAD/types/financial-times__package-json/package.json --------------------------------------------------------------------------------