chore(): add remove debug statements logs

This commit is contained in:
Manu Mtz.-Almeida
2016-11-03 00:49:41 +01:00
parent 0a25a836ae
commit 7735be7c4f

View File

@ -74,6 +74,7 @@ export function copySourceToDest(destinationPath: string, excludeSpecs: boolean,
} }
let stream = src(glob); let stream = src(glob);
if (stripDebug) { if (stripDebug) {
console.log('Removing debug statements ', destinationPath);
stream = stream.pipe(removeDebugStatements()); stream = stream.pipe(removeDebugStatements());
} }
return stream.pipe(dest(destinationPath)); return stream.pipe(dest(destinationPath));