Marius Gundersen
Marius Gundersen
No, it does not show up later, not as far as I can tell.
This could be related to https://github.com/mozilla/source-map/issues/216
This in an imlementation for mat3: ``` function mul2d(out : mat3, a : mat2d, b : mat3) { var a0 = a[0], a1 = a[1], a2 = a[2], a3 =...
With these Lazy implementations I don't think the `GetOrAdd`/`GetorAddAsync` methods need so much locking and try/catch. This also means that it doesn't have to lock on the entire cache, but...
Any update here? While waiting for this to be merged I've created a fork and published it as `@mariusgundersen/gulp-svg-spritesheet`. Hopefully this pull request can be accepted soon so I can...
Any update? It would be nice if this was merged. If you need help maintaining this project, let me know and I'd be happy to help you out
This would be really useful in CI where it could be used for checking what will happen when a pull-request is merged
Instead of using sass and less directly, it could use the postcss-sass and postcss-less plugins to parse the files. We don't really need it to convert the sass/less file to...
I tried it a bit more, and unfortunately it won't work. The tests have advanced features of less and sass that require the full compiler to work (generating classes in...
I've had a look at this with a simple less file: ```less .top { color: red; .first { color: blue; } & .second { color: green } } ``` which...