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
Currently, the plugin includes vendor and build files in the version control, which increases the size of the repository to checkout and somewhat impacts the developer experience.
Additionally, when the plugin is published, it includes several files that add nothing besides bulking up the plugin; therefore, preferable to remove such files beforehand.
Here are several chores that could be considered:
Remove vendor and build files from version control.
Migrate NPM and required configs to the root directory from assets.
Update required packages with official @wordpress/* packages.
Update plugin release workflow to add vendor and build files before publishing it.
Remove unused files with pattern composer.*, vendor/*/*/.editorconfig, vendor/*/*/phpunit. etc. from vendor files as they are not required in production release.
Automate tasks like generating readme.txt from README.md instead of maintaining two different filed in VCS.
Automate the task of drafting the release using GitHub Action for better changelog coverage.
The text was updated successfully, but these errors were encountered:
Hi @aviral-mittal, I need to go through the process that lovekesh mentioned. I do not have any prior experience with automation. So it can need some time to review, learn and apply the same. I would connect with lovekesh for this findings and would give a proper estimation after that. Thanks.
Currently, the plugin includes vendor and build files in the version control, which increases the size of the repository to checkout and somewhat impacts the developer experience.
Additionally, when the plugin is published, it includes several files that add nothing besides bulking up the plugin; therefore, preferable to remove such files beforehand.
Here are several chores that could be considered:
@wordpress/*
packages.composer.*
,vendor/*/*/.editorconfig
,vendor/*/*/phpunit.
etc. from vendor files as they are not required in production release.readme.txt
fromREADME.md
instead of maintaining two different filed in VCS.The text was updated successfully, but these errors were encountered: