houdini 1.2.33 → 1.2.34
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.
package/build/cmd-cjs/index.js
CHANGED
|
@@ -78518,12 +78518,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
78518
78518
|
}
|
|
78519
78519
|
packageJSON2.devDependencies = {
|
|
78520
78520
|
...packageJSON2.devDependencies,
|
|
78521
|
-
houdini: "^1.2.
|
|
78521
|
+
houdini: "^1.2.34"
|
|
78522
78522
|
};
|
|
78523
78523
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
78524
78524
|
packageJSON2.devDependencies = {
|
|
78525
78525
|
...packageJSON2.devDependencies,
|
|
78526
|
-
"houdini-svelte": "^1.2.
|
|
78526
|
+
"houdini-svelte": "^1.2.34"
|
|
78527
78527
|
};
|
|
78528
78528
|
} else {
|
|
78529
78529
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
package/build/cmd-esm/index.js
CHANGED
|
@@ -78523,12 +78523,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
78523
78523
|
}
|
|
78524
78524
|
packageJSON2.devDependencies = {
|
|
78525
78525
|
...packageJSON2.devDependencies,
|
|
78526
|
-
houdini: "^1.2.
|
|
78526
|
+
houdini: "^1.2.34"
|
|
78527
78527
|
};
|
|
78528
78528
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
78529
78529
|
packageJSON2.devDependencies = {
|
|
78530
78530
|
...packageJSON2.devDependencies,
|
|
78531
|
-
"houdini-svelte": "^1.2.
|
|
78531
|
+
"houdini-svelte": "^1.2.34"
|
|
78532
78532
|
};
|
|
78533
78533
|
} else {
|
|
78534
78534
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
package/build/lib-cjs/index.js
CHANGED
|
@@ -68827,7 +68827,7 @@ function page_id(path3) {
|
|
|
68827
68827
|
if (path3.endsWith("/") && path3.length > 1) {
|
|
68828
68828
|
path3 = path3.substring(0, path3.length - 1);
|
|
68829
68829
|
}
|
|
68830
|
-
const special_chars = ["/", "]", "[", "(", ")"];
|
|
68830
|
+
const special_chars = ["/", "]", "[", "(", ")", "-"];
|
|
68831
68831
|
const mask = "_";
|
|
68832
68832
|
let copy = "";
|
|
68833
68833
|
for (const char of path3) {
|
package/build/lib-esm/index.js
CHANGED
|
@@ -68748,7 +68748,7 @@ function page_id(path3) {
|
|
|
68748
68748
|
if (path3.endsWith("/") && path3.length > 1) {
|
|
68749
68749
|
path3 = path3.substring(0, path3.length - 1);
|
|
68750
68750
|
}
|
|
68751
|
-
const special_chars = ["/", "]", "[", "(", ")"];
|
|
68751
|
+
const special_chars = ["/", "]", "[", "(", ")", "-"];
|
|
68752
68752
|
const mask = "_";
|
|
68753
68753
|
let copy = "";
|
|
68754
68754
|
for (const char of path3) {
|
package/build/vite-cjs/index.js
CHANGED
|
@@ -70584,7 +70584,7 @@ function page_id(path3) {
|
|
|
70584
70584
|
if (path3.endsWith("/") && path3.length > 1) {
|
|
70585
70585
|
path3 = path3.substring(0, path3.length - 1);
|
|
70586
70586
|
}
|
|
70587
|
-
const special_chars = ["/", "]", "[", "(", ")"];
|
|
70587
|
+
const special_chars = ["/", "]", "[", "(", ")", "-"];
|
|
70588
70588
|
const mask = "_";
|
|
70589
70589
|
let copy = "";
|
|
70590
70590
|
for (const char of path3) {
|
package/build/vite-esm/index.js
CHANGED
|
@@ -70577,7 +70577,7 @@ function page_id(path3) {
|
|
|
70577
70577
|
if (path3.endsWith("/") && path3.length > 1) {
|
|
70578
70578
|
path3 = path3.substring(0, path3.length - 1);
|
|
70579
70579
|
}
|
|
70580
|
-
const special_chars = ["/", "]", "[", "(", ")"];
|
|
70580
|
+
const special_chars = ["/", "]", "[", "(", ")", "-"];
|
|
70581
70581
|
const mask = "_";
|
|
70582
70582
|
let copy = "";
|
|
70583
70583
|
for (const char of path3) {
|