fix(fs): Refactor copy and copySync functions to simplify return type

This commit is contained in:
2025-01-29 18:10:48 +01:00
parent 0abbe8bbd7
commit 13081b7344
3 changed files with 11 additions and 13 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## 2025-01-29 - 11.1.7 - fix(fs)
Refactor copy and copySync functions to simplify return type
- Changed the return type of fs.copy and fs.copySync from boolean to void.
- Removed unnecessary promise handling in fs.copy.
## 2025-01-29 - 11.1.6 - fix(fs)
Fix issues with fs file copy functions.