Streamline management of API collections #1

Merged
administrator merged 43 commits from feature/script-autogenerate-http into main 2026-08-19 14:54:42 +02:00
Showing only changes of commit 0b1a7becb8 - Show all commits
+1 -1
View File
@@ -492,7 +492,7 @@ function writeEnvironmentTemplates(sourceDir, outputRoot) {
}
}
const templateContent = variableNames.length > 0 ? `${variableNames.join('\n')}\n` : '';
const templateContent = variableNames.length > 0 ? `${variableNames.map(v => `${v}={{${v}}}`).join('\n')}\n` : '';
fs.writeFileSync(path.join(targetDir, '.env.template'), templateContent, 'utf8');
}
}