Remove debug console log
This commit is contained in:
@ -34,10 +34,7 @@ export function readExtraPagesNames(params: {
|
|||||||
const rawSourceFile = fs.readFileSync(candidateFilPath).toString("utf8");
|
const rawSourceFile = fs.readFileSync(candidateFilPath).toString("utf8");
|
||||||
|
|
||||||
extraPages.push(
|
extraPages.push(
|
||||||
...Array.from(
|
...Array.from(rawSourceFile.matchAll(/["']([^.\s]+.ftl)["']:/g), m => m[1])
|
||||||
rawSourceFile.matchAll(/["']([^.\s]+.ftl)["']:/g),
|
|
||||||
m => (console.log(m), m[1])
|
|
||||||
)
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user