Skip to content

Commit 4bbb406

Browse files
committed
index.js: remove import from ../i18n/config
1 parent fbf8f6a commit 4bbb406

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

javascript/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ import { writeRewritedSearchData } from "./searchRewrite";
4242
import { setupSnippetsJson } from "./processingFunctions/processSnippetJson";
4343
import { createTocJson } from "./generateTocJson";
4444
import { setupReferencesJson } from "./processingFunctions/processReferenceJson";
45-
import { jsonSummaryPrefix } from "../i18n/config";
4645

4746
export let parseType;
4847
let version;
@@ -409,7 +408,7 @@ async function main() {
409408
fs.mkdirSync(logDir, { recursive: true });
410409
}
411410

412-
const logPath = path.join(logDir, `${jsonSummaryPrefix}-${timestamp}.log`);
411+
const logPath = path.join(logDir, `json-summary-${timestamp}.log`);
413412
fs.writeFileSync(logPath, summaryLog);
414413
console.log(`Summary log saved to logs/json-summary-${timestamp}.log`);
415414
} catch (logError) {

0 commit comments

Comments
 (0)