chore(CHANGELOG): introduce perf() section for performance-related commits

Instead of using fix() or chore() when labelling a commit which improves
speed or performance use perf(). Perf commits will be listed in the
CHANGELOG under "Performance Improvements".

For example:
perf($animate): cache all getComputedStyle operations to reduce additional reflows
This commit is contained in:
Matias Niemelä
2013-12-06 12:54:20 -05:00
parent b4d44e1298
commit a14266e464
3 changed files with 5 additions and 1 deletions

View File

@@ -21,6 +21,7 @@ var TYPES = {
docs: true,
style: true,
refactor: true,
perf: true,
test: true,
chore: true,
revert: true