houdini 1.2.20-next.0 → 1.2.20
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
|
@@ -76161,12 +76161,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
76161
76161
|
}
|
|
76162
76162
|
packageJSON2.devDependencies = {
|
|
76163
76163
|
...packageJSON2.devDependencies,
|
|
76164
|
-
houdini: "^1.2.20
|
|
76164
|
+
houdini: "^1.2.20"
|
|
76165
76165
|
};
|
|
76166
76166
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
76167
76167
|
packageJSON2.devDependencies = {
|
|
76168
76168
|
...packageJSON2.devDependencies,
|
|
76169
|
-
"houdini-svelte": "^1.2.20
|
|
76169
|
+
"houdini-svelte": "^1.2.20"
|
|
76170
76170
|
};
|
|
76171
76171
|
} else {
|
|
76172
76172
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
package/build/cmd-esm/index.js
CHANGED
|
@@ -76166,12 +76166,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
76166
76166
|
}
|
|
76167
76167
|
packageJSON2.devDependencies = {
|
|
76168
76168
|
...packageJSON2.devDependencies,
|
|
76169
|
-
houdini: "^1.2.20
|
|
76169
|
+
houdini: "^1.2.20"
|
|
76170
76170
|
};
|
|
76171
76171
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
76172
76172
|
packageJSON2.devDependencies = {
|
|
76173
76173
|
...packageJSON2.devDependencies,
|
|
76174
|
-
"houdini-svelte": "^1.2.20
|
|
76174
|
+
"houdini-svelte": "^1.2.20"
|
|
76175
76175
|
};
|
|
76176
76176
|
} else {
|
|
76177
76177
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
package/build/vite-cjs/index.js
CHANGED
|
@@ -77321,11 +77321,7 @@ function Plugin(opts = {}) {
|
|
|
77321
77321
|
});
|
|
77322
77322
|
}
|
|
77323
77323
|
if (config3.localSchema) {
|
|
77324
|
-
await
|
|
77325
|
-
const { default: schema } = (await server.ssrLoadModule(
|
|
77326
|
-
path_exports.join(config3.rootDir, "temp", "assets", "schema.js")
|
|
77327
|
-
), {});
|
|
77328
|
-
config3.schema = schema;
|
|
77324
|
+
config3.schema = await loadLocalSchema(config3);
|
|
77329
77325
|
}
|
|
77330
77326
|
process.env.HOUDINI_PORT = String(server.config.server.port ?? 5173);
|
|
77331
77327
|
try {
|
package/build/vite-esm/index.js
CHANGED
|
@@ -77316,11 +77316,7 @@ function Plugin(opts = {}) {
|
|
|
77316
77316
|
});
|
|
77317
77317
|
}
|
|
77318
77318
|
if (config3.localSchema) {
|
|
77319
|
-
await
|
|
77320
|
-
const { default: schema } = (await server.ssrLoadModule(
|
|
77321
|
-
path_exports.join(config3.rootDir, "temp", "assets", "schema.js")
|
|
77322
|
-
), {});
|
|
77323
|
-
config3.schema = schema;
|
|
77319
|
+
config3.schema = await loadLocalSchema(config3);
|
|
77324
77320
|
}
|
|
77325
77321
|
process.env.HOUDINI_PORT = String(server.config.server.port ?? 5173);
|
|
77326
77322
|
try {
|