packages/client/src/__tests__/benchmarks/lots-of-relations/lots-of-relations.bench.ts::typescript::client generation 100 models with relations
+39%
54.2 s
39 s
Commits
Click on a commit to change the comparison range
fix(client): Fix deno build after keyed-dmmf migration (#19071)
`dmmfToRuntimeDataModel` is not exported from runitme and is not
used in generated client, but was imported. This causes an error for
`edge-esm` runtime, used by Deno.
base
fdc8732
7 months ago by SevInf
-14%
perf(client): Properly tree-shake some `arg` and `lz-string`
`arg` is not used by any of the runtime dependencies but was
not tree-shaked because it is not marked as side effects free and
some `internals` helpers required it.
`lz-string` is not used by any runtime except edge/data-proxy but
was still bundled.
That saves around 8KB from a bundle size, but unfortinately has no
visible effect on performance.
Close prisma/client-plannning#342
0933c8d
7 months ago by SevInf
+53%
perf(client): Properly tree-shake some `arg` and `lz-string`
`arg` is not used by any of the runtime dependencies but was
not tree-shaked because it is not marked as side effects free and
some `internals` helpers required it.
`lz-string` is not used by any runtime except edge/data-proxy but
was still bundled.
That saves around 8KB from a bundle size, but unfortinately has no
visible effect on performance.
Close prisma/client-plannning#342