Skip to content

Commit

Permalink
Merge f7826c4 into 1560160
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroppy committed Jan 7, 2017
2 parents 1560160 + f7826c4 commit fc7a5a3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Expand Up @@ -69,8 +69,10 @@ var cssOne = 'h1 { color: red }';
var cssTwo = 'h1 { color: blue }';
// View a summary for all plugins across all css files
Promise.all(
postcss([devtools, autoprefixer()]).process(cssOne),
postcss([devtools, autoprefixer()]).process(cssTwo)
[
postcss([devtools, autoprefixer()]).process(cssOne),
postcss([devtools, autoprefixer()]).process(cssTwo)
]
).then(() => {
console.log('Done.');
devtools.printSummary();
Expand Down

0 comments on commit fc7a5a3

Please sign in to comment.