forked from GoogleChrome/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
misc(changelog-generator): Generate changelogs (GoogleChrome#3632)
- Loading branch information
1 parent
0bce362
commit 2e825af
Showing
7 changed files
with
466 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/** | ||
* @license Copyright 2017 Google Inc. All Rights Reserved. | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
'use strict'; | ||
const readFileSync = require('fs').readFileSync; | ||
const resolve = require('path').resolve; | ||
const mainTemplate = readFileSync(resolve(__dirname, 'templates/template.hbs')).toString(); | ||
const headerPartial = readFileSync(resolve(__dirname, 'templates/header.hbs')).toString(); | ||
const commitPartial = readFileSync(resolve(__dirname, 'templates/commit.hbs')).toString(); | ||
|
||
const pullRequestRegex = /\(#(\d+)\)$/; | ||
const parserOpts = { | ||
headerPattern: /^(\w*)(?:\((.*)\))?: (.*)$/, | ||
headerCorrespondence: [ | ||
'type', | ||
'scope', | ||
'message', | ||
], | ||
}; | ||
|
||
const writerOpts = { | ||
mainTemplate, | ||
headerPartial, | ||
commitPartial, | ||
transform: commit => { | ||
if (typeof commit.hash === 'string') { | ||
commit.hash = commit.hash.substring(0, 7); | ||
} | ||
|
||
if (commit.type === 'test') { | ||
commit.type = 'tests'; | ||
} | ||
|
||
if (commit.type) { | ||
commit.type = commit.type.replace(/_/g, ' '); | ||
commit.type = commit.type.substring(0, 1).toUpperCase() + commit.type.substring(1); | ||
} else { | ||
commit.type = 'Misc'; | ||
} | ||
|
||
let pullRequestMatch = commit.header.match(pullRequestRegex); | ||
// if header does not provide a PR we try the message | ||
if (!pullRequestMatch && commit.message) { | ||
pullRequestMatch = commit.message.match(pullRequestRegex); | ||
} | ||
|
||
if (pullRequestMatch) { | ||
commit.header = commit.header.replace(pullRequestMatch[0], '').trim(); | ||
if (commit.message) { | ||
commit.message = commit.message.replace(pullRequestMatch[0], '').trim(); | ||
} | ||
|
||
commit.PR = pullRequestMatch[1]; | ||
} | ||
|
||
return commit; | ||
}, | ||
groupBy: 'type', | ||
commitGroupsSort: (a, b) => { | ||
// put new audit on the top | ||
if (a.title === 'New audit') { | ||
return -1; | ||
} | ||
if (b.title === 'New audit') { | ||
return 1; | ||
} | ||
|
||
// put misc on the bottom | ||
if (a.title === 'Misc') { | ||
return 1; | ||
} | ||
if (b.title === 'Misc') { | ||
return -1; | ||
} | ||
|
||
return a.title.localeCompare(b.title); | ||
}, | ||
commitsSort: ['type', 'scope'], | ||
}; | ||
|
||
module.exports = { | ||
writerOpts, | ||
parserOpts, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{{!-- | ||
/** | ||
* @license Copyright 2017 Google Inc. All Rights Reserved. | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
--}} | ||
* {{#if scope}}{{scope}}: {{/if~}} | ||
{{#if message ~}} | ||
{{~message~}} | ||
{{~else~}} | ||
{{~header~}} | ||
{{~/if ~}} | ||
{{~!-- PR number/commit hash --}} | ||
{{~#if @root.linkReferences~}} | ||
{{~#if PR}} ([#{{PR}}]( | ||
{{~#if @root.host}}{{~@root.host}}/{{/if~}} | ||
{{~#if @root.owner ~}}{{@root.owner}}/{{/if~}} | ||
{{~@root.repository}}/pull/{{PR}})) | ||
{{~else}} ([{{hash}}]( | ||
{{~#if @root.host}}{{~@root.host}}/{{/if~}} | ||
{{~#if @root.owner ~}}{{@root.owner}}/{{/if~}} | ||
{{~@root.repository}}/{{@root.commit}}/{{hash}})) | ||
{{~/if~}} | ||
{{~else~}} | ||
{{~hash~}} | ||
{{~/if~}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{{!-- | ||
/** | ||
* @license Copyright 2017 Google Inc. All Rights Reserved. | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
--}} | ||
<a name="{{version}}"></a> | ||
# {{version}} ({{date}}) | ||
{{#if @root.linkCompare~}} | ||
[Full Changelog]({{~@root.repoUrl}}/compare/{{previousTag}}...{{currentTag}}) | ||
{{~/if}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{{!-- | ||
/** | ||
* @license Copyright 2017 Google Inc. All Rights Reserved. | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
--}} | ||
{{> header}} | ||
|
||
{{#each commitGroups}} | ||
|
||
{{#if title~}} | ||
### {{title}} | ||
|
||
{{/if}} | ||
{{#each commits}} | ||
{{~> commit root=@root}} | ||
|
||
{{/each}} | ||
{{/each}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.