fixed order of parameters for barrel file creation

This commit is contained in:
Pieter van Ede 2020-06-17 13:07:39 +02:00
parent 4a8db23dd3
commit 07353f3703

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);
}