# broccoli-select **Repository Path**: mirrors_mjackson/broccoli-select ## Basic Information - **Project Name**: broccoli-select - **Description**: A Broccoli plugin for selecting files based on glob patterns - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-05-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## broccoli-select A [Broccoli](https://github.com/joliss/broccoli) plugin that enables greater flexibility when selecting files based on glob patterns. ### Usage ```js var select = require('broccoli-select'); var templatesTree = select('templates', { // A list of glob patterns of files to select as input. // May be ommitted to select all files in the input tree. // May also be just "files" instead of "acceptFiles". acceptFiles: [ '**/*.hbs' ], // A list of glob patterns that will not be included as input. rejectFiles: [ 'ignore-me.hbs' ], // The output directory for all selected files. outputDir: '/files/go/here' }); ``` ### License MIT