Jacob MacDonald
Jacob MacDonald
Or actually I think its not frontend server but the kernel worker snapshot, https://github.com/dart-lang/build/blob/039aecaab190c70077f69e72f090675c8df04685/build_modules/lib/src/workers.dart#L82 Other packages do rely on frontend server though (specifically, package:test)
> The frontend server snapshot has already been switched to an aot snapshot in the SDK and the JIT snapshot deleted. I think all references to the JIT snapshot have...
> They should all be considered as (un)stable as they were before this change. Ok, we will keep the tight constraints then 👍
We do have nodes in the asset graph for all those things, but we don't actually compute modules/summaries/ddc for anything that isn't imported by a real entrypoint - or at...
Ya you could try creating a build.yaml which overrides the ddc_bootstrap_builder to only run on web entrypoints (that one is what actually causes things to get built). I am not...
(using generate_for)
we could also try to make it smart about not running on entrypoints that are clearly not web - but that is tricky
> I'm not 100% sure how to read this yet, but 200ms for a read doesn't seem bad considering it's only on a cold start. We should start to get...
> [INFO] BuildDefinition: Reading cached asset graph completed, took 178ms > [INFO] BuildDefinition: Building new asset graph completed, took 471ms Were there other logs between that? It should only build...
Ah looks like the logs are a bit confusing in that case because I think the log about the build actions changing happens while we are reading in the graph,...