mirror of
https://github.com/earendil-works/pi.git
synced 2026-06-18 15:54:04 +08:00
6ec1391ebb
- ANSI codes now attach to next visible content, not trailing whitespace - Rewrote AnsiCodeTracker to track individual attributes - Line-end resets only turn off underline, preserving background colors - Added vitest config to exclude node:test files fixes #109
8 lines
133 B
TypeScript
8 lines
133 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["test/wrap-ansi.test.ts"],
|
|
},
|
|
});
|