{"library":"rollup-copy-plugin","title":"rollup-copy-plugin","description":"A simple Rollup plugin that copies files from source to destination during the build process. Version 0.1.0 is the initial and only release. It copies files once when Rollup starts; subsequent changes are not watched. This is a minimal plugin for static file copying, in contrast to more feature-rich alternatives like rollup-plugin-copy that support glob patterns and watch mode. It is designed for simple use cases where files need to be placed in the output directory without transformation.","language":"javascript","status":"maintenance","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-copy-plugin"],"cli":null},"imports":["import copyPlugin from 'rollup-copy-plugin'","const copyPlugin = require('rollup-copy-plugin')","import copyPlugin from 'rollup-copy-plugin'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// rollup.config.js\nimport copyPlugin from 'rollup-copy-plugin'\n\nexport default {\n  input: 'src/index.js',\n  output: {\n    dir: 'dist',\n    format: 'es'\n  },\n  plugins: [\n    copyPlugin({\n      './src/static/data.json': './dist/data.json',\n      './src/assets/logo.png': './dist/assets/logo.png'\n    })\n  ]\n}","lang":"javascript","description":"Rollup configuration using rollup-copy-plugin to copy two files from src to dist.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}