An open API service indexing awesome lists of open source software.

https://github.com/skilld-labs/drupal-cleanup

Composer plugin to remove files from Drupal packages
https://github.com/skilld-labs/drupal-cleanup

Last synced: 4 months ago
JSON representation

Composer plugin to remove files from Drupal packages

Awesome Lists containing this project

README

        

# drupal-cleanup
Composer plugin to remove files on Drupal packages

You can configure the plugin using the root package's composer.json extra field, like this:

"extra": {
"drupal-cleanup": {
"drupal-core": [
"modules/*/tests",
"modules/*/src/Tests",
"profiles/demo_umami",
"profiles/*/tests",
"profiles/*testing*"
],
"drupal-module": [
"tests",
"src/Tests"
],
"exclude": [
"web/modules/contrib/devel/.spoons"
]
}
}