houdini 0.17.0 → 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 +8 -0
- package/build/cmd-cjs/index.js +5 -4
- package/build/cmd-esm/index.js +5 -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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# houdini
|
|
2
2
|
|
|
3
|
+
## 0.17.2
|
|
4
|
+
|
|
5
|
+
## 0.17.1
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- [#630](https://github.com/HoudiniGraphql/houdini/pull/630) [`02d8fc4`](https://github.com/HoudiniGraphql/houdini/commit/02d8fc47f71980bd2b6492162b8e57808447bdbc) Thanks [@AlecAivazis](https://github.com/AlecAivazis)! - Add shebang to executable
|
|
10
|
+
|
|
3
11
|
## 0.17.0
|
|
4
12
|
|
|
5
13
|
### ⚠️ Breaking Changes
|
package/build/cmd-cjs/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
import { createRequire as conflict_free } from 'module'; const require = conflict_free(import.meta.url);
|
|
2
3
|
"use strict";
|
|
3
4
|
var __create = Object.create;
|
|
@@ -77337,9 +77338,9 @@ async function tjsConfig(targetPath, framework) {
|
|
|
77337
77338
|
var tjsConfig2 = JSON.parse(tjsConfigFile);
|
|
77338
77339
|
}
|
|
77339
77340
|
if (framework === "kit") {
|
|
77340
|
-
tjsConfig2.compilerOptions.rootDirs = [".", "./.svelte-kit/types", "
|
|
77341
|
+
tjsConfig2.compilerOptions.rootDirs = [".", "./.svelte-kit/types", "./$houdini/types"];
|
|
77341
77342
|
} else {
|
|
77342
|
-
tjsConfig2.compilerOptions.rootDirs = [".", "
|
|
77343
|
+
tjsConfig2.compilerOptions.rootDirs = [".", "./$houdini/types"];
|
|
77343
77344
|
}
|
|
77344
77345
|
if (framework === "svelte") {
|
|
77345
77346
|
tjsConfig2.compilerOptions.paths = {
|
|
@@ -77534,8 +77535,8 @@ async function updatePackageJSON(targetPath) {
|
|
|
77534
77535
|
}
|
|
77535
77536
|
packageJSON.devDependencies = {
|
|
77536
77537
|
...packageJSON.devDependencies,
|
|
77537
|
-
houdini: "^0.17.
|
|
77538
|
-
"houdini-svelte": "^0.17.
|
|
77538
|
+
houdini: "^0.17.2",
|
|
77539
|
+
"houdini-svelte": "^0.17.2",
|
|
77539
77540
|
graphql: "^15.5.0"
|
|
77540
77541
|
};
|
|
77541
77542
|
await fs_exports.writeFile(packagePath, JSON.stringify(packageJSON, null, 4));
|
package/build/cmd-esm/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
import { createRequire as conflict_free } from 'module'; const require = conflict_free(import.meta.url);
|
|
2
3
|
var __create = Object.create;
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
@@ -77342,9 +77343,9 @@ async function tjsConfig(targetPath, framework) {
|
|
|
77342
77343
|
var tjsConfig2 = JSON.parse(tjsConfigFile);
|
|
77343
77344
|
}
|
|
77344
77345
|
if (framework === "kit") {
|
|
77345
|
-
tjsConfig2.compilerOptions.rootDirs = [".", "./.svelte-kit/types", "
|
|
77346
|
+
tjsConfig2.compilerOptions.rootDirs = [".", "./.svelte-kit/types", "./$houdini/types"];
|
|
77346
77347
|
} else {
|
|
77347
|
-
tjsConfig2.compilerOptions.rootDirs = [".", "
|
|
77348
|
+
tjsConfig2.compilerOptions.rootDirs = [".", "./$houdini/types"];
|
|
77348
77349
|
}
|
|
77349
77350
|
if (framework === "svelte") {
|
|
77350
77351
|
tjsConfig2.compilerOptions.paths = {
|
|
@@ -77539,8 +77540,8 @@ async function updatePackageJSON(targetPath) {
|
|
|
77539
77540
|
}
|
|
77540
77541
|
packageJSON.devDependencies = {
|
|
77541
77542
|
...packageJSON.devDependencies,
|
|
77542
|
-
houdini: "^0.17.
|
|
77543
|
-
"houdini-svelte": "^0.17.
|
|
77543
|
+
houdini: "^0.17.2",
|
|
77544
|
+
"houdini-svelte": "^0.17.2",
|
|
77544
77545
|
graphql: "^15.5.0"
|
|
77545
77546
|
};
|
|
77546
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:
|