mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-26 06:26:25 +00:00
88c7a29681
* feat: Add checking functionnality that compares contributors with GH data * fix(check): Use the info from config file, paginate GH data * doc(check): Document the new check command * fix(eslint): Add missing semicolon * tests: Add tests for utils.check * fix: Check for code and test only * refactor: use includes and correct awaits * refactor: more includes and template literals
9 lines
219 B
JavaScript
9 lines
219 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
configFile: require('./config-file'),
|
|
contributionTypes: require('./contribution-types'),
|
|
git: require('./git'),
|
|
markdown: require('./markdown'),
|
|
check: require('./check')
|
|
};
|