Skip to content

Commit e11167f

Browse files
committed
Cleanup
1 parent 947375f commit e11167f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

lib/make-postcss.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ let { promisify } = require("faucet-pipeline-core/lib/util");
55
let readFile = promisify(require("fs").readFile);
66

77
module.exports = function(input, target, assetManager, sourcemaps, browsers, compact) {
8-
// if(browsers && browsers.length > 0) {
9-
// let filepath = path.relative(assetManager.referenceDir, input);
10-
// console.error(`compiling CSS ${repr(filepath)} for ${browsers.join(", ")}`);
11-
128
let plugins = [
139
atImport(),
1410
assetURL({ manifest: assetManager.manifest })
@@ -38,7 +34,6 @@ module.exports = function(input, target, assetManager, sourcemaps, browsers, com
3834
}).then(result => {
3935
let warnings = result.warnings();
4036

41-
// TODO: Maybe do the manipulation of the message here
4237
if(warnings.length > 0) {
4338
let errorMessage = warnings.
4439
map(warning => warning.toString()).

0 commit comments

Comments
 (0)