Skip to content

Commit 1e087d3

Browse files
authored
Merge pull request #15 from mkreyman/feature/memory-keeper-production-fixes
Fix Memory Keeper v0.11.0 Critical Pagination Implementation
2 parents 7c73e5c + 4608499 commit 1e087d3

40 files changed

+1982
-6658
lines changed

.husky/pre-commit

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
echo "🔍 Running pre-commit quality checks..."
5+
6+
# Run lint-staged for staged files
7+
npx lint-staged
8+
9+
# Run build to ensure compilation succeeds
10+
echo "🏗️ Building project..."
11+
npm run build
12+
13+
# Run type checking
14+
echo "🔍 Type checking..."
15+
npm run type-check
16+
17+
# Run tests to ensure nothing is broken
18+
echo "🧪 Running tests..."
19+
npm test
20+
21+
echo "✅ All quality checks passed!"

.lintstagedrc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"*.{ts,js}": ["eslint --fix", "prettier --write"],
3+
"*.{md,json}": ["prettier --write"]
4+
}

COMPREHENSIVE_TEST_REPORT.md

Lines changed: 0 additions & 187 deletions
This file was deleted.

0 commit comments

Comments
 (0)