JSPM

gulp-ccr-copy

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q33307F
  • License MIT

Copy assets and optionally remove or replace relative paths for files. A cascading configurable gulp recipe for gulp-chef.

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);