Skip to content

Commit

Permalink
Install plugins as dev dependencies in README (#836)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgresham committed Sep 28, 2022
1 parent 77bb051 commit 6667c74
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion site/docs/integrations/esbuild.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A plugin for integrating vanilla-extract with [esbuild](https://esbuild.github.i
## Installation

```bash
npm install @vanilla-extract/esbuild-plugin
npm install --save-dev @vanilla-extract/esbuild-plugin
```

## Setup
Expand Down
3 changes: 2 additions & 1 deletion site/docs/integrations/gatsby.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ A plugin for integrating vanilla-extract with [Gatsby](https://www.gatsbyjs.com)
## Installation

```bash
npm install gatsby-plugin-vanilla-extract @vanilla-extract/babel-plugin @vanilla-extract/css @vanilla-extract/webpack-plugin
npm install @vanilla-extract/css
npm install --save-dev gatsby-plugin-vanilla-extract @vanilla-extract/babel-plugin @vanilla-extract/webpack-plugin
```

## Setup
Expand Down
2 changes: 1 addition & 1 deletion site/docs/integrations/next.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A plugin for integrating vanilla-extract with [Next.js](https://nextjs.org).
## Installation

```bash
npm install @vanilla-extract/next-plugin
npm install --save-dev @vanilla-extract/next-plugin
```

## Setup
Expand Down
2 changes: 1 addition & 1 deletion site/docs/integrations/rollup.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ For applications we instead recommend to use Vite
## Installation

```bash
npm install @vanilla-extract/rollup-plugin
npm install --save-dev @vanilla-extract/rollup-plugin
```

## Setup
Expand Down
2 changes: 1 addition & 1 deletion site/docs/integrations/vite.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A plugin for integrating vanilla-extract with [Vite](https://vitejs.dev/).
## Installation

```bash
npm install @vanilla-extract/vite-plugin
npm install --save-dev @vanilla-extract/vite-plugin
```

## Setup
Expand Down
2 changes: 1 addition & 1 deletion site/docs/integrations/webpack.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A plugin for integrating vanilla-extract with [webpack](https://webpack.js.org).
## Installation

```bash
npm install @vanilla-extract/webpack-plugin
npm install --save-dev @vanilla-extract/webpack-plugin
```

## Setup
Expand Down

0 comments on commit 6667c74

Please sign in to comment.