From 07353f370365d7a11dd04ce40629d112b70c9b47 Mon Sep 17 00:00:00 2001 From: Pieter van Ede Date: Wed, 17 Jun 2020 13:07:39 +0200 Subject: [PATCH] fixed order of parameters for barrel file creation --- src/utils/writeClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/writeClient.ts b/src/utils/writeClient.ts index 4484950f..fc607e4a 100644 --- a/src/utils/writeClient.ts +++ b/src/utils/writeClient.ts @@ -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); }