gulp-angular-extender

Extend AngularJS applications by injecting module dependencies at build time


Keywords
gulpplugin, angular, module, extend
License
MIT
Install
npm install gulp-angular-extender@0.1.0

Documentation

Build Status NPM version Dependency Status

gulp-angular-extender

Extend AngularJS applications by injecting module dependencies at build time.

Install

Install with npm.

npm install --save-dev gulp-angular-extender

Examples

The code below, add "plugin1" and "plugin2" to the "myApp" module dependencies.

var gulp = require('gulp');
var gulpAngularExtender = require('gulp-angular-extender');


gulp.task('default', function () {
    gulp.src('assets/**/*.js')
        .pipe(gulpAngularExtender({
          "myApp": [
            "plugin1",
            "plugin2"
          ]
        }))
        .pipe(gulp.dest('out/'));
});

Take at look at angular-extender to know what exactly this task does.

License

MIT @ Mario Casciaro