Fixed errors when building for the first time

master
Guusvanmeerveld 3 years ago
parent 0c2508119b
commit dfe8290ac0

@ -64,8 +64,7 @@ const compile = (file, type, callback) => {
return;
default:
return minify(file).then(callback).catch(console.log('Error compiling file ' + file))
return minify(file).then(callback).catch((err) => console.log('Error compiling file ' + file + ':' + err))
}
};

Loading…
Cancel
Save