From 3ac4cb96b2e5a39c0f1f09190f1a3858c728e2c9 Mon Sep 17 00:00:00 2001 From: Campion Fellin Date: Tue, 15 May 2018 17:38:21 -0700 Subject: [PATCH] Edit clasp clone to include project names (#170) * Edit clasp clone so the list of projectIds also includes the project name for better user experience Signed-off-by: campionfellin * Change order of name - id for logs Signed-off-by: campionfellin --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index d6dff87f..987e545a 100755 --- a/index.ts +++ b/index.ts @@ -346,7 +346,7 @@ commander const fileIds = []; if (files.length) { files.map((file: any) => { - fileIds.push(file.id); + fileIds.push(`${file.name}`.padEnd(20) + ` - (${file.id})`); }); await prompt([{ type : 'list',