Package Exports
- gulp-ccr-copy
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-ccr-copy) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-ccr-copy
Copy assets and optionally remove or replace relative paths for files. A cascading configurable gulp recipe for gulp-chef.
Install
$ npm install --save-dev gulp-chef gulp-ccr-copy
Recipe
Copy files
Ingredients
API
config.src
Source files to copy.
config.dest
Destination path to store copied files.
config.faltten
Optional. Remove or replace relative paths for files. Defaults to false.
Usage
var gulp = require('gulp');
var chef = require('gulp-chef');
var meals = chef({
src: 'src/',
dest: 'dist/',
copy: {
src: ['**/*.{{eof,jpeg,jpg,png,svg,ttf,webp,woff}'],
flatten: true
}
});
gulp.registry(meals);