Add React Denver to the Meetups page (#4727)

Co-authored-by: Rick Hanlon <rickhanlonii@fb.com>
This commit is contained in:
Will Klein
2025-04-02 18:17:42 +02:00
committed by GitHub
parent 9fc122194a
commit c74271e26a
6 changed files with 14 additions and 9 deletions

View File

@@ -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);

View File

@@ -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')) {