Added check to ensure linked Codepen file exists

This commit is contained in:
Brian Vaughn
2017-11-06 23:23:45 +00:00
parent 6fd0d7950e
commit b9616f1bdf

View File

@@ -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">`,