Closed chrillep closed 7 months ago
Function Extraction in wordpressComposerUpdate.js Several operations were extracted into their own distinct functions. This modification has enhanced the organization and readability of the code.
Change in Function Export
The manner in which functions are exported in wordpressComposerUpdate.js
has been adjusted to use default exports. This simplifies the import process in other files.
Updated Function Signatures
In the updateRequirePackages
, updateRequireDevPackages
, wpUpdate
, and initProgram
functions, the function signatures have been updated with additional parameters. This change enhances these functions' overall flexibility.
Addition of Fast Option in wpUpdate Command
A fast
option was added to the wpUpdate
command to increase the processing speed.
wpUpdate Command Description Update
The description and help command for wpUpdate
were updated to provide clearer and more precise guidance to users.
check #73 first
Dev's Notes
Add --fast parameter to wp update command, it will chain all requires into one command.
example without --fast
with --fast
Added