houdini-svelte 1.2.22 → 1.2.23

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[];
@@ -78598,7 +78598,8 @@ __export2(conventions_exports, {
78598
78598
  router_index_path: () => router_index_path,
78599
78599
  router_path: () => router_path,
78600
78600
  serialized_manifest_path: () => serialized_manifest_path,
78601
- server_adapter_path: () => server_adapter_path
78601
+ server_adapter_path: () => server_adapter_path,
78602
+ vite_render_path: () => vite_render_path
78602
78603
  });
78603
78604
  function router_path(config22) {
78604
78605
  return path_exports.join(base_dir(config22), "Router.jsx");
@@ -78612,6 +78613,9 @@ function server_adapter_path(config22, base) {
78612
78613
  function adapter_config_path(config22, base) {
78613
78614
  return path_exports.join(units_dir(config22, base), "render", "config.js");
78614
78615
  }
78616
+ function vite_render_path(config22, base) {
78617
+ return path_exports.join(units_dir(config22, base), "render", "vite.js");
78618
+ }
78615
78619
  function app_component_path(config22, base) {
78616
78620
  return path_exports.join(units_dir(config22, base), "render", "App.jsx");
78617
78621
  }
@@ -144103,7 +144107,8 @@ __export3(conventions_exports2, {
144103
144107
  router_index_path: () => router_index_path2,
144104
144108
  router_path: () => router_path2,
144105
144109
  serialized_manifest_path: () => serialized_manifest_path2,
144106
- server_adapter_path: () => server_adapter_path2
144110
+ server_adapter_path: () => server_adapter_path2,
144111
+ vite_render_path: () => vite_render_path2
144107
144112
  });
144108
144113
  function router_path2(config4) {
144109
144114
  return path_exports2.join(base_dir2(config4), "Router.jsx");
@@ -144117,6 +144122,9 @@ function server_adapter_path2(config4, base) {
144117
144122
  function adapter_config_path2(config4, base) {
144118
144123
  return path_exports2.join(units_dir2(config4, base), "render", "config.js");
144119
144124
  }
144125
+ function vite_render_path2(config4, base) {
144126
+ return path_exports2.join(units_dir2(config4, base), "render", "vite.js");
144127
+ }
144120
144128
  function app_component_path2(config4, base) {
144121
144129
  return path_exports2.join(units_dir2(config4, base), "render", "App.jsx");
144122
144130
  }
@@ -78589,7 +78589,8 @@ __export(conventions_exports, {
78589
78589
  router_index_path: () => router_index_path,
78590
78590
  router_path: () => router_path,
78591
78591
  serialized_manifest_path: () => serialized_manifest_path,
78592
- server_adapter_path: () => server_adapter_path
78592
+ server_adapter_path: () => server_adapter_path,
78593
+ vite_render_path: () => vite_render_path
78593
78594
  });
78594
78595
  function router_path(config22) {
78595
78596
  return path_exports.join(base_dir(config22), "Router.jsx");
@@ -78603,6 +78604,9 @@ function server_adapter_path(config22, base) {
78603
78604
  function adapter_config_path(config22, base) {
78604
78605
  return path_exports.join(units_dir(config22, base), "render", "config.js");
78605
78606
  }
78607
+ function vite_render_path(config22, base) {
78608
+ return path_exports.join(units_dir(config22, base), "render", "vite.js");
78609
+ }
78606
78610
  function app_component_path(config22, base) {
78607
78611
  return path_exports.join(units_dir(config22, base), "render", "App.jsx");
78608
78612
  }
@@ -144093,7 +144097,8 @@ __export2(conventions_exports2, {
144093
144097
  router_index_path: () => router_index_path2,
144094
144098
  router_path: () => router_path2,
144095
144099
  serialized_manifest_path: () => serialized_manifest_path2,
144096
- server_adapter_path: () => server_adapter_path2
144100
+ server_adapter_path: () => server_adapter_path2,
144101
+ vite_render_path: () => vite_render_path2
144097
144102
  });
144098
144103
  function router_path2(config4) {
144099
144104
  return path_exports2.join(base_dir2(config4), "Router.jsx");
@@ -144107,6 +144112,9 @@ function server_adapter_path2(config4, base) {
144107
144112
  function adapter_config_path2(config4, base) {
144108
144113
  return path_exports2.join(units_dir2(config4, base), "render", "config.js");
144109
144114
  }
144115
+ function vite_render_path2(config4, base) {
144116
+ return path_exports2.join(units_dir2(config4, base), "render", "vite.js");
144117
+ }
144110
144118
  function app_component_path2(config4, base) {
144111
144119
  return path_exports2.join(units_dir2(config4, base), "render", "App.jsx");
144112
144120
  }
@@ -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");
@@ -82692,7 +82692,8 @@ __export2(conventions_exports, {
82692
82692
  router_index_path: () => router_index_path,
82693
82693
  router_path: () => router_path,
82694
82694
  serialized_manifest_path: () => serialized_manifest_path,
82695
- server_adapter_path: () => server_adapter_path
82695
+ server_adapter_path: () => server_adapter_path,
82696
+ vite_render_path: () => vite_render_path
82696
82697
  });
82697
82698
  function router_path(config22) {
82698
82699
  return path_exports.join(base_dir(config22), "Router.jsx");
@@ -82706,6 +82707,9 @@ function server_adapter_path(config22, base) {
82706
82707
  function adapter_config_path(config22, base) {
82707
82708
  return path_exports.join(units_dir(config22, base), "render", "config.js");
82708
82709
  }
82710
+ function vite_render_path(config22, base) {
82711
+ return path_exports.join(units_dir(config22, base), "render", "vite.js");
82712
+ }
82709
82713
  function app_component_path(config22, base) {
82710
82714
  return path_exports.join(units_dir(config22, base), "render", "App.jsx");
82711
82715
  }
@@ -175802,7 +175806,8 @@ __export3(conventions_exports2, {
175802
175806
  router_index_path: () => router_index_path2,
175803
175807
  router_path: () => router_path2,
175804
175808
  serialized_manifest_path: () => serialized_manifest_path2,
175805
- server_adapter_path: () => server_adapter_path2
175809
+ server_adapter_path: () => server_adapter_path2,
175810
+ vite_render_path: () => vite_render_path2
175806
175811
  });
175807
175812
  function router_path2(config42) {
175808
175813
  return path_exports2.join(base_dir2(config42), "Router.jsx");
@@ -175816,6 +175821,9 @@ function server_adapter_path2(config42, base) {
175816
175821
  function adapter_config_path2(config42, base) {
175817
175822
  return path_exports2.join(units_dir2(config42, base), "render", "config.js");
175818
175823
  }
175824
+ function vite_render_path2(config42, base) {
175825
+ return path_exports2.join(units_dir2(config42, base), "render", "vite.js");
175826
+ }
175819
175827
  function app_component_path2(config42, base) {
175820
175828
  return path_exports2.join(units_dir2(config42, base), "render", "App.jsx");
175821
175829
  }
@@ -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");
@@ -82685,7 +82685,8 @@ __export(conventions_exports, {
82685
82685
  router_index_path: () => router_index_path,
82686
82686
  router_path: () => router_path,
82687
82687
  serialized_manifest_path: () => serialized_manifest_path,
82688
- server_adapter_path: () => server_adapter_path
82688
+ server_adapter_path: () => server_adapter_path,
82689
+ vite_render_path: () => vite_render_path
82689
82690
  });
82690
82691
  function router_path(config22) {
82691
82692
  return path_exports.join(base_dir(config22), "Router.jsx");
@@ -82699,6 +82700,9 @@ function server_adapter_path(config22, base) {
82699
82700
  function adapter_config_path(config22, base) {
82700
82701
  return path_exports.join(units_dir(config22, base), "render", "config.js");
82701
82702
  }
82703
+ function vite_render_path(config22, base) {
82704
+ return path_exports.join(units_dir(config22, base), "render", "vite.js");
82705
+ }
82702
82706
  function app_component_path(config22, base) {
82703
82707
  return path_exports.join(units_dir(config22, base), "render", "App.jsx");
82704
82708
  }
@@ -175794,7 +175798,8 @@ __export2(conventions_exports2, {
175794
175798
  router_index_path: () => router_index_path2,
175795
175799
  router_path: () => router_path2,
175796
175800
  serialized_manifest_path: () => serialized_manifest_path2,
175797
- server_adapter_path: () => server_adapter_path2
175801
+ server_adapter_path: () => server_adapter_path2,
175802
+ vite_render_path: () => vite_render_path2
175798
175803
  });
175799
175804
  function router_path2(config42) {
175800
175805
  return path_exports2.join(base_dir2(config42), "Router.jsx");
@@ -175808,6 +175813,9 @@ function server_adapter_path2(config42, base) {
175808
175813
  function adapter_config_path2(config42, base) {
175809
175814
  return path_exports2.join(units_dir2(config42, base), "render", "config.js");
175810
175815
  }
175816
+ function vite_render_path2(config42, base) {
175817
+ return path_exports2.join(units_dir2(config42, base), "render", "vite.js");
175818
+ }
175811
175819
  function app_component_path2(config42, base) {
175812
175820
  return path_exports2.join(units_dir2(config42, base), "render", "App.jsx");
175813
175821
  }
@@ -78601,7 +78601,8 @@ __export2(conventions_exports, {
78601
78601
  router_index_path: () => router_index_path,
78602
78602
  router_path: () => router_path,
78603
78603
  serialized_manifest_path: () => serialized_manifest_path,
78604
- server_adapter_path: () => server_adapter_path
78604
+ server_adapter_path: () => server_adapter_path,
78605
+ vite_render_path: () => vite_render_path
78605
78606
  });
78606
78607
  function router_path(config22) {
78607
78608
  return path_exports.join(base_dir(config22), "Router.jsx");
@@ -78615,6 +78616,9 @@ function server_adapter_path(config22, base) {
78615
78616
  function adapter_config_path(config22, base) {
78616
78617
  return path_exports.join(units_dir(config22, base), "render", "config.js");
78617
78618
  }
78619
+ function vite_render_path(config22, base) {
78620
+ return path_exports.join(units_dir(config22, base), "render", "vite.js");
78621
+ }
78618
78622
  function app_component_path(config22, base) {
78619
78623
  return path_exports.join(units_dir(config22, base), "render", "App.jsx");
78620
78624
  }
@@ -198220,7 +198224,7 @@ var Config = class {
198220
198224
  return join4(this.definitionsDirectory, "schema.graphql");
198221
198225
  }
198222
198226
  get routerBuildDirectory() {
198223
- return join4(this.projectRoot, "dist");
198227
+ return join4(this.projectRoot, "dist", "assets");
198224
198228
  }
198225
198229
  get definitionsDocumentsPath() {
198226
198230
  return join4(this.definitionsDirectory, "documents.gql");
@@ -264452,7 +264456,8 @@ __export5(conventions_exports2, {
264452
264456
  router_index_path: () => router_index_path2,
264453
264457
  router_path: () => router_path2,
264454
264458
  serialized_manifest_path: () => serialized_manifest_path2,
264455
- server_adapter_path: () => server_adapter_path2
264459
+ server_adapter_path: () => server_adapter_path2,
264460
+ vite_render_path: () => vite_render_path2
264456
264461
  });
264457
264462
  function router_path2(config42) {
264458
264463
  return path_exports4.join(base_dir2(config42), "Router.jsx");
@@ -264466,6 +264471,9 @@ function server_adapter_path2(config42, base) {
264466
264471
  function adapter_config_path2(config42, base) {
264467
264472
  return path_exports4.join(units_dir2(config42, base), "render", "config.js");
264468
264473
  }
264474
+ function vite_render_path2(config42, base) {
264475
+ return path_exports4.join(units_dir2(config42, base), "render", "vite.js");
264476
+ }
264469
264477
  function app_component_path2(config42, base) {
264470
264478
  return path_exports4.join(units_dir2(config42, base), "render", "App.jsx");
264471
264479
  }
@@ -78589,7 +78589,8 @@ __export(conventions_exports, {
78589
78589
  router_index_path: () => router_index_path,
78590
78590
  router_path: () => router_path,
78591
78591
  serialized_manifest_path: () => serialized_manifest_path,
78592
- server_adapter_path: () => server_adapter_path
78592
+ server_adapter_path: () => server_adapter_path,
78593
+ vite_render_path: () => vite_render_path
78593
78594
  });
78594
78595
  function router_path(config22) {
78595
78596
  return path_exports.join(base_dir(config22), "Router.jsx");
@@ -78603,6 +78604,9 @@ function server_adapter_path(config22, base) {
78603
78604
  function adapter_config_path(config22, base) {
78604
78605
  return path_exports.join(units_dir(config22, base), "render", "config.js");
78605
78606
  }
78607
+ function vite_render_path(config22, base) {
78608
+ return path_exports.join(units_dir(config22, base), "render", "vite.js");
78609
+ }
78606
78610
  function app_component_path(config22, base) {
78607
78611
  return path_exports.join(units_dir(config22, base), "render", "App.jsx");
78608
78612
  }
@@ -198206,7 +198210,7 @@ var Config = class {
198206
198210
  return join4(this.definitionsDirectory, "schema.graphql");
198207
198211
  }
198208
198212
  get routerBuildDirectory() {
198209
- return join4(this.projectRoot, "dist");
198213
+ return join4(this.projectRoot, "dist", "assets");
198210
198214
  }
198211
198215
  get definitionsDocumentsPath() {
198212
198216
  return join4(this.definitionsDirectory, "documents.gql");
@@ -264437,7 +264441,8 @@ __export4(conventions_exports2, {
264437
264441
  router_index_path: () => router_index_path2,
264438
264442
  router_path: () => router_path2,
264439
264443
  serialized_manifest_path: () => serialized_manifest_path2,
264440
- server_adapter_path: () => server_adapter_path2
264444
+ server_adapter_path: () => server_adapter_path2,
264445
+ vite_render_path: () => vite_render_path2
264441
264446
  });
264442
264447
  function router_path2(config42) {
264443
264448
  return path_exports4.join(base_dir2(config42), "Router.jsx");
@@ -264451,6 +264456,9 @@ function server_adapter_path2(config42, base) {
264451
264456
  function adapter_config_path2(config42, base) {
264452
264457
  return path_exports4.join(units_dir2(config42, base), "render", "config.js");
264453
264458
  }
264459
+ function vite_render_path2(config42, base) {
264460
+ return path_exports4.join(units_dir2(config42, base), "render", "vite.js");
264461
+ }
264454
264462
  function app_component_path2(config42, base) {
264455
264463
  return path_exports4.join(units_dir2(config42, base), "render", "App.jsx");
264456
264464
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini-svelte",
3
- "version": "1.2.22",
3
+ "version": "1.2.23",
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.22"
35
+ "houdini": "^1.2.23"
36
36
  },
37
37
  "files": [
38
38
  "build"