Skip to content

Commit bb1967d

Browse files
committedMay 23, 2018
refactor: move commit types into a separate module
1 parent 909bae6 commit bb1967d

File tree

4 files changed

+58
-38
lines changed

4 files changed

+58
-38
lines changed
 

‎.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
.idea/
66
node_modules/
77
npm-debug.log
8-
yarn.lock
8+
yarn.lock
9+
.vscode/

‎src/index.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ const makeAffectsLine = function (answers) {
2828
return '';
2929
};
3030

31+
const emojis = {
32+
style: '💄'
33+
};
34+
3135
module.exports = {
3236
prompter (cz, commit) {
3337
let promptQuestions = questions;
@@ -47,7 +51,8 @@ module.exports = {
4751
width: MAX_LINE_WIDTH
4852
};
4953

50-
const head = answers.type + ': ' + answers.subject;
54+
const emojiPrefix = emojis[answers.type] ? emojis[answers.type] + ' ' : '';
55+
const head = answers.type + ': ' + emojiPrefix + answers.subject;
5156
const affectsLine = makeAffectsLine(answers);
5257

5358
// Wrap these lines at MAX_LINE_WIDTH character

‎src/prompt/questions.js

+11-36
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,21 @@
1+
const types = require('../types').types;
2+
13
const MAX_SUBJECT_LENGTH = 64;
24
const MIN_SUBJECT_LENGTH = 3;
35
const MIN_SUBJECT_LENGTH_ERROR_MESSAGE = `The subject must have at least ${MIN_SUBJECT_LENGTH} characters`;
46

57
const questions = [
68
{
79
choices: [
8-
{
9-
name: 'feat: A new feature',
10-
value: 'feat'
11-
},
12-
{
13-
name: 'fix: A bug fix',
14-
value: 'fix'
15-
},
16-
{
17-
name: 'docs: Documentation only changes',
18-
value: 'docs'
19-
},
20-
{
21-
name: 'style: Markup-only changes (white-space, formatting, missing semi-colons, etc)',
22-
value: 'style'
23-
},
24-
{
25-
name: 'refactor: A code change that neither fixes a bug or adds a feature',
26-
value: 'refactor'
27-
},
28-
{
29-
name: 'perf: A code change that improves performance',
30-
value: 'perf'
31-
},
32-
{
33-
name: 'test: Adding missing tests',
34-
value: 'test'
35-
},
36-
{
37-
name: 'chore: Build process or auxiliary tool changes',
38-
value: 'chore'
39-
},
40-
{
41-
name: 'ci: CI related changes',
42-
value: 'ci'
43-
}
10+
types.test,
11+
types.feat,
12+
types.fix,
13+
types.chore,
14+
types.docs,
15+
types.refactor,
16+
types.style,
17+
types.ci,
18+
types.perf
4419
],
4520
message: 'Select the type of change that you\'re committing:',
4621
name: 'type',

‎src/types.js

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
exports.types = {
2+
chore: {
3+
name: 'Build process or auxiliary tool changes',
4+
value: 'chore'
5+
},
6+
ci: {
7+
name: 'CI related changes',
8+
value: 'ci'
9+
},
10+
docs: {
11+
name: 'Documentation only changes',
12+
value: 'docs'
13+
},
14+
feat: {
15+
name: 'A new feature',
16+
value: 'feat'
17+
},
18+
fix: {
19+
name: 'A bug fix',
20+
value: 'fix'
21+
},
22+
perf: {
23+
name: 'A code change that improves performance',
24+
value: 'perf'
25+
},
26+
refactor: {
27+
name: 'A code change that neither fixes a bug or adds a feature',
28+
value: 'refactor'
29+
},
30+
style: {
31+
emoji: '💄',
32+
name: 'Markup-only changes (white-space, formatting, missing semi-colons, etc)',
33+
value: 'style'
34+
},
35+
test: {
36+
name: 'Adding missing tests',
37+
value: 'test'
38+
}
39+
};

0 commit comments

Comments
 (0)
Please sign in to comment.