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
8 changes: 8 additions & 0 deletions .configs/vitest.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ export default defineConfig({
environment: "node",
testTimeout: 30000,
server: { deps: { inline: [/@cldmv\/slothlet/] } },
// "dot" keeps CI logs to one character per test file instead of a full
// "RUN vX.Y.Z" + per-file pass/fail block for every file β€” vitest's
// non-interactive fallback (no TTY to redraw) otherwise reprints that
// whole block per file on top of the final aggregate summary, which
// dominates the log on a suite this size. The final "Test Files X
// passed" / "Tests Y passed" summary is unaffected β€” every built-in
// reporter prints it regardless of per-test verbosity.
reporters: ["dot"],
coverage: {
provider: "v8",
include: ["src/**"],
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cldmv/git-embedded",
"version": "1.1.1",
"version": "1.1.2",
"description": "Manage embedded git repositories (anonymous gitlinks) without .gitmodules. Provides hooks that restore standard git-command ergonomics for embedded children while keeping the child's origin URL out of the public parent repo.",
"type": "module",
"license": "Apache-2.0",
Expand Down
Loading