Merge pull request #265 from PieterVanEde/master

fixed order of parameters for barrel file creation
This commit is contained in:
Ferdi Koomen 2020-06-17 13:31:53 +02:00 committed by GitHub
commit 751949d447
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,5 +77,5 @@ export async function writeClient(
await writeClientModels(client.models, templates, outputPathModels);
}
await writeClientIndex(client, templates, outputPath, exportCore, exportModels, exportServices, exportSchemas);
await writeClientIndex(client, templates, outputPath, exportCore, exportServices, exportModels, exportSchemas);
}