grunt-eco-iife

0.1.3 • Public • Published

grunt-eco-iife

Compiles Embedded CoffeeScript templates (.eco) into JavaScript IIFEs (Immediately Invoked Function Expressions).

Getting Started

This plugin requires Grunt ~0.4.x

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-eco-iife --save-dev

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

grunt.loadNpmTasks('grunt-eco-iife');

This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that you upgrade, but in case you can't please use v0.3.1.

Examples

Two most common ways of compiling all globbed paths into single file:

eco: {
  app: {
    files: {
      'path/to/templates.js': ['src/templates/**/*.eco']
    }
  }
}
eco: {
  app: {
    src: ['src/templates/**/*.eco'],
    dest: 'path/to/templates.js'
  }
}

If you need to compile .eco templates into individual files in some sort of destination folder, you can dynamiccally build path object:

eco: {
  app: {
    files: [{
      expand: true,
      src: ['src/templates/**/*.eco'],
      dest: 'path/to/templates',
      ext: '.js'
    }]
  }
}

If you ommit dest key, templates will be compiled right next to your .eco files.

To configure eco task simply define options object:

Acknowledgment

This grunt plugin is basically a copy of grunt-eco. I just didn't need any JST features. I only compiled templates in the form of Javascript or Coffeescript. That is why it is so close to the original.

Dependencies (1)

Dev Dependencies (4)

Package Sidebar

Install

npm i grunt-eco-iife

Weekly Downloads

2

Version

0.1.3

License

none

Last publish

Collaborators

  • scottcorgan