Damian Kaczmarek
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...
https://github.com/WICG/webcomponents
Not closing some tags is legal in HTML5 https://stackoverflow.com/a/3558200/403571
Seems to work fine https://astexplorer.net/#/1CHlCXc4n4
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.    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.