All Projects → ubirak → gulp-uglifycss

ubirak / gulp-uglifycss

Licence: MIT license
Gulp plugin to use uglifycss

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to gulp-uglifycss

Terser Webpack Plugin
Terser Plugin
Stars: ✭ 1,687 (+6929.17%)
Mutual labels:  uglify
Javascript Obfuscator
A powerful obfuscator for JavaScript and Node.js
Stars: ✭ 8,204 (+34083.33%)
Mutual labels:  uglify
minformat
gominfmt makes the Go code more compact to aid further compression; revert with gofmt
Stars: ✭ 19 (-20.83%)
Mutual labels:  uglify
phaser-typescript-webpack
Another Phaser CE boilerplate using TypeScript and Webpack.
Stars: ✭ 17 (-29.17%)
Mutual labels:  uglify
gulp-starter-kit
My Gulp Starter Kit
Stars: ✭ 91 (+279.17%)
Mutual labels:  uglify
minifier
Middleware to minify Html, CSS and Javascript responses
Stars: ✭ 15 (-37.5%)
Mutual labels:  uglify
uglify
PHP wrapper to execute uglify-js/clean-css node package or fallback to PHP alternatives
Stars: ✭ 16 (-33.33%)
Mutual labels:  uglify
gulp-penthouse
Gulp plugin for extracting critical path css
Stars: ✭ 14 (-41.67%)
Mutual labels:  gulp-plugins
gulp-spsync
Gulp plugin for synchronizing local files with a SharePoint library
Stars: ✭ 57 (+137.5%)
Mutual labels:  gulp-plugins
beginner-windows-npm-gulp-webdev-tutorial
Beginner guide for users on web development with node.js/npm + gulp terminal commands. You'll learn how to use other terminal commands like git, gulp, bower, yarn, and more!
Stars: ✭ 40 (+66.67%)
Mutual labels:  gulp-plugins
gulp-webdriver
gulp-webdriver is a gulp plugin to run selenium tests with the WebdriverIO testrunner
Stars: ✭ 77 (+220.83%)
Mutual labels:  gulp-plugins
gulp-texturepacker
Gulp plugin for TexturePacker
Stars: ✭ 12 (-50%)
Mutual labels:  gulp-plugins
gulp-iife
A Gulp plugin for wrapping JavaScript code in IIFEs.
Stars: ✭ 39 (+62.5%)
Mutual labels:  gulp-plugins
gulp-kraken
Gulp plugin to optimize all your images with the powerful Kraken.io API
Stars: ✭ 19 (-20.83%)
Mutual labels:  gulp-plugins
gulp-version-append
Gulp plugin to append version from package.json to static file url to avoid caching
Stars: ✭ 18 (-25%)
Mutual labels:  gulp-plugins
gulp-append-prepend
➕ Simple Gulp plugin to append/prepend.
Stars: ✭ 15 (-37.5%)
Mutual labels:  gulp-plugins
gulp-html
Gulp plugin for HTML validation, using the official Nu Html Checker (v.Nu)
Stars: ✭ 70 (+191.67%)
Mutual labels:  gulp-plugins

gulp-uglifycss

Gulp plugin to use UglifyCSS.

Build Status

Install

npm install --save gulp-uglifycss

Usage

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

gulp.task('css', function () {
  gulp.src('./styles/**/*.css')
    .pipe(uglifycss({
      "maxLineLen": 80,
      "uglyComments": true
    }))
    .pipe(gulp.dest('./dist/'));
});

Options

No specific options. You can use all the UglifyCSS options.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].