Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Merge pull request #863 from DanielRosenwasser/fixAmbiguityInFormatte…
Browse files Browse the repository at this point in the history
…rExports

Use explicit exports for formatters.
  • Loading branch information
adidahiya committed Dec 10, 2015
2 parents 7140d48 + ccc844c commit 810f855
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/formatters/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

export * from "./jsonFormatter";
export * from "./pmdFormatter";
export * from "./proseFormatter";
export * from "./verboseFormatter";
export { Formatter as JsonFormatter } from "./jsonFormatter";
export { Formatter as PmdFormatter } from "./pmdFormatter";
export { Formatter as ProseFormatter } from "./proseFormatter";
export { Formatter as VerboseFormatter } from "./verboseFormatter";

0 comments on commit 810f855

Please sign in to comment.