{"library":"rollup-plugin-copier","title":"rollup-plugin-copier","description":"A Rollup plugin to copy files or directories during the build process. Version 1.1.0, released under ISC license. It supports configurable hook execution (default buildEnd), optional path creation, and verbose logging. Differentiated from alternatives like rollup-plugin-copy by being actively maintained and simpler in configuration.","language":"javascript","status":"active","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-copier"],"cli":null},"imports":["import copier from 'rollup-plugin-copier'","import copier from 'rollup-plugin-copier'","import type { RollupPluginCopierOptions } from 'rollup-plugin-copier'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// rollup.config.js\nimport copier from 'rollup-plugin-copier';\n\nexport default {\n  input: 'src/index.js',\n  output: { dir: 'dist', format: 'esm' },\n  plugins: [\n    copier({\n      items: [\n        { src: 'public/robots.txt', dest: 'dist/robots.txt' },\n        { src: 'assets/*', dest: 'dist/assets', createPath: true }\n      ],\n      verbose: true\n    })\n  ]\n};","lang":"typescript","description":"Configures rollup-plugin-copier to copy a single file and a glob pattern, with path creation enabled.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}