gulp-angular-extender

0.1.0 • Public • Published

gulp-angular-extender Build Status NPM version Dependency Status

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

Readme

Keywords

none

Package Sidebar

Install

npm i gulp-angular-extender

Weekly Downloads

29

Version

0.1.0

License

none

Last publish

Collaborators

  • mariocasciaro