Skip to content

kevicency/karma-live-preprocessor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

karma-live-preprocessor

Preprocessor to compile LiveScript on the fly.

Installation

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

{
  "devDependencies": {
    "karma": "~0.10.0",
    "karma-live-preprocessor": "~0.2.0"
  }
}

You can simple do it by:

npm install karma-live-preprocessor --save-dev

Configuration

Following code shows the default configuration...

// karma.conf.js
module.exports = function(config) {
  config.set({
    preprocessors: {
      '**/*.ls': 'live'
    },

    livePreprocessor: {
      // options passed to the live compiler
      options: {
        bare: true
      },
      // transforming the filenames
      transformPath: function(path) {
        return path.replace(/\.js$/, '.ls');
      }
    }
  });
};

Based on karma-coffee-preprocessor

About

Preprocessor to compile LiveScript on the fly.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages