Skip to content

Commit

Permalink
Merge pull request #286 from robcresswell/fix/update-deps
Browse files Browse the repository at this point in the history
fix: Update multiple dependencies & rebuild
  • Loading branch information
robcresswell authored Mar 20, 2020
2 parents e97d0be + 1e4ccff commit 99fe212
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 99fe212

Please sign in to comment.