- Add GitHub Actions workflow for automated CI/CD - Configure Node.js 18.x and 20.x matrix testing - Add TypeScript type checking step - Add ESLint code quality checks with enhanced rules - Add Prettier formatting verification - Add production build validation - Upload build artifacts for deployment - Set up automated testing on push/PR - Replace console.log with environment-aware logger - Add pre-commit hooks for code quality - Exclude archive folder from linting 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
297 B
TypeScript
12 lines
297 B
TypeScript
// 이 파일은 이제 단순히 새로운 구조의 파일들을 재내보내기만 합니다
|
|
export {
|
|
useTransactions,
|
|
MONTHS_KR,
|
|
getCurrentMonth,
|
|
getPrevMonth,
|
|
getNextMonth,
|
|
filterTransactionsByMonth,
|
|
filterTransactionsByQuery,
|
|
calculateTotalExpenses,
|
|
} from "./transactions";
|