build(broccoli-typescript): check for map files before deleting them
fixes #5610 Closes #6065
This commit is contained in:
parent
cab69f689f
commit
8516473340
|
@ -212,7 +212,10 @@ class DiffingTSCompiler implements DiffingBroccoliPlugin {
|
|||
|
||||
if (fs.existsSync(absoluteJsFilePath)) {
|
||||
fs.unlinkSync(absoluteJsFilePath);
|
||||
fs.unlinkSync(absoluteMapFilePath);
|
||||
if (fs.existsSync(absoluteMapFilePath)) {
|
||||
// source map could be inline or not generated
|
||||
fs.unlinkSync(absoluteMapFilePath);
|
||||
}
|
||||
fs.unlinkSync(absoluteDtsFilePath);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue