Skip to content

Commit

Permalink
Making install commands consistent
Browse files Browse the repository at this point in the history
The pages under "Integrations" are not consistent. Some say to use NPM, some Yarn, some both, some use quotes around the package name, etc.
  • Loading branch information
calebhyatt committed Nov 12, 2024
1 parent a5a795e commit c0abe1d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/react.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ The Partytown NPM package already comes with a React component, which is a thin

```bash
npm install @builder.io/partytown
yarn add @builder.io/partytown
pnpm install @builder.io/partytown
```

## Configure
Expand Down
2 changes: 2 additions & 0 deletions docs/remix.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ The Remix setup is largely the same as the [React integration guide](/react), ex

```bash
npm install @builder.io/partytown
yarn add @builder.io/partytown
pnpm install @builder.io/partytown
```

## Configure
Expand Down
2 changes: 2 additions & 0 deletions docs/shopify-hydrogen.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ The [Shopify Hydrogen](https://hydrogen.shopify.dev/) setup is largely the same

```bash
npm install @builder.io/partytown
yarn add @builder.io/partytown
pnpm install @builder.io/partytown
```

## Configure
Expand Down
8 changes: 7 additions & 1 deletion docs/solid.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ title: Solid

To setup Partytown in an Solid project take the following steps.

## Installation
## Install

```bash
npm install @builder.io/partytown
yarn add @builder.io/partytown
pnpm install @builder.io/partytown
```

Use your favorite package manager to install `@builder.io/partytown` dependency and
copy the Partytown files to the local filesystem using the Vite plugin.
Expand Down

0 comments on commit c0abe1d

Please sign in to comment.