Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

inlines long type unions even when it breaks the line budget #165

Closed
matthargett opened this issue May 21, 2021 · 0 comments · Fixed by #179
Closed

inlines long type unions even when it breaks the line budget #165

matthargett opened this issue May 21, 2021 · 0 comments · Fixed by #179
Labels
enhancement New feature or request

Comments

@matthargett
Copy link

current master, here's the diff I got

-export type IntrospectionType =
-  IntrospectionScalarType
-  | IntrospectionObjectType
-  | IntrospectionInterfaceType
-  | IntrospectionUnionType
-  | IntrospectionEnumType
-  | IntrospectionInputObjectType
-
-export type IntrospectionOutputType =
-  IntrospectionScalarType
-  | IntrospectionObjectType
-  | IntrospectionInterfaceType
-  | IntrospectionUnionType
-  | IntrospectionEnumType
-
-export type IntrospectionInputType =
-  IntrospectionScalarType
-  | IntrospectionEnumType
-  | IntrospectionInputObjectType
+export type IntrospectionType = IntrospectionScalarType | IntrospectionObjectType | IntrospectionInterfaceType | IntrospectionUnionType | IntrospectionEnumType | IntrospectionInputObjectType
+
+export type IntrospectionOutputType = IntrospectionScalarType | IntrospectionObjectType | IntrospectionInterfaceType | IntrospectionUnionType | IntrospectionEnumType
+
+export type IntrospectionInputType = IntrospectionScalarType | IntrospectionEnumType | IntrospectionInputObjectType```
@JohnnyMorganz JohnnyMorganz added bug Something isn't working enhancement New feature or request and removed bug Something isn't working labels May 21, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants