Damian Kaczmarek

Results 192 comments of Damian Kaczmarek

Hey guys .. this issue makes me feel confused and anxious about upgrading to latest html-loader in multiple projects. So if I define a web component named `` would html-loader...

It doesn't have to exist as it could be a custom element such as a Web Component. https://developer.mozilla.org/en-US/docs/Web/Web_Components https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_templates_and_slots See this exmaple https://codesandbox.io/s/web-components-using-vanilla-js-forked-c9xsk where I defined a custom `ng-container` web...

Not closing some tags is legal in HTML5 https://stackoverflow.com/a/3558200/403571

We also encountered a lot of issues with performance, especially on Windows. `fs.statSync` is being called excessively - multiple times for the same file. I also see that every node_module...

Wow, adding `addMatchAll: false` directly to the installed js files made all the difference. I no longer see so many useless operations to check for file presence. Now I wonder...

Honestly I like the simplicity of `-r tsconfig-paths/register` as this way I can also run various utility scripts in my repo without having a custom wrapper/entrypoint for each. But I...

Btw. on Windows the default fileExists checking is absolutely insane. Insanely slow. ![image](https://user-images.githubusercontent.com/115926/135391187-0e73d792-1490-4a10-8ed4-d4be6f0c9e78.png) ![image](https://user-images.githubusercontent.com/115926/135391301-459f6d33-3261-42c2-8923-d0ec2dfa972b.png) ![image](https://user-images.githubusercontent.com/115926/135391323-1e0d6a87-d104-4e09-870a-ee2e9f0bdbd7.png) There are few reasons: 1) Poor implementation by Node.JS 2) Windows filesystem is slower than...

@jonaskello I think it's better to figure out a solution for everyone. So far I'm unblocked by hacking the module directly, but let's figure out a proper code fix.