sesigl / gulp-extify

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gulp-extify Build Status NPM package version

An extjs-dependency plugin for gulp 3

Usage

First, install gulp-extify as dependency:

npm install --save gulp-extify

Then, add it to your gulpfile.js:

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

gulp.task('scripts', function(){
  gulp.src(['app/**/*.js'])
    .pipe(extify())
    .pipe(concat('scripts.js'))
    .pipe(gulp.dest('./build/'))
});

API

gulp-extify can be used to reorder your gulp.src files.

extify([, options])

options

Type: Object

Coming soon

About

License:MIT License


Languages

Language:JavaScript 100.0%