@lewebsimple/nuxt-graphql 0.6.1 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lewebsimple/nuxt-graphql",
3
3
  "configKey": "graphql",
4
- "version": "0.6.1",
4
+ "version": "0.6.2",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -149,7 +149,7 @@ const executor = getRemoteExecutor({
149
149
  hooks: [${hooksArray.join(", ")}],
150
150
  });
151
151
 
152
- const sdl = \`${sdl.replace(/`/g, "\\`")}\`;
152
+ const sdl = ${JSON.stringify(sdl)};
153
153
 
154
154
  // SubschemaConfig exported for stitching
155
155
  export const schema = {
@@ -203,7 +203,7 @@ function addUniversalTemplate({ filename, getContents, emitTs }) {
203
203
  return modulePath;
204
204
  }
205
205
 
206
- const version = "0.6.1";
206
+ const version = "0.6.2";
207
207
 
208
208
  async function getDocuments(documentsGlob) {
209
209
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lewebsimple/nuxt-graphql",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Opinionated Nuxt module for using GraphQL",
5
5
  "repository": "your-org/@lewebsimple/nuxt-graphql",
6
6
  "license": "AGPL-3.0-only",