Guntars Ašmanis-Graham

Results 15 comments of Guntars Ašmanis-Graham

I had the same issue and, after stepping through the code, saw that it was caused by the cache being stale. I had changed one of the ATL options and...

Just ran into the same issue. The project has a top level `node_modules` directory and several sub-project directories with separate `tsconfig.json` files and `webpack.config.js` files. The `babelCore` option works around...

I'm running into the same issue, but with using Typescript and `ts-node`. The issue is actually with the `callsite` library as it seems to ignore source-maps. If I do a...

Here https://github.com/netzpirat/haml-coffee/pull/106

I think passing custom Label and Track components into the main component would accomplish this and any other customization that the users might dream of. I'd like the handles to...

This is exactly what I wanted to do. ~~Another good addition would be to export the default Label, Slider and Track components so the InputRange parent components can use wrappers...

@oyeanuj I'll just bring up my branch with master and open a new PR with some extra documentation.

If anyone else is looking for a quick hack to get the source mapped stack traces working with Jasmine's HTML reporter while this is being figured out, here's a gist...

I actually ended up using https://github.com/evanw/node-source-map-support which overwrites the native `Error#stack` to fetch the source maps and rewrite the stacktrace. It works with Jasmine as well as errors in the...

As far as I know there's no way to access the inlined source map except by doing an XHR request for the file and parsing it manually.