Kyle Cordes

Results 129 comments of Kyle Cordes

I have published a fork which works with Universal. https://www.npmjs.com/package/@oasisdigital/ngx-scrollspy However, I am **not** confident that it contains the right way to implement universal compatibility. Therefore, no PR yet. If...

We have encountered the same challenge in our real work. Unfortunately, Angular Material itself doesn't really offer much helpful, because it attempts to comply with the Material spec... and that...

Ideally the StackBlitz samples would have a polished appearance (font, color, layout) as Wood's other samples... because in spite of the adage "don't judge a book by its cover", statistically...

Ouch, this one was tricky. After some failed experimentation this bug report was vital reading. I suggest a quick fix to the docs until there is time to fix the...

I've seen projects (and especially, groups of projects with overlapping and changing teams) benefit substantially from the lack of options in Prettier. It is well explained here: https://prettier.io/docs/en/option-philosophy.html

It looks like this one is still heavily under discussion. I can echo @tomblachut 's experience from Angular. What Angular does "just works" for almost all cases, producing efficient output...

I had approximately the exact need above. The following does **not** work: ``` turndownService.keep(['img']); ``` But the following **does** work: ``` turndownService.addRule('img', { filter: ['img'], replacement: (content, node) => node.outerHTML...

How would this change work, though? The code one writes inside of a test is quite different with the promise manager turned off. Is there a use case for running...

@awarecan Thank you, I had been thinking of doing a similar monkey patch for the TCP connection persistence problem, and them thrilled to see this one line edit addresses both...

I am experiencing this also. Does `rules_nodejs` (with its examples, which exercise things pretty well) CI on Windows?