houdini-svelte 2.1.3 → 2.1.4

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.
@@ -85460,7 +85460,7 @@ var Config = class {
85460
85460
  this.include.map(
85461
85461
  (filepath) => glob2(join2(this.projectRoot, filepath))
85462
85462
  )
85463
- )).flat().filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
85463
+ )).flat().map((filepath) => posixify(filepath)).filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
85464
85464
  const prefix = this.schemaPath?.startsWith("./") ? "./" : "";
85465
85465
  return !this.schemaPath || !(0, import_minimatch8.default)(
85466
85466
  prefix + relative(this.projectRoot, filepath).replaceAll("\\", "/"),
@@ -85457,7 +85457,7 @@ var Config = class {
85457
85457
  this.include.map(
85458
85458
  (filepath) => glob2(join2(this.projectRoot, filepath))
85459
85459
  )
85460
- )).flat().filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
85460
+ )).flat().map((filepath) => posixify(filepath)).filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
85461
85461
  const prefix = this.schemaPath?.startsWith("./") ? "./" : "";
85462
85462
  return !this.schemaPath || !(0, import_minimatch8.default)(
85463
85463
  prefix + relative(this.projectRoot, filepath).replaceAll("\\", "/"),
@@ -211014,7 +211014,7 @@ var Config = class {
211014
211014
  this.include.map(
211015
211015
  (filepath) => glob23(join4(this.projectRoot, filepath))
211016
211016
  )
211017
- )).flat().filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
211017
+ )).flat().map((filepath) => posixify3(filepath)).filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
211018
211018
  const prefix = this.schemaPath?.startsWith("./") ? "./" : "";
211019
211019
  return !this.schemaPath || !(0, import_minimatch83.default)(
211020
211020
  prefix + relative3(this.projectRoot, filepath).replaceAll("\\", "/"),
@@ -211004,7 +211004,7 @@ var Config = class {
211004
211004
  this.include.map(
211005
211005
  (filepath) => glob23(join4(this.projectRoot, filepath))
211006
211006
  )
211007
- )).flat().filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
211007
+ )).flat().map((filepath) => posixify3(filepath)).filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
211008
211008
  const prefix = this.schemaPath?.startsWith("./") ? "./" : "";
211009
211009
  return !this.schemaPath || !(0, import_minimatch83.default)(
211010
211010
  prefix + relative3(this.projectRoot, filepath).replaceAll("\\", "/"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini-svelte",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "The svelte plugin for houdini",
5
5
  "keywords": [
6
6
  "typescript",
@@ -30,12 +30,12 @@
30
30
  "graphql": "^15.8.0",
31
31
  "recast": "^0.23.1",
32
32
  "rollup": "^4.28.1",
33
- "houdini": "^1.4.3"
33
+ "houdini": "^1.5.0"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@sveltejs/kit": "^2.9.0",
37
37
  "svelte": "^5.0.0",
38
- "vite": "^6.0.3"
38
+ "vite": "^5.3.3 || ^6.0.3"
39
39
  },
40
40
  "files": [
41
41
  "build"