sindresorhus / gulp-strip-css-comments

Strip comments from CSS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gulp-strip-css-comments

Strip comments from CSS using strip-css-comments

Install

npm install --save-dev gulp-strip-css-comments

Usage

import gulp from 'gulp';
import stripCssComments from 'gulp-strip-css-comments';

export default () => (
	gulp.src('src/app.css')
		.pipe(stripCssComments())
		.pipe(gulp.dest('dist'))
);

stripCssComments(options?)

options

Type: object

See the strip-css-comments options.

About

Strip comments from CSS

License:MIT License


Languages

Language:JavaScript 100.0%