skilldlabs/drupal-cleanup

Removes files on Drupal packages.

Installs: 37 018

Dependents: 1

Suggesters: 0

Security: 0

Stars: 3

Watchers: 26

Forks: 1

Open Issues: 1

Type:composer-plugin

1.4 2023-12-21 15:27 UTC

This package is auto-updated.

Last update: 2024-04-23 15:52:17 UTC


README

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"
    ]
  }
}