* Find all documentation files
()
| 163 | * Find all documentation files |
| 164 | */ |
| 165 | function findDocFiles() { |
| 166 | return glob.sync('**/*.{md,mdx}', { |
| 167 | cwd: DOCS_BASE_DIR, |
| 168 | absolute: true |
| 169 | }); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Check if stdout contains a failed API response by parsing JSON |