From 80a20d87baca562c1c3516433d36b9b11cc0a72b Mon Sep 17 00:00:00 2001 From: Karel Verschraegen Date: Sat, 11 Dec 2021 17:49:31 +0100 Subject: [PATCH] Use correct casing for TypeScript --- create-turbo/templates/_shared_ts/README.md | 4 ++-- create-turbo/templates/npm/README.md | 4 ++-- create-turbo/templates/pnpm/README.md | 4 ++-- create-turbo/templates/yarn/README.md | 4 ++-- docs/pages/blog/turbo-0-4-0.mdx | 2 +- examples/basic/README.md | 4 ++-- examples/with-pnpm/README.md | 4 ++-- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/create-turbo/templates/_shared_ts/README.md b/create-turbo/templates/_shared_ts/README.md index 1ac07db22e5e3..aa09a500fde99 100644 --- a/create-turbo/templates/_shared_ts/README.md +++ b/create-turbo/templates/_shared_ts/README.md @@ -14,13 +14,13 @@ This turborepo includes the following packages/apps: - `config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`) - `tsconfig`: `tsconfig.json`s used throughout the monorepo -Each package/app is 100% [Typescript](https://www.typescriptlang.org/). +Each package/app is 100% [TypeScript](https://www.typescriptlang.org/). ### Utilities This turborepo has some additional tools already setup for you: -- [Typescript](https://www.typescriptlang.org/) for static type checking +- [TypeScript](https://www.typescriptlang.org/) for static type checking - [ESLint](https://eslint.org/) for code linting - [Jest](https://jestjs.io) test runner for all things JavaScript - [Prettier](https://prettier.io) for code formatting diff --git a/create-turbo/templates/npm/README.md b/create-turbo/templates/npm/README.md index 34f31f6d76529..0405eca9a5e64 100644 --- a/create-turbo/templates/npm/README.md +++ b/create-turbo/templates/npm/README.md @@ -14,13 +14,13 @@ This turborepo uses [NPM](https://www.npmjs.com/) as a package manager. It inclu - `config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`) - `tsconfig`: `tsconfig.json`s used throughout the monorepo -Each package/app is 100% [Typescript](https://www.typescriptlang.org/). +Each package/app is 100% [TypeScript](https://www.typescriptlang.org/). ### Utilities This turborepo has some additional tools already setup for you: -- [Typescript](https://www.typescriptlang.org/) for static type checking +- [TypeScript](https://www.typescriptlang.org/) for static type checking - [ESLint](https://eslint.org/) for code linting - [Jest](https://jestjs.io) test runner for all things JavaScript - [Prettier](https://prettier.io) for code formatting diff --git a/create-turbo/templates/pnpm/README.md b/create-turbo/templates/pnpm/README.md index 78c41ba58c4f9..b26caff48ff72 100644 --- a/create-turbo/templates/pnpm/README.md +++ b/create-turbo/templates/pnpm/README.md @@ -14,13 +14,13 @@ This turborepo uses [PNPM](https://pnpm.io) as a packages manager. It includes t - `config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`) - `tsconfig`: `tsconfig.json`s used throughout the monorepo -Each package/app is 100% [Typescript](https://www.typescriptlang.org/). +Each package/app is 100% [TypeScript](https://www.typescriptlang.org/). ### Utilities This turborepo has some additional tools already setup for you: -- [Typescript](https://www.typescriptlang.org/) for static type checking +- [TypeScript](https://www.typescriptlang.org/) for static type checking - [ESLint](https://eslint.org/) for code linting - [Jest](https://jestjs.io) test runner for all things JavaScript - [Prettier](https://prettier.io) for code formatting diff --git a/create-turbo/templates/yarn/README.md b/create-turbo/templates/yarn/README.md index b4c0e7619ef22..5a015c16c6b17 100644 --- a/create-turbo/templates/yarn/README.md +++ b/create-turbo/templates/yarn/README.md @@ -14,13 +14,13 @@ This turborepo uses [Yarn](https://classic.yarnpkg.com/lang/en/) as a package ma - `config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`) - `tsconfig`: `tsconfig.json`s used throughout the monorepo -Each package/app is 100% [Typescript](https://www.typescriptlang.org/). +Each package/app is 100% [TypeScript](https://www.typescriptlang.org/). ### Utilities This turborepo has some additional tools already setup for you: -- [Typescript](https://www.typescriptlang.org/) for static type checking +- [TypeScript](https://www.typescriptlang.org/) for static type checking - [ESLint](https://eslint.org/) for code linting - [Jest](https://jestjs.io) test runner for all things JavaScript - [Prettier](https://prettier.io) for code formatting diff --git a/docs/pages/blog/turbo-0-4-0.mdx b/docs/pages/blog/turbo-0-4-0.mdx index baafc877164c7..4b206f3e9e6b7 100644 --- a/docs/pages/blog/turbo-0-4-0.mdx +++ b/docs/pages/blog/turbo-0-4-0.mdx @@ -198,7 +198,7 @@ I know this was a lot, but there's even more to come. Here's what's up next on t - Build scans, telemetry, and metrics and dependency and task graph visualization - [Desktop Console UI](https://twitter.com/jaredpalmer/status/1360315387372572672?s=20) - Intelligent `watch` mode -- Official build rules for Typescript, React, Jest, Node.js, Docker, Kubernetes, and more +- Official build rules for TypeScript, React, Jest, Node.js, Docker, Kubernetes, and more ## Credits diff --git a/examples/basic/README.md b/examples/basic/README.md index b49fef00a7832..18896ff29e1c3 100644 --- a/examples/basic/README.md +++ b/examples/basic/README.md @@ -14,13 +14,13 @@ This turborepo uses [Yarn](https://classic.yarnpkg.com/lang/en/) as a package ma - `config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`) - `tsconfig`: `tsconfig.json`s used throughout the monorepo -Each package/app is 100% [Typescript](https://www.typescriptlang.org/). +Each package/app is 100% [TypeScript](https://www.typescriptlang.org/). ### Utilities This turborepo has some additional tools already setup for you: -- [Typescript](https://www.typescriptlang.org/) for static type checking +- [TypeScript](https://www.typescriptlang.org/) for static type checking - [ESLint](https://eslint.org/) for code linting - [Jest](https://jestjs.io) test runner for all things JavaScript - [Prettier](https://prettier.io) for code formatting diff --git a/examples/with-pnpm/README.md b/examples/with-pnpm/README.md index 78c41ba58c4f9..b26caff48ff72 100644 --- a/examples/with-pnpm/README.md +++ b/examples/with-pnpm/README.md @@ -14,13 +14,13 @@ This turborepo uses [PNPM](https://pnpm.io) as a packages manager. It includes t - `config`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`) - `tsconfig`: `tsconfig.json`s used throughout the monorepo -Each package/app is 100% [Typescript](https://www.typescriptlang.org/). +Each package/app is 100% [TypeScript](https://www.typescriptlang.org/). ### Utilities This turborepo has some additional tools already setup for you: -- [Typescript](https://www.typescriptlang.org/) for static type checking +- [TypeScript](https://www.typescriptlang.org/) for static type checking - [ESLint](https://eslint.org/) for code linting - [Jest](https://jestjs.io) test runner for all things JavaScript - [Prettier](https://prettier.io) for code formatting