gulp-angular-extender

Extend AngularJS applications by injecting module dependencies at build time

Usage no npm install needed!

<script type="module">
  import gulpAngularExtender from 'https://cdn.skypack.dev/gulp-angular-extender';
</script>

README

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