Socket
Socket
Sign inDemoInstall

gulp-suitcss

Package Overview
Dependencies
404
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-suitcss

Preprocess and validate SUIT CSS components


Version published
Maintainers
2
Install size
31.4 MB
Created

Changelog

Source

3.0.0 (Apr 18, 2017)

  • Update suitcss-preprocessor to 4.0.0

Readme

Source

gulp-suitcss Build Status Build status

Preprocess CSS with the suitcss-preprocessor

Install

$ npm install gulp-suitcss --save-dev

Usage

const gulp = require('gulp');
const suitcss = require('gulp-suitcss');

gulp.task('default', () =>
  gulp.src('src/index.css')
    .pipe(suitcss({
      minify: true,
    }))
    .pipe(gulp.dest('build'))
);

API

suitcss([options])

options

See the suitcss preprocessor API.

Credit

Original version by Casear Chu

Keywords

FAQs

Last updated on 18 Apr 2017

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc