Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prevent both npm and yarn commands from being copied #11757

Merged
merged 1 commit into from Jan 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions docusaurus/docs/adding-typescript.md
Expand Up @@ -13,9 +13,9 @@ To start a new Create React App project with [TypeScript](https://www.typescript

```sh
npx create-react-app my-app --template typescript

# or

```
or
```sh
yarn create react-app my-app --template typescript
```

Expand All @@ -27,9 +27,9 @@ To add [TypeScript](https://www.typescriptlang.org/) to an existing Create React

```sh
npm install --save typescript @types/node @types/react @types/react-dom @types/jest

# or

```
or
```sh
yarn add typescript @types/node @types/react @types/react-dom @types/jest
```

Expand Down