Ken Newman

Results 51 comments of Ken Newman

I named the property `sassStats` instead of `stats` to avoid confusion or potential collision.

Honestly, I've never quite figured out extending tests; I have no idea what I'm doing with regards to that. If anyone wants to adopt this issue/patch, you are more than...

using `closest('form,div')` might be better then just 'form' if you want to allow yellowled's different element strategy, but regardless, closest is better then parents in this case (for performance and...

``` $(document).ready(function() { $('form:has(input[type=search])').attr('role','search'); }); ``` This selector form has the advantage of working with the dynamic version: http://jsfiddle.net/SaNmp/17/

Haven't tested, but since the script is short and `$` is only called twice, replacing it with `jQuery` should be an quick n easy fix for this.

Why not leave 4.5 as libsass compatible, and make 5 dartsass...at least until libsass updates itself (if ever). Backwards compatibility makes no sense here.

Maybe this should be on the "Projects" queue? @mdo

@rickydazla and @trev-dev I'm glad you found my little pipe function useful! I've updated it to be better and more reusable: ```js import through2 from 'through2'; const touch = ()...

A workaround in the meantime is ```js .pipe( through2.obj( function( file, enc, cb ) { var date = new Date(); file.stat.atime = date; file.stat.mtime = date; cb( null, file );...

I was hoping that VSCode's "Format Document" command would simply respect the phpcs settings for a php file. That'd be incredible. If it's not possible or desirable to hook into...