houdini 1.2.20-next.0 → 1.2.20

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.
@@ -76161,12 +76161,12 @@ async function packageJSON(targetPath, frameworkInfo) {
76161
76161
  }
76162
76162
  packageJSON2.devDependencies = {
76163
76163
  ...packageJSON2.devDependencies,
76164
- houdini: "^1.2.20-next.0"
76164
+ houdini: "^1.2.20"
76165
76165
  };
76166
76166
  if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
76167
76167
  packageJSON2.devDependencies = {
76168
76168
  ...packageJSON2.devDependencies,
76169
- "houdini-svelte": "^1.2.20-next.0"
76169
+ "houdini-svelte": "^1.2.20"
76170
76170
  };
76171
76171
  } else {
76172
76172
  throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
@@ -76166,12 +76166,12 @@ async function packageJSON(targetPath, frameworkInfo) {
76166
76166
  }
76167
76167
  packageJSON2.devDependencies = {
76168
76168
  ...packageJSON2.devDependencies,
76169
- houdini: "^1.2.20-next.0"
76169
+ houdini: "^1.2.20"
76170
76170
  };
76171
76171
  if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
76172
76172
  packageJSON2.devDependencies = {
76173
76173
  ...packageJSON2.devDependencies,
76174
- "houdini-svelte": "^1.2.20-next.0"
76174
+ "houdini-svelte": "^1.2.20"
76175
76175
  };
76176
76176
  } else {
76177
76177
  throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
@@ -88,7 +88,6 @@ const serverAdapterFactory = ({
88
88
  pipe
89
89
  });
90
90
  if (rendered) {
91
- console.log(url, rendered);
92
91
  return rendered;
93
92
  }
94
93
  return new Response("404", { status: 404 });
@@ -59,7 +59,6 @@ const serverAdapterFactory = ({
59
59
  pipe
60
60
  });
61
61
  if (rendered) {
62
- console.log(url, rendered);
63
62
  return rendered;
64
63
  }
65
64
  return new Response("404", { status: 404 });
@@ -77321,11 +77321,7 @@ function Plugin(opts = {}) {
77321
77321
  });
77322
77322
  }
77323
77323
  if (config3.localSchema) {
77324
- await buildLocalSchema(config3);
77325
- const { default: schema } = (await server.ssrLoadModule(
77326
- path_exports.join(config3.rootDir, "temp", "assets", "schema.js")
77327
- ), {});
77328
- config3.schema = schema;
77324
+ config3.schema = await loadLocalSchema(config3);
77329
77325
  }
77330
77326
  process.env.HOUDINI_PORT = String(server.config.server.port ?? 5173);
77331
77327
  try {
@@ -77316,11 +77316,7 @@ function Plugin(opts = {}) {
77316
77316
  });
77317
77317
  }
77318
77318
  if (config3.localSchema) {
77319
- await buildLocalSchema(config3);
77320
- const { default: schema } = (await server.ssrLoadModule(
77321
- path_exports.join(config3.rootDir, "temp", "assets", "schema.js")
77322
- ), {});
77323
- config3.schema = schema;
77319
+ config3.schema = await loadLocalSchema(config3);
77324
77320
  }
77325
77321
  process.env.HOUDINI_PORT = String(server.config.server.port ?? 5173);
77326
77322
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini",
3
- "version": "1.2.20-next.0",
3
+ "version": "1.2.20",
4
4
  "description": "The disappearing GraphQL clients",
5
5
  "keywords": [
6
6
  "typescript",