Giter Site home page Giter Site logo

gulp-vetocss's Introduction

gulp-vetocss

Gulp wrapper for VetoCSS: remove style blocks matching a specific selector from a stylesheet.

Installation

Run the following command:

npm install gulp-vetocss

And require it in your gulpfile.js like so:

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

Usage

Add a pipe to your style build process, for example from a Sass-compiled stylesheet:

var gulp = require('gulp');
var vetocss = require('gulp-vetocss');

gulp.task('styles', () => {
    return gulp.src('./scss/*.scss')
    // …your .pipe() to compile your Sass/SCSS
    .pipe(vetocss(['input::-webkit-details-marker']))
    // …other pipes (minification, save file, etc.)
});

Depending on your project, you might get quite a few selectors to drop in there. You can set this list in a top-level variable, or even an external file like .vetocss.config.js that you require:

// .vetocss.config.js
module.exports = [
    'input::-webkit-details-marker',
    /div\.(btn|button)/
];

// gulpfile.js
var gulp = require('gulp');
var vetocss = require('gulp-vetocss');
var vetocssConfig = require('./.vetocss.config'); // Or an array of selectors (string or RegExp)

gulp.task('styles', () => {
    return gulp.src('./scss/*.scss')
    // …your .pipe() to compile your Sass/SCSS
    .pipe(vetocss(vetocssConfig))
    // …other pipes (minification, save file, etc.)
});

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

gulp-vetocss's People

Contributors

chriskirknielsen avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.