houdini 1.2.15 → 1.2.16
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
|
@@ -76155,12 +76155,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
76155
76155
|
}
|
|
76156
76156
|
packageJSON2.devDependencies = {
|
|
76157
76157
|
...packageJSON2.devDependencies,
|
|
76158
|
-
houdini: "^1.2.
|
|
76158
|
+
houdini: "^1.2.16"
|
|
76159
76159
|
};
|
|
76160
76160
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
76161
76161
|
packageJSON2.devDependencies = {
|
|
76162
76162
|
...packageJSON2.devDependencies,
|
|
76163
|
-
"houdini-svelte": "^1.2.
|
|
76163
|
+
"houdini-svelte": "^1.2.16"
|
|
76164
76164
|
};
|
|
76165
76165
|
} else {
|
|
76166
76166
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
package/build/cmd-esm/index.js
CHANGED
|
@@ -76160,12 +76160,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
76160
76160
|
}
|
|
76161
76161
|
packageJSON2.devDependencies = {
|
|
76162
76162
|
...packageJSON2.devDependencies,
|
|
76163
|
-
houdini: "^1.2.
|
|
76163
|
+
houdini: "^1.2.16"
|
|
76164
76164
|
};
|
|
76165
76165
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
76166
76166
|
packageJSON2.devDependencies = {
|
|
76167
76167
|
...packageJSON2.devDependencies,
|
|
76168
|
-
"houdini-svelte": "^1.2.
|
|
76168
|
+
"houdini-svelte": "^1.2.16"
|
|
76169
76169
|
};
|
|
76170
76170
|
} else {
|
|
76171
76171
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
package/build/vite-cjs/index.js
CHANGED
|
@@ -77269,6 +77269,15 @@ function Plugin(opts = {}) {
|
|
|
77269
77269
|
});
|
|
77270
77270
|
},
|
|
77271
77271
|
async buildStart(args) {
|
|
77272
|
+
for (const plugin2 of config3.plugins) {
|
|
77273
|
+
if (typeof plugin2.vite?.buildStart !== "function") {
|
|
77274
|
+
continue;
|
|
77275
|
+
}
|
|
77276
|
+
plugin2.vite.buildStart.call(this, {
|
|
77277
|
+
...args,
|
|
77278
|
+
houdiniConfig: config3
|
|
77279
|
+
});
|
|
77280
|
+
}
|
|
77272
77281
|
if (viteEnv.mode === "production" && !isSecondaryBuild()) {
|
|
77273
77282
|
if (config3.localSchema) {
|
|
77274
77283
|
config3.schema = await loadLocalSchema(config3);
|
|
@@ -77280,15 +77289,6 @@ function Plugin(opts = {}) {
|
|
|
77280
77289
|
throw e2;
|
|
77281
77290
|
}
|
|
77282
77291
|
}
|
|
77283
|
-
for (const plugin2 of config3.plugins) {
|
|
77284
|
-
if (typeof plugin2.vite?.buildStart !== "function") {
|
|
77285
|
-
continue;
|
|
77286
|
-
}
|
|
77287
|
-
plugin2.vite.buildStart.call(this, {
|
|
77288
|
-
...args,
|
|
77289
|
-
houdiniConfig: config3
|
|
77290
|
-
});
|
|
77291
|
-
}
|
|
77292
77292
|
},
|
|
77293
77293
|
options(options) {
|
|
77294
77294
|
for (const plugin2 of config3.plugins) {
|
package/build/vite-esm/index.js
CHANGED
|
@@ -77264,6 +77264,15 @@ function Plugin(opts = {}) {
|
|
|
77264
77264
|
});
|
|
77265
77265
|
},
|
|
77266
77266
|
async buildStart(args) {
|
|
77267
|
+
for (const plugin2 of config3.plugins) {
|
|
77268
|
+
if (typeof plugin2.vite?.buildStart !== "function") {
|
|
77269
|
+
continue;
|
|
77270
|
+
}
|
|
77271
|
+
plugin2.vite.buildStart.call(this, {
|
|
77272
|
+
...args,
|
|
77273
|
+
houdiniConfig: config3
|
|
77274
|
+
});
|
|
77275
|
+
}
|
|
77267
77276
|
if (viteEnv.mode === "production" && !isSecondaryBuild()) {
|
|
77268
77277
|
if (config3.localSchema) {
|
|
77269
77278
|
config3.schema = await loadLocalSchema(config3);
|
|
@@ -77275,15 +77284,6 @@ function Plugin(opts = {}) {
|
|
|
77275
77284
|
throw e2;
|
|
77276
77285
|
}
|
|
77277
77286
|
}
|
|
77278
|
-
for (const plugin2 of config3.plugins) {
|
|
77279
|
-
if (typeof plugin2.vite?.buildStart !== "function") {
|
|
77280
|
-
continue;
|
|
77281
|
-
}
|
|
77282
|
-
plugin2.vite.buildStart.call(this, {
|
|
77283
|
-
...args,
|
|
77284
|
-
houdiniConfig: config3
|
|
77285
|
-
});
|
|
77286
|
-
}
|
|
77287
77287
|
},
|
|
77288
77288
|
options(options) {
|
|
77289
77289
|
for (const plugin2 of config3.plugins) {
|