index.js 372 B

1234567891011
  1. 'use strict';
  2. const importLazy = require('import-lazy');
  3. module.exports = {
  4. compact: importLazy(() => require('./compactFormatter'))(),
  5. json: importLazy(() => require('./jsonFormatter'))(),
  6. string: importLazy(() => require('./stringFormatter'))(),
  7. unix: importLazy(() => require('./unixFormatter'))(),
  8. verbose: importLazy(() => require('./verboseFormatter'))(),
  9. };