leonitousconforti/tinyburg

View on GitHub
common/config/rush/rush-plugins.json

Summary

Maintainability
Test Coverage
/**
 * This configuration file manages Rush's plugin feature.
 */
{
    "$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush-plugins.schema.json",
    "plugins": [
        /**
         * Each item defines a plugin configuration used by Rush.
         */
        // {
        //   /**
        //    * The name of the rush plugin package.
        //    */
        //   "packageName": "@scope/my-rush-plugin",
        //   /**
        //    * The name of the plugin provided by rush plugin package
        //    */
        //   "pluginName": "my-plugin-name",
        //   /**
        //    * Autoinstaller name used to install the plugin.
        //    */
        //   "autoinstallerName": "plugins"
        // }
        {
            "packageName": "@gigara/rush-github-action-build-cache-plugin",
            "pluginName": "rush-github-action-build-cache-plugin",
            "autoinstallerName": "rush-github-action-cache"
        }
    ]
}