New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

gulp-css-preprocessor

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-css-preprocessor

Less/Scss/Sass/Stylus plugin for gulp based on file extensions

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

gulp-css-preprocessor NPM version

Less/Scss/Sass/Stylus plugin for gulp. It uses a suitable preprocessor for files based on their extensions

Install with npm

npm install gulp-css-preprocessor

Usage

gulp.src('styles/**/*')
    .pipe(gulpCssPreprocessor())
    .pipe(gulpConcatCss('style.css'))
    .pipe(gulp.dest('compiled/styles'));

API

gulpCssPreprocessor(params)

params

Object with the following parameters

less

Type: Object

Params for process .less files by less-preprocessor

scss

Type: Object

Params for process .scss files by scss-preprocessor

sass

Type: Object

Params for process .sass files by scss-preprocessor

Note: .sass process by scss-preprocessor with option indentedSyntax: true

stylus

Type: Object

Params for process .styl files by stylus-preprocessor

License

� Oleg Istomin 2015. Released under the MIT license

Keywords

gulpplugin

FAQs

Package last updated on 22 May 2017

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