0.0.9 • Published 9 years ago

gulp-edp v0.0.9

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

gulp-edp

NPM version Downloads Dependencies

gulp with edp

Usage

var gulp = require('gulp');
var edp = require('gulp-edp');

var edpConfig = require('./edp-build-config');

gulp.task('edp', function () {
    return gulp.src(
        [
            'src/**',
            'dep/**',
            '!dep/**/{demo,demo/**}',
            '!dep/**/{test,test/**}',
            '*.html'
        ]
    )
    .pipe(edp(edpConfig))
    .pipe(gulp.dest('dist'));
})


gulp.task('default', ['edp']);

Config

exclude

Type: Array

Set the files to be excluded. match minimatch or Regular Expression.

getProcessors

Type: Function

Return: Array

Create the edp processors, return processor list.

Processors

The following processors are bundled with edp:

See Edp Build WIKI for more processors.

AMD Optimize

edprequriejs(r.js)amd-optimize
baseUrl
paths
packagesX
map
shimX
stream friendlyX
custom combineXX

Related

0.0.9

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago