Benjamin Solum

Results 18 issues of Benjamin Solum

**Feature Request**: It'd be great to see the original class/id name in dev tools for easier lookup. I hash all my classes, so class name's like `.logo` become `.A` upon...

Currently users cannot set a default useCapture. This means we're unable to use custom options like "passive".

I have a custom resolver that depends on the `missing` property of an error object returned in the callback after attempting to resolve a path. This was done so that...

Based on postcss-colormin: http://cssnano.co/optimisations/colormin/ example: ``` .color1 { color: white; } .color2 { color: rgb(255, 255, 255); } ``` becomes ``` .a { color: #fff; } ```

Name of thread says it all. Nothing is working in Edge. Testing on a Surface.

Great work! Noticed just a few things with the package.json as I was looking at source: [L5](https://github.com/Heydon/watched-box/blob/master/package.json#L5): - Main should probably point to a processed CJS/UMD file. As it is...

Depending on how the CSS sourceMaps were written, we may have [issues with filenames](https://github.com/gruntjs/grunt-contrib-cssmin/issues/204). grunt-contrib-uglify let's you specify a [sourceMapIn](https://github.com/gruntjs/grunt-contrib-uglify#user-content-sourcemapincludesources) method to help deal with these issues. This plugin should...

Similar in scope to [this issue](https://github.com/mattbasta/crass/issues/58), could we get merging of [@supports](https://developer.mozilla.org/en-US/docs/Web/CSS/@supports) rules as well? ``` @supports (display:grid) { .foo { color: "#444"; } } @supports (display:grid) { .bar {...

Where all template strings are treated as code blocks. Optionally import on PreStyle for a simple method that filters and joins strings. **Example:** ```JS import PreStyle from 'pre-style'; const attrs...

enhancement