-
-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(workspace): Fix regression causing malformed d.ts output (#2870)
Co-authored-by: Phil Pluckthun <[email protected]>
- Loading branch information
1 parent
bd59d34
commit 6a4072f
Showing
45 changed files
with
125 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
'@urql/exchange-graphcache': patch | ||
'@urql/exchange-execute': patch | ||
'@urql/core': patch | ||
'next-urql': patch | ||
'@urql/svelte': patch | ||
'@urql/vue': patch | ||
--- | ||
|
||
Fix type-generation, with a change in TS/Rollup the type generation took the paths as src and resolved them into the types dir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"target": "es2019", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,4 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"urql": ["../../packages/react-urql/src"], | ||
"*-urql": ["../../packages/*-urql/src"], | ||
"@urql/exchange-*": ["../../exchanges/*/src"], | ||
"@urql/core/*": ["../../packages/core/src/*"], | ||
"@urql/*": ["../../packages/*-urql/src", "../../packages/*/src"] | ||
} | ||
} | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.