🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

rollup-plugin-copier

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-copier

[![Build Status](https://img.shields.io/travis/com/marverix/rollup-plugin-copier/master.svg)](https://travis-ci.com/marverix/rollup-plugin-copier) [![Current Release](https://img.shields.io/github/release/marverix/rollup-plugin-copier.svg)](releases) [![L

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

rollup-plugin-copier

Build Status Current Release License: ISC

Simple Rollup.js plugin that copies desired files

Installation

npm install rollup-plugin-copier

Usage

In your rollup.config.js:

import copier from 'rollup-plugin-copier';

...

export default [
 {
  // some config
  plugins: [
    copier({
      items: [
        {
          src: 'some/sample/source.file',
          dest: 'will/be/copied.here'
        }
      ]
    })
  ]
 }
];

Options

  • items

    Required

    Array of items that should be copied

    Options for each item:

    • src

      Required

      Source path

    • dest

      Required

      Destination path

    • createPath

      Optional, Default false

      If path for destination file doesn't exist - create it.

  • hookOn

    Optional, Default buildEnd

    Which Rollup.js hook should be used.

  • verbose

    Optional, Default false

Authors

See also the list of contributors who participated in this project.

Thanks

This plugin is heavly inspired by rollup-plugin-copy (created by meuter), but it seems that it's not more developed/fixed.

License

This project is licensed under the ISC License - see the LICENSE file for details.

Keywords

rollup

FAQs

Package last updated on 31 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts