better-commit-emoji
Version:
plugin for better commit to append emoji
15 lines (13 loc) • 417 B
JavaScript
const randomEmoji = require("random-emoji");
function emojify(options, { commit, /*branch*/ }) {
let { message } = commit;
if(options.toLowerCase() === "random") {
const emoji = randomEmoji.random({count:1});
commit.message = `${message} ${emoji[0].character}`
}
else if(options) {
commit.message = `${message} ${options}`
}
return commit;
}
module.exports = emojify;