From e5d0f249fdc0734fd0a1a7d60db299fd79c78aec Mon Sep 17 00:00:00 2001 From: Jovi De Croock Date: Mon, 8 Jan 2024 09:13:38 +0100 Subject: [PATCH] Add missing packages to install --- website/src/pages/docs/guides/react-vue.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/src/pages/docs/guides/react-vue.mdx b/website/src/pages/docs/guides/react-vue.mdx index fbf824d151e..7fed369dd34 100644 --- a/website/src/pages/docs/guides/react-vue.mdx +++ b/website/src/pages/docs/guides/react-vue.mdx @@ -49,21 +49,21 @@ For most GraphQL clients and frameworks (React, Vue), install the following pack ```bash yarn add graphql -yarn add -D typescript ts-node @graphql-codegen/cli +yarn add -D typescript ts-node @graphql-codegen/cli @graphql-codegen/client-preset @parcel/watcher ``` **For npm:** ```bash npm i -S graphql -npm i -D typescript ts-node @graphql-codegen/cli +npm i -D typescript ts-node @graphql-codegen/cli @graphql-codegen/client-preset @parcel/watcher ``` **For pnpm:** ```bash pnpm i graphql @graphql-typed-document-node/core -pnpm i -D typescript ts-node @graphql-codegen/cli +pnpm i -D typescript ts-node @graphql-codegen/cli @graphql-codegen/client-preset @parcel/watcher ```