Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thysultan committed May 29, 2017
1 parent b7b64f2 commit 025f434
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion parsers.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ module.exports = {
{
name: 'Stylis',
fn: function () {
stylis('', css)
stylis('', css);
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion prefixers.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var scssFile = path.join(__dirname, 'cache/bootstrap.prefixers.scss');
fs.writeFileSync(scssFile, scss);

// Stylis
var stylis = require('stylis')
var stylis = require('stylis');

module.exports = {
name: 'Bootstrap',
Expand Down
6 changes: 4 additions & 2 deletions preprocessors.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,11 @@ module.exports = {
},
{
name: 'Stylis',
fn: function () {
defer: true,
fn: function (done) {
stylis('', styi);
}
done.resolve();
}
}
]
};
Expand Down

0 comments on commit 025f434

Please sign in to comment.