From 2d679ebd877dda03307b85afe01b26dbfa3a978d Mon Sep 17 00:00:00 2001 From: Luke Brown Date: Wed, 19 Jan 2022 14:57:33 +0000 Subject: [PATCH 1/2] Add missing comma to gQueryCodegen --- docs/src/docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/docs.md b/docs/src/docs.md index 371769b..48d42af 100644 --- a/docs/src/docs.md +++ b/docs/src/docs.md @@ -36,7 +36,7 @@ vite: { // schema: 'http://localhost:3001/graphql' // this can also be a url to a graphql api schema: './src/lib/graphql/schema.graphql', // path to schema, schema is required output: './src/lib/graphql', // Where you want the general schema types to output - gPath: '$lib/config/g' // Path to g, created in step 1. + gPath: '$lib/config/g', // Path to g, created in step 1. // Optional debug: false // boolean, this adds logging for gq files deleted and on codegen }) From c4965dcda144fdb81635a2bbbb8b5c1140f48a00 Mon Sep 17 00:00:00 2001 From: Luke Brown Date: Wed, 19 Jan 2022 14:57:47 +0000 Subject: [PATCH 2/2] Rename output to out in gQueryCodegen --- docs/src/docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/docs.md b/docs/src/docs.md index 48d42af..d93c1ad 100644 --- a/docs/src/docs.md +++ b/docs/src/docs.md @@ -35,7 +35,7 @@ vite: { // Required // schema: 'http://localhost:3001/graphql' // this can also be a url to a graphql api schema: './src/lib/graphql/schema.graphql', // path to schema, schema is required - output: './src/lib/graphql', // Where you want the general schema types to output + out: './src/lib/graphql', // Where you want the general schema types to output gPath: '$lib/config/g', // Path to g, created in step 1. // Optional debug: false // boolean, this adds logging for gq files deleted and on codegen