Alexander von Weiss

Results 55 comments of Alexander von Weiss

Some people tried to get a [minChunkSize option into esbuild](https://github.com/evanw/esbuild/pull/3302), with no success yet, though. You could write a super crude post processor that merges all

Could you try from inside your `/browser` directory: ```js npm i -g rollup rollup --format es -d dist/ --experimentalMinChunkSize 1000 -- main-25ISSONF.js ``` with `main-25ISSONF.js` being your entry chunk? And...

try https://github.com/maxdavidson/rollup-plugin-sourcemaps - can't confirm if it works, we don't use sourcemaps in production.

We don't use sourcemaps in production.

The `NG_BUILD_OPTIMIZE_CHUNKS=1` is very nice and works as advertised. I'm probably going to use it, when we switch. We are still stuck on webpack though, as I can't get the...

Found this issue today https://github.com/GoogleChrome/lighthouse/issues/16539. So those chunks may not necessarily ruin the performance for your customer, but lighthouse seems to punish you for every single javascript request as its...

The pink chunks are what we talking about: ![CleanShot 2024-05-28 at 12 31 23@2x](https://github.com/evanw/esbuild/assets/905328/f9991748-d515-49f9-9e3a-81563eb5116c) The general chunk structure is pretty nice. But the more `import('...')` entries you create, the more...

We get this error: ```log [error] Error: The service was stopped at [...]\node_modules\esbuild\lib\main.js:993:26 ... ``` as well, when we abort `ng serve` mid build via `CTRL+c`. Happens since we upgraded...

I'd do a PR to e.g. modify https://github.com/webpack-contrib/sass-loader/blob/master/src/index.js#L79-L90 to grant webpack the `loadedUrls` in case of an error.

It's true. All event listeners are 1. [wrapped in `wrapListener`](https://github.com/angular/angular/blob/397416f804c4c8a79e6805e3f337ce10822f4056/packages/core/src/render3/view/listeners.ts#L45-L71), 2. [which then calls `markViewDirty`](https://github.com/angular/angular/blob/397416f804c4c8a79e6805e3f337ce10822f4056/packages/core/src/render3/instructions/mark_view_dirty.ts#L26-L52) 3. which then calls `changeDetectionScheduler?.notify(source /* 5 - EventListener */)`, which then schedules `applicationRef.tick()` (aka...