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

docs: update readme with pnpm, yarn, and npm #9633

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions examples/basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,15 @@ To build all apps and packages, run the following command:

```
cd my-turborepo

```

```
pnpm build
or
npm run build
or
yarn build
```

### Develop
Expand All @@ -47,7 +55,15 @@ To develop all apps and packages, run the following command:

```
cd my-turborepo

```

```
pnpm dev
or
npm run dev
or
yarn dev
```

### Remote Caching
Expand Down
5 changes: 5 additions & 0 deletions examples/non-monorepo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ To build all apps and packages, run the following command:

```
pnpm turbo build
or
yarn turbo run build
or
npx turbo run build

```

### Develop
Expand Down
4 changes: 4 additions & 0 deletions examples/with-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ This repo is configured to be built with Docker, and Docker compose. To build al
```
# Install dependencies
yarn install
or
npm install
or
pnpm install

# Create a network, which allows containers to communicate
# with each other, by using their container name as a hostname
Expand Down
13 changes: 13 additions & 0 deletions examples/with-gatsby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,15 @@ By default, Turborepo will cache locally. To enable Remote Caching you will need

```
cd my-turborepo

```

```
pnpm dlx turbo login
or
npx turbo login
or
yarn dlx turbo login
```

This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview).
Expand All @@ -67,6 +75,11 @@ Next, you can link your Turborepo to your Remote Cache by running the following

```
pnpm dlx turbo link
or
npx turbo link
or
yarn dlx turbo link

```

## Useful Links
Expand Down
8 changes: 8 additions & 0 deletions examples/with-prisma/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ To build all apps and packages, run the following command:

```bash
yarn run build
or
pnpm run build
or
npm run build
```

### Develop
Expand All @@ -96,6 +100,10 @@ To develop all apps and packages, run the following command:

```bash
yarn run dev
or
npm run dev
or
pnpm dev
```

## Useful Links
Expand Down
16 changes: 16 additions & 0 deletions examples/with-rollup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,15 @@ To build all apps and packages, run the following command:

```
cd my-turborepo

```

```
pnpm run build
or
npm run build
or
yarn run build
```

### Develop
Expand All @@ -46,7 +54,15 @@ To develop all apps and packages, run the following command:

```
cd my-turborepo

```

```
pnpm run dev
or
yarn run dev
or
npm run dev
```

### Remote Caching
Expand Down
16 changes: 16 additions & 0 deletions examples/with-vue-nuxt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,15 @@ To build all apps and packages, run the following command:

```
cd my-turborepo

```

```
pnpm build
or
npm run build
or
yarn build
```

### Develop
Expand All @@ -47,7 +55,15 @@ To develop all apps and packages, run the following command:

```
cd my-turborepo

```

```
pnpm dev
or
npm run dev
or
yarn dev
```

### Remote Caching
Expand Down
Loading