mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-03-15 14:05:47 -05:00
Do not include built/local/enu when producing LKG (#32723)
This commit is contained in:
@@ -30,7 +30,7 @@ async function copyLocalizedDiagnostics() {
|
||||
for (const d of dir) {
|
||||
const fileName = path.join(source, d);
|
||||
if (fs.statSync(fileName).isDirectory()) {
|
||||
if (d === 'tslint') continue;
|
||||
if (d === 'tslint' || d === 'enu') continue;
|
||||
await fs.copy(fileName, path.join(dest, d));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user