Steve Terpe
Steve Terpe
@IceOnFire The schema references are not available on the virtual filesystem that emscripten loads from. @hubgit did some work on this above.
This commit dc5df54720020318082cb3b93526f9ce4030111e
TBH, I don't know what version of emscripten was used to compile that originally.
@cowboy It kind of feels like a principle / functional purity thing here: ``` ./app/js/**/*.js app/js/**/*.js /home/me/foo/app/js/**/*.js ./../foo/app/js/**/*.js ``` are equivalent filepaths and it seems like globule#processPatterns should return the...
Just as a final thought on this, FWIW, Ben. I think reasonable people would agree that when executed in the same cwd: ``` javascript globule#processPatterns(['./app/js/**/*.js', '!**/node_modules/**'], ...) ``` ``` javascript...
Unfortunately, no. Should be pretty straightforward to remove those if you want to submit a PR. This project is unmaintained by me at the current time, but I would certainly...
It still strikes me that the approach of implementing sorting within the component itself feels a little more comfortable in Backbone. I hope this doesn't seem like a trivial nitpick...