PR Summary

What problems was I solving

The iterable-event-log Vitest config contained a build: { minify: false } block and an empty globalSetup: [] array. Because the project has no Nx build target, the build block was never used, and an empty globalSetup array is a no-op. These entries were leftover scaffolding/dead code that added unnecessary noise to the configuration.

What user-facing changes did I ship

No user-facing changes. This is a repository cleanup that only removes unused test-runner configuration entries.

How I implemented it

Deleted the build: { minify: false } and globalSetup: [] blocks from architect/iterable-event-log/vite.config.ts, leaving the rest of the Vitest configuration (environment, test include, timeouts, coverage reporting) unchanged.

Description for the changelog

Removed unused build: { minify: false } and empty globalSetup: [] from architect/iterable-event-log/vite.config.ts. The project has no Nx build target, so the build block was dead code, and the empty global setup array was a no-op; test behavior is unchanged.

iterable-event-log test config cleanup

low1 file
Removed unused `build.minify` and empty `globalSetup` from the iterable-event-log Vitest config.