Skip to content

Commit

Permalink
fix: Update multiple dependencies & rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
robcresswell committed Mar 20, 2020
1 parent e97d0be commit 1e4ccff
Show file tree
Hide file tree
Showing 2 changed files with 300 additions and 227 deletions.
2 changes: 1 addition & 1 deletion src/download-repo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function getMapStream(templateVariables: Set<string>, globsToIgnore: string[]) {

fileStream.on('data', (chunk) => templateChunks.push(chunk.toString()));
fileStream.on('end', () => {
const template: string[] = parse(templateChunks.join(''));
const template = parse(templateChunks.join(''));
template
.filter((entry) => entry[0] === 'name')
.map((entry) => entry[1])
Expand Down
Loading

0 comments on commit 1e4ccff

Please sign in to comment.