houdini-svelte 1.2.52 → 1.2.54

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
1
  import type { Framework } from './kit';
2
- declare const _default: (getFramwork: () => Framework) => {
2
+ declare const _default: (getFramework: () => Framework) => {
3
3
  config?: ((config: import("houdini").Config, env: import("vite").ConfigEnv) => import("vite").UserConfig | Promise<import("vite").UserConfig>) | undefined;
4
4
  buildStart?: ((this: import("rollup").PluginContext, options: import("rollup").NormalizedInputOptions & {
5
5
  houdiniConfig: import("houdini").Config;
@@ -172513,7 +172513,7 @@ async function codegen_default(input) {
172513
172513
  // src/plugin/fsPatch.ts
172514
172514
  var import_node_fs3 = __toESM(require("node:fs"), 1);
172515
172515
  var import_promises3 = __toESM(require("node:fs/promises"), 1);
172516
- var fsPatch_default = (getFramwork) => ({
172516
+ var fsPatch_default = (getFramework) => ({
172517
172517
  async resolveId(filepath, _, { config: config2, isEntry }) {
172518
172518
  if (!isEntry) {
172519
172519
  const match = filepath.match("^((../)+)src/routes");
@@ -172523,7 +172523,7 @@ var fsPatch_default = (getFramwork) => ({
172523
172523
  return;
172524
172524
  }
172525
172525
  filepath = path_exports.posixify(filepath.toString());
172526
- if (is_route_script(getFramwork(), filepath) || is_root_layout(config2, filepath) || is_root_layout_server(config2, filepath)) {
172526
+ if (is_route_script(getFramework(), filepath) || is_root_layout(config2, filepath) || is_root_layout_server(config2, filepath)) {
172527
172527
  return {
172528
172528
  id: resolve_relative(config2, filepath)
172529
172529
  };
@@ -172531,7 +172531,7 @@ var fsPatch_default = (getFramwork) => ({
172531
172531
  },
172532
172532
  load: async (filepath, { config: config2 }) => {
172533
172533
  filepath = path_exports.posixify(filepath.toString());
172534
- if (is_route_script(getFramwork(), filepath) || is_root_layout_server(config2, filepath)) {
172534
+ if (is_route_script(getFramework(), filepath) || is_root_layout_server(config2, filepath)) {
172535
172535
  filepath = resolve_relative(config2, filepath);
172536
172536
  return {
172537
172537
  code: await fs_exports.readFile(filepath) || await fs_exports.readFile(path_exports.join(config2.projectRoot, filepath)) || ""
@@ -172549,34 +172549,40 @@ var _readDirSync = import_node_fs3.default.readdirSync;
172549
172549
  var _statSync = import_node_fs3.default.statSync;
172550
172550
  var _readFileSync = import_node_fs3.default.readFileSync;
172551
172551
  var _unlinkSync = import_node_fs3.default.unlinkSync;
172552
+ function getStringFilepath(fp) {
172553
+ if (fp instanceof URL) {
172554
+ return fp.pathname;
172555
+ }
172556
+ return fp.toString();
172557
+ }
172552
172558
  import_node_fs3.default.readFileSync = function(fp, options) {
172553
- const filepath = fp.toString();
172559
+ const filepath = getStringFilepath(fp);
172554
172560
  if (filepath.endsWith("+page.js") || filepath.endsWith("+layout.js") || filepath.replace(".ts", ".js").endsWith("+layout.server.js")) {
172555
172561
  try {
172556
- return _readFileSync(filepath, options);
172562
+ return _readFileSync(fp, options);
172557
172563
  } catch {
172558
172564
  return typeof options === "string" || options?.encoding ? "" : Buffer.from("");
172559
172565
  }
172560
172566
  }
172561
172567
  if (filepath.endsWith(path_exports.join("src", "routes", "+layout.svelte"))) {
172562
172568
  try {
172563
- return _readFileSync(filepath, options);
172569
+ return _readFileSync(fp, options);
172564
172570
  } catch {
172565
172571
  return typeof options === "string" || options?.encoding ? empty_layout : Buffer.from(empty_layout);
172566
172572
  }
172567
172573
  }
172568
- return _readFileSync(filepath, options);
172574
+ return _readFileSync(fp, options);
172569
172575
  };
172570
172576
  import_node_fs3.default.statSync = function(fp, options) {
172571
- let filepath = fp.toString();
172577
+ let filepath = getStringFilepath(fp);
172572
172578
  if (!filepath.includes("routes") || !path_exports.basename(filepath).startsWith("+")) {
172573
172579
  return _statSync(fp, options);
172574
172580
  }
172575
172581
  try {
172576
- const result = _statSync(filepath, options);
172582
+ const result = _statSync(fp, options);
172577
172583
  return result;
172578
172584
  } catch (error2) {
172579
- filepath = path_exports.posixify(filepath.toString());
172585
+ filepath = path_exports.posixify(filepath);
172580
172586
  const mock3 = virtual_file(path_exports.basename(filepath), { withFileTypes: true });
172581
172587
  if (filepath.endsWith(path_exports.join("routes", "+layout.svelte")) || filepath.endsWith(path_exports.join("routes", "+layout.svelte")) || filepath.endsWith(path_exports.join("routes", "+layout.server.js")) || filepath.endsWith(path_exports.join("routes", "+layout.server.js"))) {
172582
172588
  return mock3;
@@ -172594,10 +172600,11 @@ import_node_fs3.default.unlinkSync = function(filepath) {
172594
172600
  } catch {
172595
172601
  }
172596
172602
  };
172597
- import_node_fs3.default.readdirSync = function(filepath, options) {
172598
- if (!filepath.toString().includes("routes"))
172599
- return _readDirSync(filepath, options);
172600
- const result = _readDirSync(filepath, options);
172603
+ import_node_fs3.default.readdirSync = function(fp, options) {
172604
+ const filepath = getStringFilepath(fp);
172605
+ if (!filepath.includes("routes"))
172606
+ return _readDirSync(fp, options);
172607
+ const result = _readDirSync(fp, options);
172601
172608
  const file_names = result.map((file) => {
172602
172609
  if (file instanceof import_node_fs3.Dirent) {
172603
172610
  return file.name;
@@ -172613,7 +172620,7 @@ import_node_fs3.default.readdirSync = function(filepath, options) {
172613
172620
  if (contains("+page.svelte", "+page.gql") && !contains("+page.js", "+page.ts")) {
172614
172621
  result.push(virtual_file("+page.js", options));
172615
172622
  }
172616
- const posix_filepath = path_exports.posixify(filepath.toString());
172623
+ const posix_filepath = path_exports.posixify(filepath);
172617
172624
  if ((is_root_route(posix_filepath) || contains("+layout.svelte", "+layout.gql")) && !contains("+layout.ts", "+layout.js")) {
172618
172625
  result.push(virtual_file("+layout.js", options));
172619
172626
  }
@@ -172507,7 +172507,7 @@ async function codegen_default(input) {
172507
172507
  // src/plugin/fsPatch.ts
172508
172508
  import filesystem, { Dirent } from "node:fs";
172509
172509
  import filesystemPromises from "node:fs/promises";
172510
- var fsPatch_default = (getFramwork) => ({
172510
+ var fsPatch_default = (getFramework) => ({
172511
172511
  async resolveId(filepath, _, { config: config2, isEntry }) {
172512
172512
  if (!isEntry) {
172513
172513
  const match = filepath.match("^((../)+)src/routes");
@@ -172517,7 +172517,7 @@ var fsPatch_default = (getFramwork) => ({
172517
172517
  return;
172518
172518
  }
172519
172519
  filepath = path_exports.posixify(filepath.toString());
172520
- if (is_route_script(getFramwork(), filepath) || is_root_layout(config2, filepath) || is_root_layout_server(config2, filepath)) {
172520
+ if (is_route_script(getFramework(), filepath) || is_root_layout(config2, filepath) || is_root_layout_server(config2, filepath)) {
172521
172521
  return {
172522
172522
  id: resolve_relative(config2, filepath)
172523
172523
  };
@@ -172525,7 +172525,7 @@ var fsPatch_default = (getFramwork) => ({
172525
172525
  },
172526
172526
  load: async (filepath, { config: config2 }) => {
172527
172527
  filepath = path_exports.posixify(filepath.toString());
172528
- if (is_route_script(getFramwork(), filepath) || is_root_layout_server(config2, filepath)) {
172528
+ if (is_route_script(getFramework(), filepath) || is_root_layout_server(config2, filepath)) {
172529
172529
  filepath = resolve_relative(config2, filepath);
172530
172530
  return {
172531
172531
  code: await fs_exports.readFile(filepath) || await fs_exports.readFile(path_exports.join(config2.projectRoot, filepath)) || ""
@@ -172543,34 +172543,40 @@ var _readDirSync = filesystem.readdirSync;
172543
172543
  var _statSync = filesystem.statSync;
172544
172544
  var _readFileSync = filesystem.readFileSync;
172545
172545
  var _unlinkSync = filesystem.unlinkSync;
172546
+ function getStringFilepath(fp) {
172547
+ if (fp instanceof URL) {
172548
+ return fp.pathname;
172549
+ }
172550
+ return fp.toString();
172551
+ }
172546
172552
  filesystem.readFileSync = function(fp, options) {
172547
- const filepath = fp.toString();
172553
+ const filepath = getStringFilepath(fp);
172548
172554
  if (filepath.endsWith("+page.js") || filepath.endsWith("+layout.js") || filepath.replace(".ts", ".js").endsWith("+layout.server.js")) {
172549
172555
  try {
172550
- return _readFileSync(filepath, options);
172556
+ return _readFileSync(fp, options);
172551
172557
  } catch {
172552
172558
  return typeof options === "string" || options?.encoding ? "" : Buffer.from("");
172553
172559
  }
172554
172560
  }
172555
172561
  if (filepath.endsWith(path_exports.join("src", "routes", "+layout.svelte"))) {
172556
172562
  try {
172557
- return _readFileSync(filepath, options);
172563
+ return _readFileSync(fp, options);
172558
172564
  } catch {
172559
172565
  return typeof options === "string" || options?.encoding ? empty_layout : Buffer.from(empty_layout);
172560
172566
  }
172561
172567
  }
172562
- return _readFileSync(filepath, options);
172568
+ return _readFileSync(fp, options);
172563
172569
  };
172564
172570
  filesystem.statSync = function(fp, options) {
172565
- let filepath = fp.toString();
172571
+ let filepath = getStringFilepath(fp);
172566
172572
  if (!filepath.includes("routes") || !path_exports.basename(filepath).startsWith("+")) {
172567
172573
  return _statSync(fp, options);
172568
172574
  }
172569
172575
  try {
172570
- const result = _statSync(filepath, options);
172576
+ const result = _statSync(fp, options);
172571
172577
  return result;
172572
172578
  } catch (error2) {
172573
- filepath = path_exports.posixify(filepath.toString());
172579
+ filepath = path_exports.posixify(filepath);
172574
172580
  const mock3 = virtual_file(path_exports.basename(filepath), { withFileTypes: true });
172575
172581
  if (filepath.endsWith(path_exports.join("routes", "+layout.svelte")) || filepath.endsWith(path_exports.join("routes", "+layout.svelte")) || filepath.endsWith(path_exports.join("routes", "+layout.server.js")) || filepath.endsWith(path_exports.join("routes", "+layout.server.js"))) {
172576
172582
  return mock3;
@@ -172588,10 +172594,11 @@ filesystem.unlinkSync = function(filepath) {
172588
172594
  } catch {
172589
172595
  }
172590
172596
  };
172591
- filesystem.readdirSync = function(filepath, options) {
172592
- if (!filepath.toString().includes("routes"))
172593
- return _readDirSync(filepath, options);
172594
- const result = _readDirSync(filepath, options);
172597
+ filesystem.readdirSync = function(fp, options) {
172598
+ const filepath = getStringFilepath(fp);
172599
+ if (!filepath.includes("routes"))
172600
+ return _readDirSync(fp, options);
172601
+ const result = _readDirSync(fp, options);
172595
172602
  const file_names = result.map((file) => {
172596
172603
  if (file instanceof Dirent) {
172597
172604
  return file.name;
@@ -172607,7 +172614,7 @@ filesystem.readdirSync = function(filepath, options) {
172607
172614
  if (contains("+page.svelte", "+page.gql") && !contains("+page.js", "+page.ts")) {
172608
172615
  result.push(virtual_file("+page.js", options));
172609
172616
  }
172610
- const posix_filepath = path_exports.posixify(filepath.toString());
172617
+ const posix_filepath = path_exports.posixify(filepath);
172611
172618
  if ((is_root_route(posix_filepath) || contains("+layout.svelte", "+layout.gql")) && !contains("+layout.ts", "+layout.js")) {
172612
172619
  result.push(virtual_file("+layout.js", options));
172613
172620
  }
@@ -294488,7 +294488,7 @@ async function codegen_default(input) {
294488
294488
  // src/plugin/fsPatch.ts
294489
294489
  var import_node_fs3 = __toESM(require("node:fs"), 1);
294490
294490
  var import_promises5 = __toESM(require("node:fs/promises"), 1);
294491
- var fsPatch_default = (getFramwork) => ({
294491
+ var fsPatch_default = (getFramework) => ({
294492
294492
  async resolveId(filepath, _, { config: config2, isEntry }) {
294493
294493
  if (!isEntry) {
294494
294494
  const match = filepath.match("^((../)+)src/routes");
@@ -294498,7 +294498,7 @@ var fsPatch_default = (getFramwork) => ({
294498
294498
  return;
294499
294499
  }
294500
294500
  filepath = path_exports.posixify(filepath.toString());
294501
- if (is_route_script(getFramwork(), filepath) || is_root_layout(config2, filepath) || is_root_layout_server(config2, filepath)) {
294501
+ if (is_route_script(getFramework(), filepath) || is_root_layout(config2, filepath) || is_root_layout_server(config2, filepath)) {
294502
294502
  return {
294503
294503
  id: resolve_relative(config2, filepath)
294504
294504
  };
@@ -294506,7 +294506,7 @@ var fsPatch_default = (getFramwork) => ({
294506
294506
  },
294507
294507
  load: async (filepath, { config: config2 }) => {
294508
294508
  filepath = path_exports.posixify(filepath.toString());
294509
- if (is_route_script(getFramwork(), filepath) || is_root_layout_server(config2, filepath)) {
294509
+ if (is_route_script(getFramework(), filepath) || is_root_layout_server(config2, filepath)) {
294510
294510
  filepath = resolve_relative(config2, filepath);
294511
294511
  return {
294512
294512
  code: await fs_exports.readFile(filepath) || await fs_exports.readFile(path_exports.join(config2.projectRoot, filepath)) || ""
@@ -294524,34 +294524,40 @@ var _readDirSync = import_node_fs3.default.readdirSync;
294524
294524
  var _statSync = import_node_fs3.default.statSync;
294525
294525
  var _readFileSync = import_node_fs3.default.readFileSync;
294526
294526
  var _unlinkSync = import_node_fs3.default.unlinkSync;
294527
+ function getStringFilepath(fp) {
294528
+ if (fp instanceof URL) {
294529
+ return fp.pathname;
294530
+ }
294531
+ return fp.toString();
294532
+ }
294527
294533
  import_node_fs3.default.readFileSync = function(fp, options) {
294528
- const filepath = fp.toString();
294534
+ const filepath = getStringFilepath(fp);
294529
294535
  if (filepath.endsWith("+page.js") || filepath.endsWith("+layout.js") || filepath.replace(".ts", ".js").endsWith("+layout.server.js")) {
294530
294536
  try {
294531
- return _readFileSync(filepath, options);
294537
+ return _readFileSync(fp, options);
294532
294538
  } catch {
294533
294539
  return typeof options === "string" || options?.encoding ? "" : Buffer.from("");
294534
294540
  }
294535
294541
  }
294536
294542
  if (filepath.endsWith(path_exports.join("src", "routes", "+layout.svelte"))) {
294537
294543
  try {
294538
- return _readFileSync(filepath, options);
294544
+ return _readFileSync(fp, options);
294539
294545
  } catch {
294540
294546
  return typeof options === "string" || options?.encoding ? empty_layout : Buffer.from(empty_layout);
294541
294547
  }
294542
294548
  }
294543
- return _readFileSync(filepath, options);
294549
+ return _readFileSync(fp, options);
294544
294550
  };
294545
294551
  import_node_fs3.default.statSync = function(fp, options) {
294546
- let filepath = fp.toString();
294552
+ let filepath = getStringFilepath(fp);
294547
294553
  if (!filepath.includes("routes") || !path_exports.basename(filepath).startsWith("+")) {
294548
294554
  return _statSync(fp, options);
294549
294555
  }
294550
294556
  try {
294551
- const result = _statSync(filepath, options);
294557
+ const result = _statSync(fp, options);
294552
294558
  return result;
294553
294559
  } catch (error2) {
294554
- filepath = path_exports.posixify(filepath.toString());
294560
+ filepath = path_exports.posixify(filepath);
294555
294561
  const mock5 = virtual_file(path_exports.basename(filepath), { withFileTypes: true });
294556
294562
  if (filepath.endsWith(path_exports.join("routes", "+layout.svelte")) || filepath.endsWith(path_exports.join("routes", "+layout.svelte")) || filepath.endsWith(path_exports.join("routes", "+layout.server.js")) || filepath.endsWith(path_exports.join("routes", "+layout.server.js"))) {
294557
294563
  return mock5;
@@ -294569,10 +294575,11 @@ import_node_fs3.default.unlinkSync = function(filepath) {
294569
294575
  } catch {
294570
294576
  }
294571
294577
  };
294572
- import_node_fs3.default.readdirSync = function(filepath, options) {
294573
- if (!filepath.toString().includes("routes"))
294574
- return _readDirSync(filepath, options);
294575
- const result = _readDirSync(filepath, options);
294578
+ import_node_fs3.default.readdirSync = function(fp, options) {
294579
+ const filepath = getStringFilepath(fp);
294580
+ if (!filepath.includes("routes"))
294581
+ return _readDirSync(fp, options);
294582
+ const result = _readDirSync(fp, options);
294576
294583
  const file_names = result.map((file) => {
294577
294584
  if (file instanceof import_node_fs3.Dirent) {
294578
294585
  return file.name;
@@ -294588,7 +294595,7 @@ import_node_fs3.default.readdirSync = function(filepath, options) {
294588
294595
  if (contains("+page.svelte", "+page.gql") && !contains("+page.js", "+page.ts")) {
294589
294596
  result.push(virtual_file("+page.js", options));
294590
294597
  }
294591
- const posix_filepath = path_exports.posixify(filepath.toString());
294598
+ const posix_filepath = path_exports.posixify(filepath);
294592
294599
  if ((is_root_route(posix_filepath) || contains("+layout.svelte", "+layout.gql")) && !contains("+layout.ts", "+layout.js")) {
294593
294600
  result.push(virtual_file("+layout.js", options));
294594
294601
  }
@@ -294477,7 +294477,7 @@ async function codegen_default(input) {
294477
294477
  // src/plugin/fsPatch.ts
294478
294478
  import filesystem, { Dirent } from "node:fs";
294479
294479
  import filesystemPromises from "node:fs/promises";
294480
- var fsPatch_default = (getFramwork) => ({
294480
+ var fsPatch_default = (getFramework) => ({
294481
294481
  async resolveId(filepath, _, { config: config2, isEntry }) {
294482
294482
  if (!isEntry) {
294483
294483
  const match = filepath.match("^((../)+)src/routes");
@@ -294487,7 +294487,7 @@ var fsPatch_default = (getFramwork) => ({
294487
294487
  return;
294488
294488
  }
294489
294489
  filepath = path_exports.posixify(filepath.toString());
294490
- if (is_route_script(getFramwork(), filepath) || is_root_layout(config2, filepath) || is_root_layout_server(config2, filepath)) {
294490
+ if (is_route_script(getFramework(), filepath) || is_root_layout(config2, filepath) || is_root_layout_server(config2, filepath)) {
294491
294491
  return {
294492
294492
  id: resolve_relative(config2, filepath)
294493
294493
  };
@@ -294495,7 +294495,7 @@ var fsPatch_default = (getFramwork) => ({
294495
294495
  },
294496
294496
  load: async (filepath, { config: config2 }) => {
294497
294497
  filepath = path_exports.posixify(filepath.toString());
294498
- if (is_route_script(getFramwork(), filepath) || is_root_layout_server(config2, filepath)) {
294498
+ if (is_route_script(getFramework(), filepath) || is_root_layout_server(config2, filepath)) {
294499
294499
  filepath = resolve_relative(config2, filepath);
294500
294500
  return {
294501
294501
  code: await fs_exports.readFile(filepath) || await fs_exports.readFile(path_exports.join(config2.projectRoot, filepath)) || ""
@@ -294513,34 +294513,40 @@ var _readDirSync = filesystem.readdirSync;
294513
294513
  var _statSync = filesystem.statSync;
294514
294514
  var _readFileSync = filesystem.readFileSync;
294515
294515
  var _unlinkSync = filesystem.unlinkSync;
294516
+ function getStringFilepath(fp) {
294517
+ if (fp instanceof URL) {
294518
+ return fp.pathname;
294519
+ }
294520
+ return fp.toString();
294521
+ }
294516
294522
  filesystem.readFileSync = function(fp, options) {
294517
- const filepath = fp.toString();
294523
+ const filepath = getStringFilepath(fp);
294518
294524
  if (filepath.endsWith("+page.js") || filepath.endsWith("+layout.js") || filepath.replace(".ts", ".js").endsWith("+layout.server.js")) {
294519
294525
  try {
294520
- return _readFileSync(filepath, options);
294526
+ return _readFileSync(fp, options);
294521
294527
  } catch {
294522
294528
  return typeof options === "string" || options?.encoding ? "" : Buffer.from("");
294523
294529
  }
294524
294530
  }
294525
294531
  if (filepath.endsWith(path_exports.join("src", "routes", "+layout.svelte"))) {
294526
294532
  try {
294527
- return _readFileSync(filepath, options);
294533
+ return _readFileSync(fp, options);
294528
294534
  } catch {
294529
294535
  return typeof options === "string" || options?.encoding ? empty_layout : Buffer.from(empty_layout);
294530
294536
  }
294531
294537
  }
294532
- return _readFileSync(filepath, options);
294538
+ return _readFileSync(fp, options);
294533
294539
  };
294534
294540
  filesystem.statSync = function(fp, options) {
294535
- let filepath = fp.toString();
294541
+ let filepath = getStringFilepath(fp);
294536
294542
  if (!filepath.includes("routes") || !path_exports.basename(filepath).startsWith("+")) {
294537
294543
  return _statSync(fp, options);
294538
294544
  }
294539
294545
  try {
294540
- const result = _statSync(filepath, options);
294546
+ const result = _statSync(fp, options);
294541
294547
  return result;
294542
294548
  } catch (error2) {
294543
- filepath = path_exports.posixify(filepath.toString());
294549
+ filepath = path_exports.posixify(filepath);
294544
294550
  const mock5 = virtual_file(path_exports.basename(filepath), { withFileTypes: true });
294545
294551
  if (filepath.endsWith(path_exports.join("routes", "+layout.svelte")) || filepath.endsWith(path_exports.join("routes", "+layout.svelte")) || filepath.endsWith(path_exports.join("routes", "+layout.server.js")) || filepath.endsWith(path_exports.join("routes", "+layout.server.js"))) {
294546
294552
  return mock5;
@@ -294558,10 +294564,11 @@ filesystem.unlinkSync = function(filepath) {
294558
294564
  } catch {
294559
294565
  }
294560
294566
  };
294561
- filesystem.readdirSync = function(filepath, options) {
294562
- if (!filepath.toString().includes("routes"))
294563
- return _readDirSync(filepath, options);
294564
- const result = _readDirSync(filepath, options);
294567
+ filesystem.readdirSync = function(fp, options) {
294568
+ const filepath = getStringFilepath(fp);
294569
+ if (!filepath.includes("routes"))
294570
+ return _readDirSync(fp, options);
294571
+ const result = _readDirSync(fp, options);
294565
294572
  const file_names = result.map((file) => {
294566
294573
  if (file instanceof Dirent) {
294567
294574
  return file.name;
@@ -294577,7 +294584,7 @@ filesystem.readdirSync = function(filepath, options) {
294577
294584
  if (contains("+page.svelte", "+page.gql") && !contains("+page.js", "+page.ts")) {
294578
294585
  result.push(virtual_file("+page.js", options));
294579
294586
  }
294580
- const posix_filepath = path_exports.posixify(filepath.toString());
294587
+ const posix_filepath = path_exports.posixify(filepath);
294581
294588
  if ((is_root_route(posix_filepath) || contains("+layout.svelte", "+layout.gql")) && !contains("+layout.ts", "+layout.js")) {
294582
294589
  result.push(virtual_file("+layout.js", options));
294583
294590
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini-svelte",
3
- "version": "1.2.52",
3
+ "version": "1.2.54",
4
4
  "description": "The svelte plugin for houdini",
5
5
  "keywords": [
6
6
  "typescript",
@@ -33,7 +33,7 @@
33
33
  "rollup": "^3.7.4",
34
34
  "svelte": "^3.57.0",
35
35
  "vite": "^4.1.1",
36
- "houdini": "^1.2.52"
36
+ "houdini": "^1.2.54"
37
37
  },
38
38
  "files": [
39
39
  "build"