Skip to content

Commit

Permalink
remove logging
Browse files Browse the repository at this point in the history
  • Loading branch information
trilom committed Jan 14, 2020
1 parent ab7b96d commit a37e0cb
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1717,7 +1717,6 @@ class File {
}
function sortChangedFiles(files) {
return __awaiter(this, void 0, void 0, function* () {
console.log(`${JSON.stringify(files)}`);
return files.reduce((acc, f) => {
if (f.status === 'added' || f.added) {
acc.created.push(f.filename === undefined ? f.added : f.filename);
Expand Down
1 change: 0 additions & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ class File {
}
function sortChangedFiles(files) {
return __awaiter(this, void 0, void 0, function* () {
console.log(`${JSON.stringify(files)}`);
return files.reduce((acc, f) => {
if (f.status === 'added' || f.added) {
acc.created.push(f.filename === undefined ? f.added : f.filename);
Expand Down
1 change: 0 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ class File {
}

async function sortChangedFiles(files: any): Promise<ChangedFiles> {
console.log(`${JSON.stringify(files)}`)
return files.reduce((acc: ChangedFiles, f: File) => {
if (f.status === 'added' || f.added) {
acc.created.push(f.filename === undefined ? f.added : f.filename)
Expand Down

0 comments on commit a37e0cb

Please sign in to comment.