Problem
The proposed directory rename/move feature for t3code projects needs a safe way to preview the change before committing — currently there's no way to validate the operation without actually moving files.
Proposed Solution
Add a --dry-run flag to the move command that:
- Shows what would be moved (old path → new path)
- Validates the target directory exists and is writable
- Does NOT actually move any files or update project metadata
Use case
Before running the actual move, a user can verify the correct directory is targeted and catch any path typos in advance.
Problem
The proposed directory rename/move feature for t3code projects needs a safe way to preview the change before committing — currently there's no way to validate the operation without actually moving files.
Proposed Solution
Add a
--dry-runflag to the move command that:Use case
Before running the actual move, a user can verify the correct directory is targeted and catch any path typos in advance.