Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

karma-renamer-preprocessor

gjurgens572MIT0.0.1

A Karma plugin. Rename served files on the fly by renamer.

karma-plugin, karma-preprocessor, renamer

readme

karma-renamer-preprocessor

A Karma plugin. Rename served files on the fly.

Installation

npm install karma-renamer-preprocessor --save-dev

Configuration

Simple configuration

You just need to declare what files should be renamed

// karma.conf.js
module.exports = function(config) {
  config.set({
    preprocessors: {
      '**/*.js': ['renamer']
    },
    renamerPreprocessor: {
      // transforming the filenames
      transformPath: function(path) {
        return path.replace(/\.js$/, '.sufix.js');
      }
    }
  });
};

For more information on Karma see the homepage.