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(installation):remove prompt symbol from installation commands(#7293) #7540

Merged
merged 1 commit into from
Jun 10, 2024
Merged
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
8 changes: 4 additions & 4 deletions docs/framework/angular/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ title: Installation
_Angular Query is compatible with Angular v16 and higher_

```bash
$ npm i @tanstack/angular-query-experimental
npm i @tanstack/angular-query-experimental
# or
$ pnpm add @tanstack/angular-query-experimental
pnpm add @tanstack/angular-query-experimental
# or
$ yarn add @tanstack/angular-query-experimental
yarn add @tanstack/angular-query-experimental
# or
$ bun add @tanstack/angular-query-experimental
bun add @tanstack/angular-query-experimental
```

> Wanna give it a spin before you download? Try out the [simple](../examples/simple) or [basic](../examples/basic) examples!
16 changes: 8 additions & 8 deletions docs/framework/react/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ or a good ol' `<script>` via
### NPM

```bash
$ npm i @tanstack/react-query
npm i @tanstack/react-query
# or
$ pnpm add @tanstack/react-query
pnpm add @tanstack/react-query
# or
$ yarn add @tanstack/react-query
yarn add @tanstack/react-query
# or
$ bun add @tanstack/react-query
bun add @tanstack/react-query
```

React Query is compatible with React v18+ and works with ReactDOM and React Native.
Expand Down Expand Up @@ -57,11 +57,11 @@ Opera >= 77
It is recommended to also use our [ESLint Plugin Query](../../../eslint/eslint-plugin-query) to help you catch bugs and inconsistencies while you code. You can install it via:

```bash
$ npm i -D @tanstack/eslint-plugin-query
npm i -D @tanstack/eslint-plugin-query
# or
$ pnpm add -D @tanstack/eslint-plugin-query
pnpm add -D @tanstack/eslint-plugin-query
# or
$ yarn add -D @tanstack/eslint-plugin-query
yarn add -D @tanstack/eslint-plugin-query
# or
$ bun add -D @tanstack/eslint-plugin-query
bun add -D @tanstack/eslint-plugin-query
```
8 changes: 4 additions & 4 deletions docs/framework/solid/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ or a good ol' `<script>` via
### NPM

```bash
$ npm i @tanstack/solid-query
npm i @tanstack/solid-query
# or
$ pnpm add @tanstack/solid-query
pnpm add @tanstack/solid-query
# or
$ yarn add @tanstack/solid-query
yarn add @tanstack/solid-query
# or
$ bun add @tanstack/solid-query
bun add @tanstack/solid-query
```

> Wanna give it a spin before you download? Try out the [simple](../examples/simple) or [basic](../examples/basic) examples!
Expand Down
8 changes: 4 additions & 4 deletions docs/framework/svelte/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ You can install Svelte Query via [NPM](https://npmjs.com).
### NPM

```bash
$ npm i @tanstack/svelte-query
npm i @tanstack/svelte-query
# or
$ pnpm add @tanstack/svelte-query
pnpm add @tanstack/svelte-query
# or
$ yarn add @tanstack/svelte-query
yarn add @tanstack/svelte-query
# or
$ bun add @tanstack/svelte-query
bun add @tanstack/svelte-query
```

> Wanna give it a spin before you download? Try out the [basic](../examples/basic) example!
8 changes: 4 additions & 4 deletions docs/framework/vue/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ You can install Vue Query via [NPM](https://npmjs.com).
### NPM

```bash
$ npm i @tanstack/vue-query
npm i @tanstack/vue-query
# or
$ pnpm add @tanstack/vue-query
pnpm add @tanstack/vue-query
# or
$ yarn add @tanstack/vue-query
yarn add @tanstack/vue-query
# or
$ bun add @tanstack/vue-query
bun add @tanstack/vue-query
```

> Wanna give it a spin before you download? Try out the [basic](../examples/basic) example!
Expand Down
Loading