Skip to content

Commit

Permalink
fix: Reorder stats to show more useful ones earlier
Browse files Browse the repository at this point in the history
  • Loading branch information
sapegin committed Jul 31, 2020
1 parent 463a0ae commit 457592d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/antbear.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ if (patterns.length > 0) {
getStylesPerModule(instances, files.length),
'Custom styles per module'
);
printObject(getElementsStats(instances), 'Overridden elements');
printObject(getComponentsStats(instances), 'Overridden components');
printObject(getColorsStats(instances), 'Custom colors');
printObject(getSpacingStats(instances), 'Custom spacing');
printObject(getComponentsPropsStats(instances), 'Components and props');
printObject(
getComponentsPropsValuesStats(instances),
'Components, props and values'
);
printObject(getComponentsPropsStats(instances), 'Components and props');
printObject(getComponentsStats(instances), 'Overridden components');
printObject(getElementsStats(instances), 'Overridden elements');
printObject(getPropsStats(instances), 'Properties');
printObject(getValuesStats(instances), 'Values');

Expand Down

0 comments on commit 457592d

Please sign in to comment.