houdini 1.1.5 → 1.1.6
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
|
@@ -79520,8 +79520,8 @@ async function updatePackageJSON(targetPath) {
|
|
|
79520
79520
|
}
|
|
79521
79521
|
packageJSON.devDependencies = {
|
|
79522
79522
|
...packageJSON.devDependencies,
|
|
79523
|
-
houdini: "^1.1.
|
|
79524
|
-
"houdini-svelte": "^1.1.
|
|
79523
|
+
houdini: "^1.1.6",
|
|
79524
|
+
"houdini-svelte": "^1.1.6"
|
|
79525
79525
|
};
|
|
79526
79526
|
await fs_exports.writeFile(packagePath, JSON.stringify(packageJSON, null, 4));
|
|
79527
79527
|
}
|
package/build/cmd-esm/index.js
CHANGED
|
@@ -79525,8 +79525,8 @@ async function updatePackageJSON(targetPath) {
|
|
|
79525
79525
|
}
|
|
79526
79526
|
packageJSON.devDependencies = {
|
|
79527
79527
|
...packageJSON.devDependencies,
|
|
79528
|
-
houdini: "^1.1.
|
|
79529
|
-
"houdini-svelte": "^1.1.
|
|
79528
|
+
houdini: "^1.1.6",
|
|
79529
|
+
"houdini-svelte": "^1.1.6"
|
|
79530
79530
|
};
|
|
79531
79531
|
await fs_exports.writeFile(packagePath, JSON.stringify(packageJSON, null, 4));
|
|
79532
79532
|
}
|
package/build/lib-cjs/index.js
CHANGED
|
@@ -66279,7 +66279,7 @@ var ClientPluginContextWrapper = class {
|
|
|
66279
66279
|
};
|
|
66280
66280
|
const firstInit = !ctx.stuff.inputs || !ctx.stuff.inputs.init;
|
|
66281
66281
|
const hasChanged = Object.keys(changed).length > 0 || firstInit;
|
|
66282
|
-
if (
|
|
66282
|
+
if (hasChanged) {
|
|
66283
66283
|
const newVariables = {
|
|
66284
66284
|
...ctx.stuff.inputs?.marshaled,
|
|
66285
66285
|
...marshalInputs({
|
package/build/lib-esm/index.js
CHANGED
|
@@ -66224,7 +66224,7 @@ var ClientPluginContextWrapper = class {
|
|
|
66224
66224
|
};
|
|
66225
66225
|
const firstInit = !ctx.stuff.inputs || !ctx.stuff.inputs.init;
|
|
66226
66226
|
const hasChanged = Object.keys(changed).length > 0 || firstInit;
|
|
66227
|
-
if (
|
|
66227
|
+
if (hasChanged) {
|
|
66228
66228
|
const newVariables = {
|
|
66229
66229
|
...ctx.stuff.inputs?.marshaled,
|
|
66230
66230
|
...marshalInputs({
|
|
@@ -310,7 +310,7 @@ class ClientPluginContextWrapper {
|
|
|
310
310
|
};
|
|
311
311
|
const firstInit = !ctx.stuff.inputs || !ctx.stuff.inputs.init;
|
|
312
312
|
const hasChanged = Object.keys(changed).length > 0 || firstInit;
|
|
313
|
-
if (
|
|
313
|
+
if (hasChanged) {
|
|
314
314
|
const newVariables = {
|
|
315
315
|
...ctx.stuff.inputs?.marshaled,
|
|
316
316
|
...(0, import_scalars.marshalInputs)({
|
|
@@ -287,7 +287,7 @@ class ClientPluginContextWrapper {
|
|
|
287
287
|
};
|
|
288
288
|
const firstInit = !ctx.stuff.inputs || !ctx.stuff.inputs.init;
|
|
289
289
|
const hasChanged = Object.keys(changed).length > 0 || firstInit;
|
|
290
|
-
if (
|
|
290
|
+
if (hasChanged) {
|
|
291
291
|
const newVariables = {
|
|
292
292
|
...ctx.stuff.inputs?.marshaled,
|
|
293
293
|
...marshalInputs({
|