0.0.9 • Published 10 years ago

gulp-edp v0.0.9

Weekly downloads
1
License
MIT
Repository
github
Last release
10 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

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago