Skip to content
This repository has been archived by the owner on Jul 3, 2019. It is now read-only.
/ rollup-plugin-cpy Public archive

rollup plugin to easily copy files and folders

License

Notifications You must be signed in to change notification settings

shrynx/rollup-plugin-cpy

Repository files navigation


rollup-plugin-cpy

JavaScript Style Guide code style: prettier MIT License rollup-plugin-cpy-status npm version

rollup plugin to easily copy files and folders.

Installation

  • yarn
yarn add -D rollup-plugin-cpy
  • npm
npm i -D rollup-plugin-cpy

Usage

This plugin uses cpy by @sindresorhus.

All the options map to the cpy package apart from verbose.

It takes a config object

{
  files: string | glob | Array<string & glob>
  dest: string,
  options: {
    verbose: boolean,
    ...restOptions
  }
}

The verbose option if set to true print out each file copying log on console.

restOptions are same as options passed to cpy

import copy from 'rollup-plugin-cpy'

...

plugins: [
  ...
  copy({
    files: ['src/*.png', '!src/goat.png'],
    dest: 'dist',
    options: {
      verbose: true,
      ...
    }
  })
]

...

It can also take an array of above mentioned config object

import copy from 'rollup-plugin-cpy'

...

plugins: [
  ...
  copy([
        { files: 'src/**/*.png', dest: './dist/images' },
        { files: 'src/**/*.mp3', dest: './dist/audio' },
        { files: 'src/**/*.webm', dest: './dist/video' },
      ]),
]

...

About

rollup plugin to easily copy files and folders

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •