bmcclure/drupal-library-mapping

A helper for installing library assets for Drupal.

Installs: 18 057

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 1

Open Issues: 2

Type:composer-plugin

1.0.0 2021-11-17 18:08 UTC

This package is auto-updated.

Last update: 2024-04-17 23:41:48 UTC


README

A helper for installing library assets for Drupal.

By using Asset Packagist, you can already install Drupal assets into the right location.

But, what about packages that aren't named the way a Drupal module is expecting?

This package both includes common name mappings already, and allows you to specify your own in composer.json.

Then, it will symlink, copy, or move the mapped assets to the right location whenever they are installed or updated.

How to use the plugin

First, require "bmcclure/drupal-library-mapping".

Enable Asset Packagist support following their instructions.

Configure the following in extra:

"installer-types": ["library", "drupal-library", "bower-asset", "npm-asset"],
"installer-paths": {
    "libraries/{$name}": [
        "type:drupal-library",
        "type:bower-asset",
        "type:npm-asset"
    ]
}

Now simply require assets from Asset Packagist, and they'll be mapped appropriately.

Customizing the copy type

By default, the mapped plugins are copied.

Add the following to extras to customize the method used for mapping:

"drupal-library-mapping-type": "symlink"

Accepted values are "copy" (the default), "symlink", and "move".

Note that a side effect of using "move" is that composer will reinstall the package every time it runs.

Customizing the package name map

You may wish to map other library names to common ones.

You can add new mappings to the "drupal-library-mapping" key in extras.

Example:

"drupal-library-mapping": {
    "jquery-easing-original": "easing"
}