Hi everyone :)
Since apollographql/rover#520 by @danilobuerger landed I noticed the following:
When a globalTypes.ts file is generated and the the --outputFlat option is used, the outputPath is being ignored in generated type files (at least for the import statement of the globalTypes file).
It outputs:
import { SomeGlobalTypes, ShouldBe, Here } from "globalTypes";
when it should really be:
import { SomeGlobalTypes, ShouldBe, Here } from "./globalTypes";
Notice the incorrect path in the first example.
If you need more details, please let me know!
Hi everyone :)
Since apollographql/rover#520 by @danilobuerger landed I noticed the following:
When a
globalTypes.tsfile is generated and the the--outputFlatoption is used, theoutputPathis being ignored in generated type files (at least for the import statement of theglobalTypesfile).It outputs:
when it should really be:
Notice the incorrect path in the first example.
If you need more details, please let me know!