0.1.0 • Published 6 years ago

rollup-copy-plugin v0.1.0

Weekly downloads
205
License
MIT
Repository
github
Last release
6 years ago

rollup-copy-plugin

Simple rollup plugin to copy files.

Usage

NB: This plugin only copies files once when rollup start, any later changes will not be copied (before you start rollup again).

import copyPlugin from 'rollup-copy-plugin';

export default {
  // ...
  plugins: [
    // ...
    copyPlugin({
      './src/test1.txt': './dist/test1.txt',
      './src/test2.txt': './dist/test2.txt',
    }),
    // ...
  ],
  // ...
};