Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [1.5.1] - 2026-07-10

### Fixed

- **Add `esbuild` as a direct dependency** — Vite 8 no longer bundles esbuild (it became a peer dependency of Vite). nextcov uses `transformWithEsbuild` to compile TypeScript/TSX for zero-coverage generation, so esbuild must be present. Adding it as an explicit dependency ensures it is installed automatically alongside nextcov without requiring users to install it manually.

## [1.5.0] - 2026-07-04

### Changed
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ npm install nextcov --save-dev

## Requirements

- Node.js >= 20
- Node.js >= 22
- Next.js 14+ or Vite 5+
- Playwright 1.40+

Expand All @@ -82,6 +82,8 @@ npm install nextcov --save-dev
npm install @playwright/test --save-dev
```

> **Note:** `esbuild` is included as a direct dependency of nextcov (required since Vite 8 no longer bundles it). It will be installed automatically — no manual installation needed.

## Quick Setup with `nextcov init`

The fastest way to get started is with the `init` command:
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nextcov",
"version": "1.5.0",
"version": "1.5.1",
"description": "Collect test coverage for Playwright E2E tests in Next.js applications",
"author": "Steve Zhang",
"license": "MIT",
Expand Down Expand Up @@ -63,6 +63,7 @@
"ast-v8-to-istanbul": "^1.0.4",
"chalk": "^4.1.2",
"convert-source-map": "^2.0.0",
"esbuild": ">=0.21.0",
"glob": "^11.1.0",
"istanbul-lib-coverage": "^3.2.0",
"istanbul-lib-report": "^3.0.1",
Expand Down
Loading