houdini 0.17.1 → 0.17.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.
@@ -1,5 +1,5 @@
1
- houdini:compile: cache hit, replaying output 24eb68dd86e571ed
1
+ houdini:compile: cache hit, replaying output db5bfb276a8e9449
2
2
  houdini:compile:
3
- houdini:compile: > houdini@0.17.1 compile /home/runner/work/houdini/houdini/packages/houdini
3
+ houdini:compile: > houdini@0.17.2 compile /home/runner/work/houdini/houdini/packages/houdini
4
4
  houdini:compile: > scripts build
5
5
  houdini:compile:
@@ -1,5 +1,5 @@
1
- houdini:typedefs: cache hit, replaying output 4712777b3528907b
1
+ houdini:typedefs: cache hit, replaying output 8e07b9dd91cee737
2
2
  houdini:typedefs:
3
- houdini:typedefs: > houdini@0.17.1 typedefs /home/runner/work/houdini/houdini/packages/houdini
3
+ houdini:typedefs: > houdini@0.17.2 typedefs /home/runner/work/houdini/houdini/packages/houdini
4
4
  houdini:typedefs: > scripts typedefs
5
5
  houdini:typedefs:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # houdini
2
2
 
3
+ ## 0.17.2
4
+
3
5
  ## 0.17.1
4
6
 
5
7
  ### Patch Changes
@@ -77338,9 +77338,9 @@ async function tjsConfig(targetPath, framework) {
77338
77338
  var tjsConfig2 = JSON.parse(tjsConfigFile);
77339
77339
  }
77340
77340
  if (framework === "kit") {
77341
- tjsConfig2.compilerOptions.rootDirs = [".", "./.svelte-kit/types", "./.$houdini/types"];
77341
+ tjsConfig2.compilerOptions.rootDirs = [".", "./.svelte-kit/types", "./$houdini/types"];
77342
77342
  } else {
77343
- tjsConfig2.compilerOptions.rootDirs = [".", "./.$houdini/types"];
77343
+ tjsConfig2.compilerOptions.rootDirs = [".", "./$houdini/types"];
77344
77344
  }
77345
77345
  if (framework === "svelte") {
77346
77346
  tjsConfig2.compilerOptions.paths = {
@@ -77535,8 +77535,8 @@ async function updatePackageJSON(targetPath) {
77535
77535
  }
77536
77536
  packageJSON.devDependencies = {
77537
77537
  ...packageJSON.devDependencies,
77538
- houdini: "^0.17.1",
77539
- "houdini-svelte": "^0.17.1",
77538
+ houdini: "^0.17.2",
77539
+ "houdini-svelte": "^0.17.2",
77540
77540
  graphql: "^15.5.0"
77541
77541
  };
77542
77542
  await fs_exports.writeFile(packagePath, JSON.stringify(packageJSON, null, 4));
@@ -77343,9 +77343,9 @@ async function tjsConfig(targetPath, framework) {
77343
77343
  var tjsConfig2 = JSON.parse(tjsConfigFile);
77344
77344
  }
77345
77345
  if (framework === "kit") {
77346
- tjsConfig2.compilerOptions.rootDirs = [".", "./.svelte-kit/types", "./.$houdini/types"];
77346
+ tjsConfig2.compilerOptions.rootDirs = [".", "./.svelte-kit/types", "./$houdini/types"];
77347
77347
  } else {
77348
- tjsConfig2.compilerOptions.rootDirs = [".", "./.$houdini/types"];
77348
+ tjsConfig2.compilerOptions.rootDirs = [".", "./$houdini/types"];
77349
77349
  }
77350
77350
  if (framework === "svelte") {
77351
77351
  tjsConfig2.compilerOptions.paths = {
@@ -77540,8 +77540,8 @@ async function updatePackageJSON(targetPath) {
77540
77540
  }
77541
77541
  packageJSON.devDependencies = {
77542
77542
  ...packageJSON.devDependencies,
77543
- houdini: "^0.17.1",
77544
- "houdini-svelte": "^0.17.1",
77543
+ houdini: "^0.17.2",
77544
+ "houdini-svelte": "^0.17.2",
77545
77545
  graphql: "^15.5.0"
77546
77546
  };
77547
77547
  await fs_exports.writeFile(packagePath, JSON.stringify(packageJSON, null, 4));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini",
3
- "version": "0.17.1",
3
+ "version": "0.17.2",
4
4
  "description": "The disappearing GraphQL clients",
5
5
  "type": "module",
6
6
  "devDependencies": {
package/src/cmd/init.ts CHANGED
@@ -298,9 +298,9 @@ async function tjsConfig(targetPath: string, framework: 'kit' | 'svelte') {
298
298
 
299
299
  // new rootDirs (will overwrite the one in "extends": "./.svelte-kit/tsconfig.json")
300
300
  if (framework === 'kit') {
301
- tjsConfig.compilerOptions.rootDirs = ['.', './.svelte-kit/types', './.$houdini/types']
301
+ tjsConfig.compilerOptions.rootDirs = ['.', './.svelte-kit/types', './$houdini/types']
302
302
  } else {
303
- tjsConfig.compilerOptions.rootDirs = ['.', './.$houdini/types']
303
+ tjsConfig.compilerOptions.rootDirs = ['.', './$houdini/types']
304
304
  }
305
305
 
306
306
  // In kit, no need to add manually the path. Why? Because: