├── .circleci └── config.yml ├── .eslintrc ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── files │ ├── test-2.txt │ └── test.txt └── gulpfile.js ├── index.js ├── lib └── gulp-copy.js ├── package.json └── test └── spec └── gulp-copy.spec.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaascuvelier/gulp-copy/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaascuvelier/gulp-copy/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaascuvelier/gulp-copy/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaascuvelier/gulp-copy/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaascuvelier/gulp-copy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaascuvelier/gulp-copy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaascuvelier/gulp-copy/HEAD/README.md -------------------------------------------------------------------------------- /example/files/test-2.txt: -------------------------------------------------------------------------------- 1 | a 2nd test -------------------------------------------------------------------------------- /example/files/test.txt: -------------------------------------------------------------------------------- 1 | some file -------------------------------------------------------------------------------- /example/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaascuvelier/gulp-copy/HEAD/example/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/gulp-copy'); 4 | -------------------------------------------------------------------------------- /lib/gulp-copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaascuvelier/gulp-copy/HEAD/lib/gulp-copy.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaascuvelier/gulp-copy/HEAD/package.json -------------------------------------------------------------------------------- /test/spec/gulp-copy.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klaascuvelier/gulp-copy/HEAD/test/spec/gulp-copy.spec.js --------------------------------------------------------------------------------