Skip to content

Sort modules by the specified criteria on #306 #315

New issue

Have a question about this project? Sign up for a free account to open an issue and contact its maintainers and the community.

By clicking “Sign up for ”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on ? Sign in to your account

Merged
merged 10 commits into from
May 9, 2022
PrevPrevious commit
Fix JS lint error.
  • Loading branch information
@felixarntz
felixarntz committedMay 9, 2022
commit bffeb5c317b7e898cd9dfb218e9d4fdd527e7cf0
6 changes: 5 additions & 1 deletion bin/plugin/commands/common.js
Original file line numberDiff line numberDiff line change
Expand Up@@ -101,7 +101,11 @@ exports.getModuleData = async ( modulesDir ) => {
.join( ', ' );
log(
formats.warning(
`This module was not included because it misses required properties: ${ properties }.\nDetails: ${ JSON.stringify( moduleData, null, 4 ) }`
`This module was not included because it misses required properties: ${ properties }.\nDetails: ${ JSON.stringify(
moduleData,
null,
4
) }`
)
);
}
Expand Down