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
Dotfiles are no longer included by default. Globs now respect the dot option (default false), so files like .hidden are skipped unless explicitly included.
If you relied on dotfiles being copied implicitly, either:
Pass dot: true, or
Add explicit dotfile patterns (for example .hidden or **/.hidden).
awaitcpy("foo.js","destination",{rename(source,destination){if(source.nameWithoutExtension==="foo"){destination.nameWithoutExtension="bar";}// destination.name, destination.extension, or destination.path can be updated here}});