nx/scripts/commit-lint.js
Vivek ff5048e23c
cleanup(misc): misc cleanup
* cleanup(testing): simplify registering of collections

* cleanup(testing): remove unnecessary number from variable name

* cleanup(core): update error message

* cleanup(nx-plugin): use object destructuring in normalize-options.ts
2021-02-22 12:46:46 -05:00

45 lines
1.5 KiB
JavaScript
Executable File

#!/usr/bin/env node
const { types, scopes } = require('../.cz-config.js');
console.log('🐟🐟🐟 Validating git commit message 🐟🐟🐟');
const gitMessage = require('child_process')
.execSync('git log -1 --no-merges')
.toString()
.trim();
const allowedTypes = types.map((type) => type.value);
const allowedScopes = scopes.map((scope) => scope.name);
const commitMsgRegex = `(${allowedTypes.join('|')})\\((${allowedScopes.join(
'|'
)})\\):\\s(([a-z0-9:\-\s])+)`;
const matchCommit = new RegExp(commitMsgRegex, 'g').test(gitMessage);
const matchRevert = /Revert/gi.test(gitMessage);
const matchRelease = /Release/gi.test(gitMessage);
const exitCode = +!(matchRelease || matchRevert || matchCommit);
if (exitCode === 0) {
console.log('Commit ACCEPTED 👌');
} else {
console.log(
'[Error]: Oh no! 😦 Your commit message: \n' +
'-------------------------------------------------------------------\n' +
gitMessage +
'\n-------------------------------------------------------------------' +
'\n\n 👉️ Does not follow the commit message convention specified in the CONTRIBUTING.MD file.'
);
console.log('\ntype(scope): subject \n BLANK LINE \n body');
console.log('\n');
console.log(`possible types: ${allowedTypes.join('|')}`);
console.log(
`possible scopes: ${allowedScopes.join('|')} (if unsure use "core")`
);
console.log(
'\nEXAMPLE: \n' +
'feat(nx): add an option to generate lazy-loadable modules\n'
);
}
process.exit(exitCode);