Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/danger/danger-js into spe…
Browse files Browse the repository at this point in the history
…cial_markdowns
  • Loading branch information
orta committed Jul 28, 2018
2 parents 9c4107b + f57cb72 commit 899ad3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

## Master

- Adds additional logging to handleResultsPostingToPlatform - [@ashfurrow][]

# 3.8.0

- Fixes a crash if lodash isn't a transitive dependency in your node_modules - [@orta][]
Expand Down
3 changes: 2 additions & 1 deletion source/runner/Executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,9 @@ export class Executor {
// it allows transforming the results after doing its work.
let results = originalResults
if (this.platform.platformResultsPreMapper) {
this.d("Running platformResultsPreMapper")
this.d("Running platformResultsPreMapper:", this.platform.platformResultsPreMapper)
results = await this.platform.platformResultsPreMapper(results, this.options)
this.d("Received results from platformResultsPreMapper:", results)
}

const { fails, warnings, messages, markdowns } = results
Expand Down

0 comments on commit 899ad3b

Please sign in to comment.