houdini 0.17.1 → 0.17.2
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/.turbo/turbo-compile.log +2 -2
- package/.turbo/turbo-typedefs.log +2 -2
- package/CHANGELOG.md +2 -0
- package/build/cmd-cjs/index.js +4 -4
- package/build/cmd-esm/index.js +4 -4
- package/package.json +1 -1
- package/src/cmd/init.ts +2 -2
package/.turbo/turbo-compile.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
houdini:compile: cache hit, replaying output
|
|
1
|
+
houdini:compile: cache hit, replaying output db5bfb276a8e9449
|
|
2
2
|
houdini:compile:
|
|
3
|
-
houdini:compile: > houdini@0.17.
|
|
3
|
+
houdini:compile: > houdini@0.17.2 compile /home/runner/work/houdini/houdini/packages/houdini
|
|
4
4
|
houdini:compile: > scripts build
|
|
5
5
|
houdini:compile:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
houdini:typedefs: cache hit, replaying output
|
|
1
|
+
houdini:typedefs: cache hit, replaying output 8e07b9dd91cee737
|
|
2
2
|
houdini:typedefs:
|
|
3
|
-
houdini:typedefs: > houdini@0.17.
|
|
3
|
+
houdini:typedefs: > houdini@0.17.2 typedefs /home/runner/work/houdini/houdini/packages/houdini
|
|
4
4
|
houdini:typedefs: > scripts typedefs
|
|
5
5
|
houdini:typedefs:
|
package/CHANGELOG.md
CHANGED
package/build/cmd-cjs/index.js
CHANGED
|
@@ -77338,9 +77338,9 @@ async function tjsConfig(targetPath, framework) {
|
|
|
77338
77338
|
var tjsConfig2 = JSON.parse(tjsConfigFile);
|
|
77339
77339
|
}
|
|
77340
77340
|
if (framework === "kit") {
|
|
77341
|
-
tjsConfig2.compilerOptions.rootDirs = [".", "./.svelte-kit/types", "
|
|
77341
|
+
tjsConfig2.compilerOptions.rootDirs = [".", "./.svelte-kit/types", "./$houdini/types"];
|
|
77342
77342
|
} else {
|
|
77343
|
-
tjsConfig2.compilerOptions.rootDirs = [".", "
|
|
77343
|
+
tjsConfig2.compilerOptions.rootDirs = [".", "./$houdini/types"];
|
|
77344
77344
|
}
|
|
77345
77345
|
if (framework === "svelte") {
|
|
77346
77346
|
tjsConfig2.compilerOptions.paths = {
|
|
@@ -77535,8 +77535,8 @@ async function updatePackageJSON(targetPath) {
|
|
|
77535
77535
|
}
|
|
77536
77536
|
packageJSON.devDependencies = {
|
|
77537
77537
|
...packageJSON.devDependencies,
|
|
77538
|
-
houdini: "^0.17.
|
|
77539
|
-
"houdini-svelte": "^0.17.
|
|
77538
|
+
houdini: "^0.17.2",
|
|
77539
|
+
"houdini-svelte": "^0.17.2",
|
|
77540
77540
|
graphql: "^15.5.0"
|
|
77541
77541
|
};
|
|
77542
77542
|
await fs_exports.writeFile(packagePath, JSON.stringify(packageJSON, null, 4));
|
package/build/cmd-esm/index.js
CHANGED
|
@@ -77343,9 +77343,9 @@ async function tjsConfig(targetPath, framework) {
|
|
|
77343
77343
|
var tjsConfig2 = JSON.parse(tjsConfigFile);
|
|
77344
77344
|
}
|
|
77345
77345
|
if (framework === "kit") {
|
|
77346
|
-
tjsConfig2.compilerOptions.rootDirs = [".", "./.svelte-kit/types", "
|
|
77346
|
+
tjsConfig2.compilerOptions.rootDirs = [".", "./.svelte-kit/types", "./$houdini/types"];
|
|
77347
77347
|
} else {
|
|
77348
|
-
tjsConfig2.compilerOptions.rootDirs = [".", "
|
|
77348
|
+
tjsConfig2.compilerOptions.rootDirs = [".", "./$houdini/types"];
|
|
77349
77349
|
}
|
|
77350
77350
|
if (framework === "svelte") {
|
|
77351
77351
|
tjsConfig2.compilerOptions.paths = {
|
|
@@ -77540,8 +77540,8 @@ async function updatePackageJSON(targetPath) {
|
|
|
77540
77540
|
}
|
|
77541
77541
|
packageJSON.devDependencies = {
|
|
77542
77542
|
...packageJSON.devDependencies,
|
|
77543
|
-
houdini: "^0.17.
|
|
77544
|
-
"houdini-svelte": "^0.17.
|
|
77543
|
+
houdini: "^0.17.2",
|
|
77544
|
+
"houdini-svelte": "^0.17.2",
|
|
77545
77545
|
graphql: "^15.5.0"
|
|
77546
77546
|
};
|
|
77547
77547
|
await fs_exports.writeFile(packagePath, JSON.stringify(packageJSON, null, 4));
|
package/package.json
CHANGED
package/src/cmd/init.ts
CHANGED
|
@@ -298,9 +298,9 @@ async function tjsConfig(targetPath: string, framework: 'kit' | 'svelte') {
|
|
|
298
298
|
|
|
299
299
|
// new rootDirs (will overwrite the one in "extends": "./.svelte-kit/tsconfig.json")
|
|
300
300
|
if (framework === 'kit') {
|
|
301
|
-
tjsConfig.compilerOptions.rootDirs = ['.', './.svelte-kit/types', '
|
|
301
|
+
tjsConfig.compilerOptions.rootDirs = ['.', './.svelte-kit/types', './$houdini/types']
|
|
302
302
|
} else {
|
|
303
|
-
tjsConfig.compilerOptions.rootDirs = ['.', '
|
|
303
|
+
tjsConfig.compilerOptions.rootDirs = ['.', './$houdini/types']
|
|
304
304
|
}
|
|
305
305
|
|
|
306
306
|
// In kit, no need to add manually the path. Why? Because:
|