removed unnecessary code

This commit is contained in:
Barış Soner Uşaklı
2017-07-04 17:54:51 -04:00
parent 3d4b358470
commit 091fec8d6f

View File

@@ -137,15 +137,9 @@ function getBundleMetadata(target, callback) {
var imports = cssImports + '\n' + lessImports;
imports = buildImports[target](imports);
next(null, imports);
next(null, { paths: paths, imports: imports });
},
], function (err, imports) {
if (err) {
return callback(err);
}
callback(null, { paths: paths, imports: imports });
});
], callback);
}
CSS.buildBundle = function (target, fork, callback) {