Alexander von Weiss
Alexander von Weiss
I love pitbull. It's the best looking and best configurable unitframe addon there is. Sadly I also had to switch because of fps issues. I used the addon "Addon Usage"...
As as side note. If you intend to just make the `externalPackagesPlugin` faster but keep the `/^[^./]/` regex, this still would be a regression compared to angular 17.1.0. E.g. if...
Workaround: You can set `encapsulation: ViewEncapsulation.None` for your component (or create a component only for the styles) and do `@import './my-styles.css';` in your components stylesheet file. Only downside is, that...
Esbuild can dump a `stats.json` via `ng build --stats-json` that contains the information which files are required to load lazy loaded chunks. See https://esbuild.github.io/api/#metafile (the outputs part) Ssr could use...
Would be awesome if you allowed us to choose inline sourcemaps for component styles. This would not only solve this issue but also work when using dev mode via custom...
fun fact, the new vite/esbuild based build does exactly this. One side effect is though: If you have two files with the same name in different folders, you get a...
may be the same as https://github.com/vendure-ecommerce/ngx-translate-extract/issues/24 and fixed since https://github.com/vendure-ecommerce/ngx-translate-extract/pull/30 (9.0.1). Or alternatively remove trailing commas in your tsconfig.json if you can't upgrade to 9.x / angular@17 yet.
In a similar fashion this also affects standalone components. E.g. if you change the selector of a standalone component and then change it back, the consumers of that given standalone...
I remember there were a bunch of PRs like https://github.com/angular/angular-cli/pull/20236 from @clydin that once tried to tackle this problem (recheck dependands in watch mode)
Not sure what you changed, but we are on version `18.2.0` for a while now, and that compiler feels rock solid. It even recovers from switches between rather big changes....