houdini 1.2.63 → 1.3.0-next.0
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 +3 -3
- package/build/cmd-esm/index.js +3 -3
- package/build/codegen-cjs/index.js +1 -1
- package/build/codegen-esm/index.js +1 -1
- package/build/lib-cjs/index.js +1 -1
- package/build/lib-esm/index.js +1 -1
- package/build/vite-cjs/index.js +307 -153
- package/build/vite-esm/index.js +306 -152
- package/package.json +4 -4
package/build/cmd-cjs/index.js
CHANGED
|
@@ -69085,7 +69085,7 @@ var graphql6 = __toESM(require("graphql"), 1);
|
|
|
69085
69085
|
async function find_graphql(config, parsedScript, walker) {
|
|
69086
69086
|
await asyncWalk(parsedScript, {
|
|
69087
69087
|
async enter(node, parent2) {
|
|
69088
|
-
if (node.type !== "TaggedTemplateExpression" && node.type !== "CallExpression" && node.type !== "TSPropertySignature") {
|
|
69088
|
+
if (node.type !== "TaggedTemplateExpression" && node.type !== "CallExpression" && node.type !== "TSPropertySignature" && node.type !== "VariableDeclaration") {
|
|
69089
69089
|
return;
|
|
69090
69090
|
}
|
|
69091
69091
|
let documentString = "";
|
|
@@ -78444,12 +78444,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
78444
78444
|
}
|
|
78445
78445
|
packageJSON2.devDependencies = {
|
|
78446
78446
|
...packageJSON2.devDependencies,
|
|
78447
|
-
houdini: "^1.
|
|
78447
|
+
houdini: "^1.3.0-next.0"
|
|
78448
78448
|
};
|
|
78449
78449
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
78450
78450
|
packageJSON2.devDependencies = {
|
|
78451
78451
|
...packageJSON2.devDependencies,
|
|
78452
|
-
"houdini-svelte": "^1.
|
|
78452
|
+
"houdini-svelte": "^1.3.0-next.0"
|
|
78453
78453
|
};
|
|
78454
78454
|
} else {
|
|
78455
78455
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
package/build/cmd-esm/index.js
CHANGED
|
@@ -69090,7 +69090,7 @@ import * as graphql6 from "graphql";
|
|
|
69090
69090
|
async function find_graphql(config, parsedScript, walker) {
|
|
69091
69091
|
await asyncWalk(parsedScript, {
|
|
69092
69092
|
async enter(node, parent2) {
|
|
69093
|
-
if (node.type !== "TaggedTemplateExpression" && node.type !== "CallExpression" && node.type !== "TSPropertySignature") {
|
|
69093
|
+
if (node.type !== "TaggedTemplateExpression" && node.type !== "CallExpression" && node.type !== "TSPropertySignature" && node.type !== "VariableDeclaration") {
|
|
69094
69094
|
return;
|
|
69095
69095
|
}
|
|
69096
69096
|
let documentString = "";
|
|
@@ -78449,12 +78449,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
78449
78449
|
}
|
|
78450
78450
|
packageJSON2.devDependencies = {
|
|
78451
78451
|
...packageJSON2.devDependencies,
|
|
78452
|
-
houdini: "^1.
|
|
78452
|
+
houdini: "^1.3.0-next.0"
|
|
78453
78453
|
};
|
|
78454
78454
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
78455
78455
|
packageJSON2.devDependencies = {
|
|
78456
78456
|
...packageJSON2.devDependencies,
|
|
78457
|
-
"houdini-svelte": "^1.
|
|
78457
|
+
"houdini-svelte": "^1.3.0-next.0"
|
|
78458
78458
|
};
|
|
78459
78459
|
} else {
|
|
78460
78460
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
|
@@ -57286,7 +57286,7 @@ var graphql6 = __toESM(require("graphql"), 1);
|
|
|
57286
57286
|
async function find_graphql(config, parsedScript, walker) {
|
|
57287
57287
|
await asyncWalk(parsedScript, {
|
|
57288
57288
|
async enter(node, parent2) {
|
|
57289
|
-
if (node.type !== "TaggedTemplateExpression" && node.type !== "CallExpression" && node.type !== "TSPropertySignature") {
|
|
57289
|
+
if (node.type !== "TaggedTemplateExpression" && node.type !== "CallExpression" && node.type !== "TSPropertySignature" && node.type !== "VariableDeclaration") {
|
|
57290
57290
|
return;
|
|
57291
57291
|
}
|
|
57292
57292
|
let documentString = "";
|
|
@@ -57285,7 +57285,7 @@ import * as graphql6 from "graphql";
|
|
|
57285
57285
|
async function find_graphql(config, parsedScript, walker) {
|
|
57286
57286
|
await asyncWalk(parsedScript, {
|
|
57287
57287
|
async enter(node, parent2) {
|
|
57288
|
-
if (node.type !== "TaggedTemplateExpression" && node.type !== "CallExpression" && node.type !== "TSPropertySignature") {
|
|
57288
|
+
if (node.type !== "TaggedTemplateExpression" && node.type !== "CallExpression" && node.type !== "TSPropertySignature" && node.type !== "VariableDeclaration") {
|
|
57289
57289
|
return;
|
|
57290
57290
|
}
|
|
57291
57291
|
let documentString = "";
|
package/build/lib-cjs/index.js
CHANGED
|
@@ -69610,7 +69610,7 @@ var graphql6 = __toESM(require("graphql"), 1);
|
|
|
69610
69610
|
async function find_graphql(config, parsedScript, walker) {
|
|
69611
69611
|
await asyncWalk(parsedScript, {
|
|
69612
69612
|
async enter(node, parent) {
|
|
69613
|
-
if (node.type !== "TaggedTemplateExpression" && node.type !== "CallExpression" && node.type !== "TSPropertySignature") {
|
|
69613
|
+
if (node.type !== "TaggedTemplateExpression" && node.type !== "CallExpression" && node.type !== "TSPropertySignature" && node.type !== "VariableDeclaration") {
|
|
69614
69614
|
return;
|
|
69615
69615
|
}
|
|
69616
69616
|
let documentString = "";
|
package/build/lib-esm/index.js
CHANGED
|
@@ -69524,7 +69524,7 @@ import * as graphql6 from "graphql";
|
|
|
69524
69524
|
async function find_graphql(config, parsedScript, walker) {
|
|
69525
69525
|
await asyncWalk(parsedScript, {
|
|
69526
69526
|
async enter(node, parent) {
|
|
69527
|
-
if (node.type !== "TaggedTemplateExpression" && node.type !== "CallExpression" && node.type !== "TSPropertySignature") {
|
|
69527
|
+
if (node.type !== "TaggedTemplateExpression" && node.type !== "CallExpression" && node.type !== "TSPropertySignature" && node.type !== "VariableDeclaration") {
|
|
69528
69528
|
return;
|
|
69529
69529
|
}
|
|
69530
69530
|
let documentString = "";
|