blob: bc4f4f21c9a88d93ce2e656be91726f97c983a76 [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001var copy = require('copy');
2
3copy(['**/*.json', '**/*.svg', '**/*.html'], 'lib', {
4 cwd: './src'
5}, function (err, file) {
6 // exposes the vinyl `file` created when the file is copied
7});