rollup-plugin-cpy

Rollup plugin to easily copy files and folders

MIT 4 个版本
安装
npm install rollup-plugin-cpy
yarn add rollup-plugin-cpy
pnpm add rollup-plugin-cpy
bun add rollup-plugin-cpy
README

rollup-plugin-cpy

JavaScript Style Guide MIT License 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' },
      ]),
]

...

License

This project is licensed under the MIT license.

版本列表
2.0.1 2019-07-14
2.0.0 2019-07-02
1.1.0 2018-10-12
1.0.0 2018-03-25