houdini-svelte 2.1.13 → 2.1.15

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.
@@ -152507,7 +152507,7 @@ async function svelteKitGenerator(framework2, { config }) {
152507
152507
  uniqueComponentQueries.push(component);
152508
152508
  }
152509
152509
  }
152510
- if (!config.include.some((path5) => path5.includes("js")) && (!plugin_config(config).static || uniquePageQueries.length > 0 || uniqueLayoutQueries.length > 0)) {
152510
+ if (!config.include.some((path5) => path5.includes("js")) && !plugin_config(config).static && (uniquePageQueries.length > 0 || uniqueLayoutQueries.length > 0)) {
152511
152511
  console.error(
152512
152512
  `\u26A0\uFE0F You are using at least one page/layout query but aren't "include"ing .js files in your config.
152513
152513
 
@@ -152502,7 +152502,7 @@ async function svelteKitGenerator(framework2, { config }) {
152502
152502
  uniqueComponentQueries.push(component);
152503
152503
  }
152504
152504
  }
152505
- if (!config.include.some((path5) => path5.includes("js")) && (!plugin_config(config).static || uniquePageQueries.length > 0 || uniqueLayoutQueries.length > 0)) {
152505
+ if (!config.include.some((path5) => path5.includes("js")) && !plugin_config(config).static && (uniquePageQueries.length > 0 || uniqueLayoutQueries.length > 0)) {
152506
152506
  console.error(
152507
152507
  `\u26A0\uFE0F You are using at least one page/layout query but aren't "include"ing .js files in your config.
152508
152508
 
@@ -86097,7 +86097,7 @@ async function getConfig({
86097
86097
  if (apiURL) {
86098
86098
  if (glob2.hasMagic(_config.schemaPath)) {
86099
86099
  console.log(
86100
- `\u26A0\uFE0F Your houdini configuration contains an apiUrl and a path pointing to multiple files.
86100
+ `\u26A0\uFE0F Your houdini configuration contains a watchSchema url and a path pointing to multiple files.
86101
86101
  This will prevent your schema from being pulled.`
86102
86102
  );
86103
86103
  } else if (!await readFile(_config.schemaPath)) {
@@ -86094,7 +86094,7 @@ async function getConfig({
86094
86094
  if (apiURL) {
86095
86095
  if (glob2.hasMagic(_config.schemaPath)) {
86096
86096
  console.log(
86097
- `\u26A0\uFE0F Your houdini configuration contains an apiUrl and a path pointing to multiple files.
86097
+ `\u26A0\uFE0F Your houdini configuration contains a watchSchema url and a path pointing to multiple files.
86098
86098
  This will prevent your schema from being pulled.`
86099
86099
  );
86100
86100
  } else if (!await readFile(_config.schemaPath)) {
@@ -282364,7 +282364,7 @@ async function svelteKitGenerator(framework2, { config }) {
282364
282364
  uniqueComponentQueries.push(component);
282365
282365
  }
282366
282366
  }
282367
- if (!config.include.some((path7) => path7.includes("js")) && (!plugin_config(config).static || uniquePageQueries.length > 0 || uniqueLayoutQueries.length > 0)) {
282367
+ if (!config.include.some((path7) => path7.includes("js")) && !plugin_config(config).static && (uniquePageQueries.length > 0 || uniqueLayoutQueries.length > 0)) {
282368
282368
  console.error(
282369
282369
  `\u26A0\uFE0F You are using at least one page/layout query but aren't "include"ing .js files in your config.
282370
282370
 
@@ -282353,7 +282353,7 @@ async function svelteKitGenerator(framework2, { config }) {
282353
282353
  uniqueComponentQueries.push(component);
282354
282354
  }
282355
282355
  }
282356
- if (!config.include.some((path7) => path7.includes("js")) && (!plugin_config(config).static || uniquePageQueries.length > 0 || uniqueLayoutQueries.length > 0)) {
282356
+ if (!config.include.some((path7) => path7.includes("js")) && !plugin_config(config).static && (uniquePageQueries.length > 0 || uniqueLayoutQueries.length > 0)) {
282357
282357
  console.error(
282358
282358
  `\u26A0\uFE0F You are using at least one page/layout query but aren't "include"ing .js files in your config.
282359
282359
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini-svelte",
3
- "version": "2.1.13",
3
+ "version": "2.1.15",
4
4
  "description": "The svelte plugin for houdini",
5
5
  "keywords": [
6
6
  "typescript",
@@ -30,7 +30,7 @@
30
30
  "graphql": "^15.8.0",
31
31
  "recast": "^0.23.1",
32
32
  "rollup": "^4.28.1",
33
- "houdini": "^1.5.4"
33
+ "houdini": "^1.5.5"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@sveltejs/kit": "^2.9.0",