Skip to content
Snippets Groups Projects
Commit 8f6c2393 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix(npm): ignore react-native changelog

parent 9f8b3e51
No related branches found
No related tags found
No related merge requests found
...@@ -111,6 +111,11 @@ function sectionize(text, level) { ...@@ -111,6 +111,11 @@ function sectionize(text, level) {
async function getReleaseNotesMd(repository, version, githubBaseURL) { async function getReleaseNotesMd(repository, version, githubBaseURL) {
logger.trace(`getReleaseNotes(${repository}, ${version})`); logger.trace(`getReleaseNotes(${repository}, ${version})`);
const skippedRepos = ['facebook/react-native'];
// instanbul ignore if
if (skippedRepos.includes(repository)) {
return null;
}
let changelogFile; let changelogFile;
let changelogMd = ''; let changelogMd = '';
try { try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment