Limit the max length to 100 chars

master
Paul Loyd 2017-11-06 16:36:06 +03:00
parent b0872d04b2
commit e8cfb0c8c5
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ function run(path) {
try {
const {schemas} = collect(path);
console.log(stringify(schemas));
console.log(stringify(schemas, {maxLength: 100}));
} catch (ex) {
console.error(ex.message);
console.error(ex.stack);