-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "mono-rush",
"description": "a monorepo using rush",
"version": "0.0.0",
"private": true,
"commithelper": {
"subjectLimit": 50,
"ticketPrefix": "CLOSED:",
"types": [
{
"name": "feat",
"message": "a new feature or enhancement"
},
{
"name": "fix",
"message": "a bug fix"
},
{
"name": "build",
"message": "changes that affect the build system or external dependencies"
},
{
"name": "ci",
"message": "changes to the CI configuration files and scripts"
},
{
"name": "perf",
"message": "a code change that improves performance"
},
{
"name": "docs",
"message": "documentation only changes"
},
{
"name": "refactor",
"message": "a code change that neither fixes a bug nor adds a feature"
},
{
"name": "style",
"message": "changes that do not affect the meaning of the code"
},
{
"name": "test",
"message": "adding missing tests or correcting existing tests"
}
],
"scopes": [
{
"name": "napjoseph",
"message": "anything related to the napjoseph project"
},
{
"name": "calub-web",
"message": "anything related to the calub-web project"
},
{
"name": "repo",
"message": "anything related to managing the repository"
},
{
"name": "migrations",
"message": "related to general upgrades or migrations"
},
{
"name": "changelog",
"message": "related to updating the changelog"
},
{
"name": "misc",
"message": "miscellaneous stuff"
}
]
}
}