houdini 1.2.47 → 1.2.48
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
|
@@ -78053,12 +78053,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
78053
78053
|
}
|
|
78054
78054
|
packageJSON2.devDependencies = {
|
|
78055
78055
|
...packageJSON2.devDependencies,
|
|
78056
|
-
houdini: "^1.2.
|
|
78056
|
+
houdini: "^1.2.48"
|
|
78057
78057
|
};
|
|
78058
78058
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
78059
78059
|
packageJSON2.devDependencies = {
|
|
78060
78060
|
...packageJSON2.devDependencies,
|
|
78061
|
-
"houdini-svelte": "^1.2.
|
|
78061
|
+
"houdini-svelte": "^1.2.48"
|
|
78062
78062
|
};
|
|
78063
78063
|
} else {
|
|
78064
78064
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
package/build/cmd-esm/index.js
CHANGED
|
@@ -78058,12 +78058,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
78058
78058
|
}
|
|
78059
78059
|
packageJSON2.devDependencies = {
|
|
78060
78060
|
...packageJSON2.devDependencies,
|
|
78061
|
-
houdini: "^1.2.
|
|
78061
|
+
houdini: "^1.2.48"
|
|
78062
78062
|
};
|
|
78063
78063
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
78064
78064
|
packageJSON2.devDependencies = {
|
|
78065
78065
|
...packageJSON2.devDependencies,
|
|
78066
|
-
"houdini-svelte": "^1.2.
|
|
78066
|
+
"houdini-svelte": "^1.2.48"
|
|
78067
78067
|
};
|
|
78068
78068
|
} else {
|
|
78069
78069
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
package/build/vite-cjs/index.js
CHANGED
|
@@ -78724,7 +78724,7 @@ function Plugin(opts = {}) {
|
|
|
78724
78724
|
}
|
|
78725
78725
|
const ctx = {
|
|
78726
78726
|
content: code,
|
|
78727
|
-
watch_file: this.addWatchFile,
|
|
78727
|
+
watch_file: this.addWatchFile.bind(this),
|
|
78728
78728
|
config,
|
|
78729
78729
|
filepath,
|
|
78730
78730
|
map: this.getCombinedSourcemap()
|
package/build/vite-esm/index.js
CHANGED
|
@@ -78717,7 +78717,7 @@ function Plugin(opts = {}) {
|
|
|
78717
78717
|
}
|
|
78718
78718
|
const ctx = {
|
|
78719
78719
|
content: code,
|
|
78720
|
-
watch_file: this.addWatchFile,
|
|
78720
|
+
watch_file: this.addWatchFile.bind(this),
|
|
78721
78721
|
config,
|
|
78722
78722
|
filepath,
|
|
78723
78723
|
map: this.getCombinedSourcemap()
|