You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(#105)
This PR changes the task cache to use a directory structure instead of a single database file:
- Changes cache path from `node_modules/.vite/task-cache.db` to `node_modules/.vite/task-cache` for easier clean
- The SQLite database is now stored as `cache.db` inside this directory
- Updates documentation to reflect the new cache location
Adds new cache management commands:
- `vite-plus cache clean` - Removes the cache directory
- `vite-plus cache view` - Displays cache contents in JSON format for debugging
Adds test cases to verify cache cleaning works correctly, including from subfolders.
0 commit comments