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

gulp-angular-templates

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-angular-templates

AngularJS template assembler for Gulp.js

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
123
decreased by-1.6%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-angular-templates

This plugins allows you to bundle templates directly in your application using the $templateCache service.

Install it with npm install gulp-angular-templates --save-dev.

Usage

var angularTemplates = require('gulp-angular-templates');

gulp.task('html', function () {
    return gulp.src('app/partials/**/*.html')
        .pipe(angularTemplates())
        .pipe(gulp.dest('./build/'));
});

API

angularTemplates(options)

options.basePath

Type: String

The path that should be prefixed to the path that was specified using gulp.src.

options.module

Type: String

The name of the module that will be used.

options.standalone

Type Boolean

Indicate whether the module name that was specified using options.module is intended to be standalone.

Keywords

FAQs

Package last updated on 07 Jul 2015

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