houdini 1.4.3 → 1.5.1

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.
@@ -71938,7 +71938,7 @@ var Config = class {
71938
71938
  this.include.map(
71939
71939
  (filepath) => glob2(join2(this.projectRoot, filepath))
71940
71940
  )
71941
- )).flat().filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
71941
+ )).flat().map((filepath) => posixify(filepath)).filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
71942
71942
  const prefix = this.schemaPath?.startsWith("./") ? "./" : "";
71943
71943
  return !this.schemaPath || !(0, import_minimatch8.default)(
71944
71944
  prefix + relative(this.projectRoot, filepath).replaceAll("\\", "/"),
@@ -71851,7 +71851,7 @@ var Config = class {
71851
71851
  this.include.map(
71852
71852
  (filepath) => glob2(join2(this.projectRoot, filepath))
71853
71853
  )
71854
- )).flat().filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
71854
+ )).flat().map((filepath) => posixify(filepath)).filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
71855
71855
  const prefix = this.schemaPath?.startsWith("./") ? "./" : "";
71856
71856
  return !this.schemaPath || !(0, import_minimatch8.default)(
71857
71857
  prefix + relative(this.projectRoot, filepath).replaceAll("\\", "/"),
@@ -60791,7 +60791,7 @@ var Config = class {
60791
60791
  this.include.map(
60792
60792
  (filepath) => glob2(join(this.projectRoot, filepath))
60793
60793
  )
60794
- )).flat().filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
60794
+ )).flat().map((filepath) => posixify(filepath)).filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
60795
60795
  const prefix = this.schemaPath?.startsWith("./") ? "./" : "";
60796
60796
  return !this.schemaPath || !(0, import_minimatch8.default)(
60797
60797
  prefix + relative(this.projectRoot, filepath).replaceAll("\\", "/"),
@@ -60787,7 +60787,7 @@ var Config = class {
60787
60787
  this.include.map(
60788
60788
  (filepath) => glob2(join(this.projectRoot, filepath))
60789
60789
  )
60790
- )).flat().filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
60790
+ )).flat().map((filepath) => posixify(filepath)).filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
60791
60791
  const prefix = this.schemaPath?.startsWith("./") ? "./" : "";
60792
60792
  return !this.schemaPath || !(0, import_minimatch8.default)(
60793
60793
  prefix + relative(this.projectRoot, filepath).replaceAll("\\", "/"),
@@ -73168,7 +73168,7 @@ var Config = class {
73168
73168
  this.include.map(
73169
73169
  (filepath) => glob2(join2(this.projectRoot, filepath))
73170
73170
  )
73171
- )).flat().filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
73171
+ )).flat().map((filepath) => posixify(filepath)).filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
73172
73172
  const prefix = this.schemaPath?.startsWith("./") ? "./" : "";
73173
73173
  return !this.schemaPath || !(0, import_minimatch8.default)(
73174
73174
  prefix + relative(this.projectRoot, filepath).replaceAll("\\", "/"),
@@ -73161,7 +73161,7 @@ var Config = class {
73161
73161
  this.include.map(
73162
73162
  (filepath) => glob2(join2(this.projectRoot, filepath))
73163
73163
  )
73164
- )).flat().filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
73164
+ )).flat().map((filepath) => posixify(filepath)).filter((filepath) => this.includeFile(filepath)).filter((filepath) => {
73165
73165
  const prefix = this.schemaPath?.startsWith("./") ? "./" : "";
73166
73166
  return !this.schemaPath || !(0, import_minimatch8.default)(
73167
73167
  prefix + relative(this.projectRoot, filepath).replaceAll("\\", "/"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini",
3
- "version": "1.4.3",
3
+ "version": "1.5.1",
4
4
  "description": "The disappearing GraphQL clients",
5
5
  "keywords": [
6
6
  "typescript",
@@ -25,7 +25,6 @@
25
25
  "kleur": "^4.1.5",
26
26
  "prettier": "^2.8.3",
27
27
  "rollup": "^4.28.1",
28
- "vite": "^6.0.3",
29
28
  "vitest": "^1.6.0",
30
29
  "scripts": "^1.0.0"
31
30
  },
@@ -57,7 +56,7 @@
57
56
  "vite-plugin-watch-and-run": "^1.7.0"
58
57
  },
59
58
  "peerDependencies": {
60
- "vite": "^5.3.3"
59
+ "vite": "^5.3.3 || ^6.0.3"
61
60
  },
62
61
  "files": [
63
62
  "build"