Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-angular-extender

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-angular-extender

Extend AngularJS applications by injecting module dependencies at build time

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
29
decreased by-6.45%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

FAQs

Package last updated on 14 Feb 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc