karma-eco-preprocessor

0.1.3 • Public • Published

karma-eco-preprocessor

Preprocessor to compile ECO Templates. Source code derived from Karma HTML2JS Preprocessor

Installation

The easiest way is to keep karma-eco-preprocessor as a devDependency in your package.json.

{
  "devDependencies": {
    "karma": "~0.10",
    "karma-eco-preprocessor": "~0.1"
  }
}

You can simple do it by:

npm install karma-eco-preprocessor --save-dev

Configuration

Following code shows the default configuration...

// karma.conf.js
module.exports = function(config) {
  config.set({
    preprocessors: {
      '**/*.eco': ['eco']
    },
 
    ecoPreprocessor: {
      // options passed to the eco compiler
      options: {
        baseTemplatePath: path.join(__dirname, 'app/assets/templates'),
        enableJSTGlobalVariable: true
      },
      // transforming the filenames
      transformPath: function(path) {
        return path.replace(/\.js$/, '.eco');
      }
    }
  });
};

For more information on Karma see the homepage.

Readme

Keywords

none

Package Sidebar

Install

npm i karma-eco-preprocessor

Weekly Downloads

3

Version

0.1.3

License

MIT

Last publish

Collaborators

  • settinghead