npm.io
1.0.1 • Published 5 years ago

snowpack-plugin-copy

Licence
MIT
Version
1.0.1
Deps
1
Size
4 kB
Vulns
0
Weekly
0
Stars
4
DeprecatedThis package is deprecated

snowpack-plugin-copy

Install

npm install snowpack-plugin-copy -D

Usage

module.exports = {
  plugins: [
    [
      'snowpack-plugin-copy',
      {
        patterns: [
          {
            source: 'source/*.jpg',
            destination: 'destination',
            options: {},
          },
          {
            source: ['source/*.png', '!source/goat.png'],
            destination: 'destination',
          },
        ],
      },
    ],
  ],
};

API

The same as cpy.