Is there a tool available that can compress, minify, and combine CSS files while generating a valid v3 SourceMap compatible with Chrome? Ideally, I am looking for a NodeJS tool.
From my research, some Node compressors like clean-css, csso, css-condense (which uses css-parse but struggles with bootstrap.css), and cssmin (a YUI port without a CLI) do not seem to offer source-map support.
I have heard that SASS (Ruby) and Less.js may be developing implementations, but these are preprocessor tools.