We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fa9e27 commit fe7368aCopy full SHA for fe7368a
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "github-repo-tools",
3
- "version": "2.3.0-rc.9",
+ "version": "2.3.0-rc.10",
4
"description": "Useful tool to get versions from all repos of Github user/org",
5
"main": "build/index.js",
6
"bin": {
src/modules/presenter/default.presenter.service.ts
@@ -14,14 +14,14 @@ import { Writable } from 'stream';
14
export class DefaultPresenterService implements IPresenterService {
15
private spinner: ora.Ora = null;
16
17
- constructor (
+ constructor(
18
private tableService: TableService,
19
@Inject('STREAM') protected stream: Writable,
20
) {
21
}
22
23
public write(str: string) {
24
- this.stream.write(str);
+ this.stream.write(str+ '\n');
25
26
27
public configure() {
0 commit comments