mirror of
https://github.com/strapi/strapi.git
synced 2025-07-31 12:55:08 +00:00
12 lines
230 B
JavaScript
12 lines
230 B
JavaScript
'use strict';
|
|
|
|
const prettyPrint = require('./pretty-print');
|
|
const levelFilter = require('./level-filter');
|
|
const excludeColors = require('./exclude-colors');
|
|
|
|
module.exports = {
|
|
prettyPrint,
|
|
levelFilter,
|
|
excludeColors,
|
|
};
|