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
feat(@probitas/probitas): add cache command to pre-download dependencies
Users often need to pre-download scenario dependencies before running
tests, especially in CI/CD environments or when working offline. The
new `probitas cache` command wraps `deno cache` with the same file
discovery and configuration patterns as other CLI commands.
Changes:
- Added `probitas cache` command that runs `deno cache` on scenarios
- Extended _deno.ts helper to support -r/--reload option
- Created usage-cache.txt help documentation
- Updated README and main help with cache command
Usage:
probitas cache # Cache all scenario dependencies
probitas cache -r # Force re-download
probitas cache api/ # Cache specific directory
probitas cache --include "e2e/**/*.probitas.ts"
The command follows the same patterns as fmt/lint/check for consistency
and automatically discovers scenario files using probitas.json config.
0 commit comments