{"library":"rollup-plugin-match","title":"rollup-plugin-match","description":"A Rollup plugin that matches input files using glob patterns via fast-glob. Version 1.0.0 is stable with no recent updates. It integrates with Rollup to allow flexible file matching, often used in conjunction with other plugins like rollup-plugin-empty to generate multiple output chunks. Differentiators: simple API, leverages fast-glob performance, and minimal configuration.","language":"javascript","status":"active","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-match"],"cli":null},"imports":["const match = require('rollup-plugin-match');\nmodule.exports = { plugins: [match()] }","import match from 'rollup-plugin-match';","const match = require('rollup-plugin-match');\nmatch()"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// rollup.config.js\nconst match = require('rollup-plugin-match');\nconst empty = require('rollup-plugin-empty');\n\nmodule.exports = {\n  input: 'src/**/*.js',\n  plugins: [\n    empty({ silent: false, dir: 'dist' }),\n    match() // matches files based on input glob\n  ],\n  output: {\n    dir: 'dist',\n    format: 'es',\n    entryFileNames: '[name].js'\n  }\n};","lang":"javascript","description":"Configure Rollup to use match plugin with empty plugin for generating multiple output chunks.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}