From 1967b59786e7f819122a1348a779b11858edad42 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Sep 2025 06:37:38 +0000 Subject: [PATCH] Fix syntax error in apply-config.js - missing const declaration Co-authored-by: AstroSteveo <34114851+AstroSteveo@users.noreply.github.com> --- apply-config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apply-config.js b/apply-config.js index 7ba74b5..7fc1dc1 100755 --- a/apply-config.js +++ b/apply-config.js @@ -237,6 +237,7 @@ function copyFile(sourcePath, destPath) { * @returns {Object} Summary of the number of files removed per section. */ function cleanupDisabledFiles(outputDir, effectivelyEnabledSets, rootDir) { + const removedCounts = { prompts: 0, instructions: 0, chatmodes: 0