Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

karma-less-preprocessor

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-less-preprocessor

A Karma plugin. Compile LESS on the fly.

latest
Source
npmnpm
Version
0.3.3
Version published
Weekly downloads
282
-3.42%
Maintainers
1
Weekly downloads
 
Created
Source

karma-less-preprocessor

Configuration

options

  • save: [Boolean] Indicates whether result of compilation should be saved in project directory.
  • paths: [Array] of paths to folders that should be used for file lookup when using @import.
  • compress: [Boolean] Indicates whether css should be compressed or not.

options key could contain any other standard less options as well

For exmaple, rootpath option is specified in below example configuration

additionalData

  • additionalData:Object which can contain the Object modifyVars and/or the Object globalVars. With those you can tell the less compiler to add global variables or modify existing ones during compilation.

Example configuration

module.exports = (config) -> config.set {
        basePath: 'src'
        preprocessors:
                '**/*.coffee': ['coffee']
                'resources/**/*.less': ['less']

        files: [
                '**/*.coffee'
                'resources/less/index.less'
        ]

        coffeePreprocessor:
                options:
                        bare: true
                        sourceMap: false
                transformPath: (path) -> path.replace(/\.coffee$/, '.js')

        lessPreprocessor:
                options:
                        paths: ['resources/less']
                        save: true
                        rootpath: 'target/resources/img'
                additionalData:
                        modifyVars:
                                'bodyColor': 'grey'
                                'secondBoxColor': 'blue'
                        globalVars:
                                'globalBoxColor': 'red'
                transformPath: (path) -> path.replace(/\.less$/, '.compiled.css')

        
        browsers: ['Chrome']
        captureTimeout: 6000
        hostname: 'localhost'
        port: 9876

        plugins: [
                'karma-coffee-preprocessor'
                'karma-less-preprocessor'
                'karma-chrome-launcher'
        ]

        singleRun: false
}

Keywords

karma-plugin

FAQs

Package last updated on 27 Nov 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts