Matt Calthrop

Results 20 comments of Matt Calthrop

Is there any update on this issue? I've done the same thing: followed the same steps in the documentation, and it doesn't work (as described in this issue). What has...

Thanks for the helpful reply @arthurevans . I've cloned that repo, and will attempt to pick out the basics of the minimum that is needed for me to get just...

@arthurevans Ok, I've really quickly put something together: https://github.com/mcalthrop/wc-lit-element-ts Would be grateful for your opinion – and hope it's useful! Signing off for the week... have a good weekend :-)

@arthurevans Ah, nice... I just updated the repo to reflect this change. Thanks!

This had me stumped as well – it's _really_ difficult to match an actual Chromium version to the "commit position" described in the README. But I think I finally found...

FWIW, I ended up downloading Chrome directly from within the GitHub workflow like this: ```sh sudo apt-get update sudo apt-get install --yes \ fonts-liberation \ libcairo2 \ libgbm1 \ libgtk-3-0...

Hi @JonWallsten Apologies for the late reply... maybe you are getting the error because of this line in `webpack.config.js`: https://github.com/opencredo/opencredo-react-boilerplate/blob/master/webpack.config.js#L81 Could you please try changing `/src\/(?!styles).+/` to just `/src.+/`? We...

Hi @chybie I've created a cut-down version of the issue here: [github.com/mcalthrop/polymer3-typescript-ie11](/mcalthrop/polymer3-typescript-ie11). For some reason arrow functions are not being transpiled into ES5, and IE11 [does not support arrow functions](http://caniuse.com/#search=arrow%20functions),...

I found a workaround: I have subclassed the `JwtHttp` class, and overridden the `request()` method – something like this: ``` typescript class MyHttp extends JwtHttp { request(urlOrRequest: string | Request,...