0.0.2 • Published 10 years ago

karma-reconfig-preprocessor v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

karma-reconfig-preprocessor

A Karma plugin. To modify requirejs config files..

Installation

npm install karma-reconfig-preprocessor --save-dev

Configuration

The simplest configuration

You just need to declare what files should be reconfigured

// karma.conf.js
module.exports = function(config) {
  config.set({
    preprocessors: {
      '**/*-config.js': ['reconfig']
    }
  });
};

For more information on Karma see the homepage.