mirror of https://github.com/facebook/jest.git
32 lines
821 B
JavaScript
32 lines
821 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import fs from 'graceful-fs';
|
|
|
|
const linkRegex =
|
|
/\[#(\d+)\]\(https:\/\/github.com\/facebook\/jest\/(issues|pull)\/(\d+)\)/g;
|
|
|
|
const changelogPath = 'CHANGELOG.md';
|
|
const data = fs.readFileSync(changelogPath, 'utf-8');
|
|
|
|
let error = false;
|
|
let lineNumber = 1;
|
|
for (const line of data.split('\n')) {
|
|
for (const match of line.matchAll(linkRegex))
|
|
if (match[1] !== match[3]) {
|
|
const column = match.index + 1;
|
|
console.error(
|
|
`${changelogPath}:${lineNumber}:${column}: error: ` +
|
|
`Link is incorrect: ${match[0]}`,
|
|
);
|
|
error = true;
|
|
}
|
|
++lineNumber;
|
|
}
|
|
|
|
process.exit(error ? 1 : 0);
|