Skip to content

Commit

Permalink
Specify a stringifier for postcss
Browse files Browse the repository at this point in the history
It started to complain about missing this in postcss@7
  • Loading branch information
jwilsson committed Jul 18, 2018
1 parent 7b0b5bc commit 01707e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/linter.js
Expand Up @@ -308,7 +308,8 @@ class Linter {
parse (source) {
return postcss([]).process(source, {
from: this.fullPath,
syntax: postcssLess
stringifier: stringify,
syntax: postcssLess,
});
}

Expand Down

0 comments on commit 01707e2

Please sign in to comment.