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
- Host: GitHub
- URL: https://github.com/skilld-labs/drupal-cleanup
- Owner: skilld-labs
- License: mit
- Created: 2020-06-02T22:08:27.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-08T12:24:33.000Z (about 1 year ago)
- Last Synced: 2024-10-30T03:42:48.298Z (7 months ago)
- Language: PHP
- Homepage:
- Size: 7.81 KB
- Stars: 3
- Watchers: 26
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# drupal-cleanup
Composer plugin to remove files on Drupal packagesYou 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"
]
}
}