Skip to content
This repository was archived by the owner on Dec 26, 2018. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/extract-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = function (b, opts) {
outPath.write(css)
outPath.end()
} else if (typeof outPath === 'string') {
fs.writeFile(outPath, css)
fs.writeFile(outPath, css, function () {})
}
})
})
Expand Down