npm.io
0.0.3 • Published 12 years ago

ng-templates-brunch

Licence
Version
0.0.3
Deps
1
Vulns
0
Weekly
0
Install scriptsThis package runs scripts during installation (preinstall/install/postinstall)

Wrap templates in an AngularJS module for Brunch.IO
Dependency Status Stories in Ready

For each template, wrap around in a shared AngularJS module called templates by default with each template file's path as the template URL. See $templateCache for more information.

Installation

npm install --save ng-templates-brunch

Usage

  1. Set joinTo attribute for templates in config.coffee, e.g.
templates:
  joinTo:
    'templates.js': /^app/
  1. In your markup, include templates.js:
<script type="text/javascript" src="/templates.js"></script>
  1. Your app module must require an templates module:
angular.module('MyApp', [
  ...
  'templates'
  ...
]);
  1. Get a particular template by its path.
$routeProvider.when('/home', { templateUrl: 'app/home/home.html' });
  1. Run Brunch (e.g. brunch build)!

Options

module

Specify the module to place the templates in

Default: templates

plugins:
  ngTemplates:
    module: 'MyModule'