Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Remove long series of empty lines in tool output (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov authored and sandersn committed Aug 22, 2019
1 parent 43859c3 commit d8d1353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export async function installAll() {
// manually instead typescript@next outside the loop
if (v === TypeScriptVersion.all[TypeScriptVersion.all.length - 1]) { continue; }
await install(v);
console.log("");
}
await installNext();
}
Expand All @@ -33,6 +32,7 @@ async function install(version: TsVersion): Promise<void> {
await fs.writeJson(path.join(dir, "package.json"), packageJson(version));
await execAndThrowErrors("npm install --ignore-scripts --no-shrinkwrap --no-package-lock --no-bin-links", dir);
console.log("Installed!");
console.log("");
}
}

Expand Down

0 comments on commit d8d1353

Please sign in to comment.