mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-25 23:05:23 +00:00
Add React Denver to the Meetups page (#4727)
Co-authored-by: Rick Hanlon <rickhanlonii@fb.com>
This commit is contained in:
@@ -2,10 +2,10 @@ const fs = require('fs');
|
||||
|
||||
module.exports = function walk(dir) {
|
||||
let results = [];
|
||||
/**
|
||||
/**
|
||||
* If the param is a directory we can return the file
|
||||
*/
|
||||
if(dir.includes('md')){
|
||||
if (dir.includes('md')) {
|
||||
return [dir];
|
||||
}
|
||||
const list = fs.readdirSync(dir);
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
const validateHeaderIds = require('./headingIDHelpers/validateHeadingIDs');
|
||||
const generateHeadingIds = require('./headingIDHelpers/generateHeadingIDs');
|
||||
|
||||
/**
|
||||
/**
|
||||
* yarn lint-heading-ids --> Checks all files and causes an error if heading ID is missing
|
||||
* yarn lint-heading-ids --fix --> Fixes all markdown file's heading IDs
|
||||
* yarn lint-heading-ids path/to/markdown.md --> Checks that particular file for missing heading ID (path can denote a directory or particular file)
|
||||
* yarn lint-heading-ids --fix path/to/markdown.md --> Fixes that particular file's markdown IDs (path can denote a directory or particular file)
|
||||
*/
|
||||
*/
|
||||
|
||||
const markdownPaths = process.argv.slice(2);
|
||||
if (markdownPaths.includes('--fix')) {
|
||||
|
||||
Reference in New Issue
Block a user