0.1.25 • Published 2 years ago

grunt-betajs-templates v0.1.25

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
2 years ago

grunt-betajs-templates 0.1.24

Code Climate NPM Gitter Chat

Build BetaJS templates.

Getting Started

This plugin requires Grunt.

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-betajs-templates --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-betajs-templates');

Basic Usage

Overview

In your project's Gruntfile, add a section named betajs_templates to the data object passed into grunt.initConfig().

Options

The namespace of each betajs_templates namespace must be specified. See any of the examples for guidance on specifying the namespace option.

grunt.initConfig({
  betajs_templates: {
    dist: {
      files: {
        "dest/betajs-templates.js": [
          "src/my_first_template.html",
          "src/my_second_template.html",
          "src/my_last_templates.html"
        ]
      },
      options: {
        namespace: 'App.Templates'
      }
    },
  },
});

Naturally, it is possible to specify a different namespace for each subtask. Multiple namespaces for different subtasks can be seen in the example below.

grunt.initConfig({
  betajs_templates: {
    dashboard: {
      files: {
        "dest/betajs-dashboard-templates.js": [
          "dashboard/*.html",
        ]
      },
      options: {
        namespace: 'App.Dashboard'
      }
    },
    homepage: {
      files: {
        "dest/betajs-homepage-templates.js": [
          "homepage/*.html"
        ]
      },
      options: {
        namespace: 'App.Homepage'
      }
    }
  }
});

Links

ResourceURL
Homepagehttps://github.com/betajs/grunt-betajs-templates
Gitgit://github.com/betajs/grunt-betajs-templates.git
Repositoryhttps://github.com/betajs/grunt-betajs-templates
Bloghttps://blog.betajs.com
Twitterhttps://twitter.com/thebetajs
Gitterhttps://gitter.im/betajs/grunt-betajs-templates

Compatability

TargetVersions
NodeJS4.0 - Latest

Main Contributors

  • Oliver Friedmann
  • Victor Lingenthal
  • Matt McNaughton

License

Apache-2.0

Credits

This software may include modified and unmodified portions of:

  • Underscore, MIT Software License, (c) 2009-2013 Jeremy Ashkenas, DocumentCloud
0.1.25

2 years ago

0.1.24

4 years ago

0.1.23

5 years ago

0.1.22

6 years ago

0.1.21

6 years ago

0.1.20

6 years ago

0.1.19

7 years ago

0.1.18

7 years ago

0.1.16

7 years ago

0.1.15

7 years ago

0.1.13

7 years ago

0.1.12

7 years ago

0.1.11

7 years ago

0.1.10

8 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

9 years ago

0.1.5

9 years ago

0.1.3

9 years ago

1.0.0

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago