Skip to content

Commit

Permalink
Merge pull request #19 from stevenvachon/master
Browse files Browse the repository at this point in the history
Fix setting value of `node.content` to be an array
  • Loading branch information
voischev committed Dec 1, 2016
2 parents f0a1d59 + 44d65e9 commit f3b3ce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module.exports = function(plugins, options) {
var styles = indentResolve([].concat(node.content).join(''), indent);
promise = css.process(styles, options)
.then(function(result) {
node.content = indentResolve(result.css, indent);
node.content = [indentResolve(result.css, indent)];
});

promises.push(promise);
Expand Down

0 comments on commit f3b3ce7

Please sign in to comment.