Skip to content

mariocasciaro/gulp-angular-extender

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Extend AngularJS applications by injecting module dependencies at build time

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published