houdini-svelte 1.2.23-next.0 → 1.2.24

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.
@@ -5,7 +5,7 @@ declare const _default: (getFramwork: () => Framework) => {
5
5
  houdiniConfig: import("houdini").Config;
6
6
  }) => void) | undefined;
7
7
  buildEnd?: ((this: import("rollup").PluginContext, error?: Error | undefined, houdiniConfig?: import("houdini").Config | undefined) => void | Promise<void>) | undefined;
8
- closeBundle?: ((this: import("rollup").PluginContext) => void | Promise<void>) | undefined;
8
+ closeBundle?: ((this: import("rollup").PluginContext, config: import("houdini").Config) => void | Promise<void>) | undefined;
9
9
  configResolved?: import("rollup").ObjectHook<(this: void, config: Readonly<Omit<import("vite").UserConfig, "plugins" | "assetsInclude" | "optimizeDeps" | "worker"> & {
10
10
  configFile: string | undefined;
11
11
  configFileDependencies: string[];
@@ -81823,7 +81823,7 @@ var Config = class {
81823
81823
  return join2(this.definitionsDirectory, "schema.graphql");
81824
81824
  }
81825
81825
  get routerBuildDirectory() {
81826
- return join2(this.projectRoot, "dist");
81826
+ return join2(this.projectRoot, "dist", "assets");
81827
81827
  }
81828
81828
  get definitionsDocumentsPath() {
81829
81829
  return join2(this.definitionsDirectory, "documents.gql");
@@ -81816,7 +81816,7 @@ var Config = class {
81816
81816
  return join2(this.definitionsDirectory, "schema.graphql");
81817
81817
  }
81818
81818
  get routerBuildDirectory() {
81819
- return join2(this.projectRoot, "dist");
81819
+ return join2(this.projectRoot, "dist", "assets");
81820
81820
  }
81821
81821
  get definitionsDocumentsPath() {
81822
81822
  return join2(this.definitionsDirectory, "documents.gql");
@@ -198224,7 +198224,7 @@ var Config = class {
198224
198224
  return join4(this.definitionsDirectory, "schema.graphql");
198225
198225
  }
198226
198226
  get routerBuildDirectory() {
198227
- return join4(this.projectRoot, "dist");
198227
+ return join4(this.projectRoot, "dist", "assets");
198228
198228
  }
198229
198229
  get definitionsDocumentsPath() {
198230
198230
  return join4(this.definitionsDirectory, "documents.gql");
@@ -198210,7 +198210,7 @@ var Config = class {
198210
198210
  return join4(this.definitionsDirectory, "schema.graphql");
198211
198211
  }
198212
198212
  get routerBuildDirectory() {
198213
- return join4(this.projectRoot, "dist");
198213
+ return join4(this.projectRoot, "dist", "assets");
198214
198214
  }
198215
198215
  get definitionsDocumentsPath() {
198216
198216
  return join4(this.definitionsDirectory, "documents.gql");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini-svelte",
3
- "version": "1.2.23-next.0",
3
+ "version": "1.2.24",
4
4
  "description": "The svelte plugin for houdini",
5
5
  "keywords": [
6
6
  "typescript",
@@ -32,7 +32,7 @@
32
32
  "rollup": "^3.7.4",
33
33
  "svelte": "^3.57.0",
34
34
  "vite": "^4.1.1",
35
- "houdini": "^1.2.23-next.0"
35
+ "houdini": "^1.2.24"
36
36
  },
37
37
  "files": [
38
38
  "build"