fix cli error

This commit is contained in:
王劲鹏 2020-03-13 15:22:19 +08:00 committed by osborn
parent 49854cc825
commit f9ffb42367
2 changed files with 4 additions and 1 deletions

View File

@ -27,6 +27,10 @@ function fromDir(startPath, filter) {
};
function doMerge(startPath, fileName) {
const filePath = fileName ? path.join(startPath, fileName) : startPath
if (filePath.indexOf('.es5.') >= 0){
return
}
console.log('File change:', filePath)
const mergedMap = SourceMapMerger.createMergedSourceMapFromFiles([
filePath.replace(/bundle\//, 'build/'),
filePath,

View File

@ -19,7 +19,6 @@ setTimeout(() => {
}
fs.readFile(path, 'utf-8', (error, data) => {
if (!path.endsWith('.map')) {
console.log('File change:', path)
try {
const sourceMap = doMerge(path + ".map")
ws.connections.forEach(e => {