We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a888c7 commit a220c15Copy full SHA for a220c15
src/build/mdn-comments.ts
@@ -95,7 +95,9 @@ async function getIndexMdContents(
95
export async function generateDescription(): Promise<Record<string, string>> {
96
const stats = await fs.stat(basePath);
97
if (!stats.isDirectory()) {
98
- throw new Error("MDN submodule does not exist; try running `git submodule update --init`");
+ throw new Error(
99
+ "MDN submodule does not exist; try running `git submodule update --init`",
100
+ );
101
}
102
try {
103
const folders = await getDirectories(basePath);
0 commit comments