({generatedFilesDir}: {generatedFilesDir: string})
| 22 | } from '@docusaurus/types'; |
| 23 | |
| 24 | function genWarning({generatedFilesDir}: {generatedFilesDir: string}) { |
| 25 | return generate( |
| 26 | generatedFilesDir, |
| 27 | // cSpell:ignore DONT |
| 28 | 'DONT-EDIT-THIS-FOLDER', |
| 29 | `This folder stores temp files that Docusaurus' client bundler accesses. |
| 30 | |
| 31 | DO NOT hand-modify files in this folder because they will be overwritten in the |
| 32 | next build. You can clear all build artifacts (including this folder) with the |
| 33 | \`docusaurus clear\` command. |
| 34 | `, |
| 35 | ); |
| 36 | } |
| 37 | |
| 38 | function genSiteConfig({ |
| 39 | generatedFilesDir, |
no test coverage detected
searching dependent graphs…