houdini-react 2.0.0-next.5 → 2.0.0-next.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.
|
@@ -85518,7 +85518,8 @@ async function load_manifest(args) {
|
|
|
85518
85518
|
const name = child.isDirectory() ? child.name : parse32(child.name).name;
|
|
85519
85519
|
if (name === "+schema") {
|
|
85520
85520
|
manifest2.local_schema = true;
|
|
85521
|
-
}
|
|
85521
|
+
}
|
|
85522
|
+
if (name === "+yoga") {
|
|
85522
85523
|
manifest2.local_yoga = true;
|
|
85523
85524
|
}
|
|
85524
85525
|
}
|
|
@@ -89138,7 +89139,7 @@ export function createServerAdapter(options) {
|
|
|
89138
89139
|
}).join("\n")}
|
|
89139
89140
|
|
|
89140
89141
|
${manifest2.local_schema ? `import schema from '../../../../../src/api/+schema'` : " const schema = null"}
|
|
89141
|
-
${manifest2.local_yoga ? `import yoga from '
|
|
89142
|
+
${manifest2.local_yoga ? `import yoga from '../../../../../src/api/+yoga'` : " const yoga = null"}
|
|
89142
89143
|
|
|
89143
89144
|
export const endpoint = ${JSON.stringify(localApiEndpoint(config.configFile))}
|
|
89144
89145
|
|
|
@@ -85514,7 +85514,8 @@ async function load_manifest(args) {
|
|
|
85514
85514
|
const name = child.isDirectory() ? child.name : parse32(child.name).name;
|
|
85515
85515
|
if (name === "+schema") {
|
|
85516
85516
|
manifest2.local_schema = true;
|
|
85517
|
-
}
|
|
85517
|
+
}
|
|
85518
|
+
if (name === "+yoga") {
|
|
85518
85519
|
manifest2.local_yoga = true;
|
|
85519
85520
|
}
|
|
85520
85521
|
}
|
|
@@ -89134,7 +89135,7 @@ export function createServerAdapter(options) {
|
|
|
89134
89135
|
}).join("\n")}
|
|
89135
89136
|
|
|
89136
89137
|
${manifest2.local_schema ? `import schema from '../../../../../src/api/+schema'` : " const schema = null"}
|
|
89137
|
-
${manifest2.local_yoga ? `import yoga from '
|
|
89138
|
+
${manifest2.local_yoga ? `import yoga from '../../../../../src/api/+yoga'` : " const yoga = null"}
|
|
89138
89139
|
|
|
89139
89140
|
export const endpoint = ${JSON.stringify(localApiEndpoint(config.configFile))}
|
|
89140
89141
|
|