Skip to content

Commit

Permalink
improve order of resource exports
Browse files Browse the repository at this point in the history
  • Loading branch information
jenschude committed Feb 13, 2024
1 parent 31afe80 commit d792c7e
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,13 @@ class IndexFileProducer constructor(
content = """|
|$tsGeneratedComment
|
|//models
|${allAnyTypes.exportModels()}
|
|//Root client that is used to access all the endpoints in the API
|export * from '${clientConstants.apiRoot}'
|
|// resources
|export * from '${clientConstants.apiRoot}' //Root client that is used to access all the endpoints in the API
|${allResources.exportResources()}
|
|//models
|${allAnyTypes.exportModels()}
|
|//Common package
|export * from '${clientConstants.commonTypesPackage}'
|export * from '${clientConstants.middlewarePackage}'
Expand Down

0 comments on commit d792c7e

Please sign in to comment.