mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-22 03:42:14 +00:00
Added check to ensure linked Codepen file exists
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
const {existsSync} = require('fs');
|
||||
const {join} = require('path');
|
||||
const map = require('unist-util-map');
|
||||
|
||||
const DEFAULT_LINK_TEXT = 'Try it on CodePen';
|
||||
@@ -15,6 +17,15 @@ module.exports = ({markdownAST}) => {
|
||||
const text =
|
||||
node.children.length === 0 ? DEFAULT_LINK_TEXT : node.children[0].value;
|
||||
|
||||
// Verify that the specified example file exists.
|
||||
const filePath = join(__dirname, `../../${href}.js`);
|
||||
if (!existsSync(filePath)) {
|
||||
console.log(
|
||||
`Invalid Codepen link specified; no such file "${filePath}"`,
|
||||
);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
const anchorOpenNode = {
|
||||
type: 'html',
|
||||
value: `<a href="${href}" target="_blank">`,
|
||||
|
||||
Reference in New Issue
Block a user