Skip to content

Commit

Permalink
Edit clasp clone to include project names (#170)
Browse files Browse the repository at this point in the history
* Edit clasp clone so the list of projectIds also includes the project name for better user experience

Signed-off-by: campionfellin <[email protected]>

* Change order of name - id for logs

Signed-off-by: campionfellin <[email protected]>
  • Loading branch information
campionfellin authored and grant committed May 16, 2018
1 parent 731e734 commit 3ac4cb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 3ac4cb9

Please sign in to comment.