- Raise use-swipe-gesture mutation score to 66.13% (target 65%+) - Maintain use-reduced-motion mutation score at 76.32% (target 50%+) - Fix use-reduced-motion.ts ESLint set-state-in-effect warning - Add UJ-10 deep searcher journey (category browse → article read → content discovery) - Add 40 new test files (analytics, detail, sections, ui, lib components) - Update test-strategy-plan.md to v2.0 (sync test count to 1591) - Sync README.md with final release metrics Quality gates: TS 0 errors, ESLint 0 errors, 121 suites / 1591 tests passed
53 lines
1.7 KiB
JavaScript
53 lines
1.7 KiB
JavaScript
#!/usr/bin/env node
|
|
// @ts-nocheck
|
|
/**
|
|
* CLI helper: discard pending manual edits from the buffer without applying.
|
|
*
|
|
* Reads .impeccable/live/pending-manual-edits.json, drops entries, writes back.
|
|
* No source-file writes. Use this when the user wants to throw away unsaved
|
|
* manual edits.
|
|
*
|
|
* Trigger: only when the user explicitly asks the AI to discard / throw away /
|
|
* clear pending manual edits.
|
|
*
|
|
* Usage:
|
|
* node live-discard-manual-edits.mjs # discard all pending
|
|
* node live-discard-manual-edits.mjs --page-url=/ # discard only entries for "/"
|
|
*
|
|
* Output JSON: { discarded: N, entries: [...discardedEntries], totalCount: N }
|
|
*/
|
|
|
|
import { readBuffer, removeEntries, truncateBuffer } from './live/manual-edits-buffer.mjs';
|
|
|
|
function argVal(args, name) {
|
|
const prefix = name + '=';
|
|
for (const a of args) {
|
|
if (a === name) return true;
|
|
if (a.startsWith(prefix)) return a.slice(prefix.length);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
const args = process.argv.slice(2);
|
|
if (args.includes('--help') || args.includes('-h')) {
|
|
console.log('Usage: node live-discard-manual-edits.mjs [--page-url=<url>]');
|
|
process.exit(0);
|
|
}
|
|
|
|
const pageUrlFilter = argVal(args, '--page-url');
|
|
const cwd = process.cwd();
|
|
|
|
let discarded;
|
|
let entries;
|
|
const buffer = readBuffer(cwd);
|
|
if (pageUrlFilter) {
|
|
entries = buffer.entries.filter((entry) => entry.pageUrl === pageUrlFilter);
|
|
discarded = removeEntries(cwd, (entry) => entry.pageUrl === pageUrlFilter);
|
|
} else {
|
|
entries = buffer.entries;
|
|
discarded = truncateBuffer(cwd);
|
|
}
|
|
|
|
const remaining = readBuffer(cwd).entries.reduce((n, e) => n + e.ops.length, 0);
|
|
console.log(JSON.stringify({ discarded, entries, totalCount: remaining }));
|