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 1f4e523 commit c9c4eeeCopy full SHA for c9c4eee
src/build/patches.ts
@@ -61,8 +61,8 @@ export async function readPatch(fileUrl: URL): Promise<any> {
61
* Read, parse, and merge all KDL files under the input folder.
62
*/
63
export default async function readPatches(): Promise<any> {
64
- const inputFolder = new URL("../../inputfiles/patches/", import.meta.url);
65
- const fileUrls = await getAllKDLFileURLs(inputFolder);
+ const patchDirectory = new URL("../../inputfiles/patches/", import.meta.url);
+ const fileUrls = await getAllKDLFileURLs(patchDirectory);
66
67
const parsedContents = await Promise.all(fileUrls.map(readPatch));
68
0 commit comments