Giter Club home page Giter Club logo

yuglify's Introduction

yUglify

yuglify is a wrapper around UglifyJS and cssmin with the default YUI configurations on each of them.

Build Status

Build Status

CLI Usage

npm -g install @ziwer1/yuglify

yuglify has a very simple CLI interface to allow you to compress files from the command line.

yuglify ./lib/*.js #uses shell globbing, won't work on Windows

This will read all passed files and compress them (js or css) and write them back beside the original with the name altered to .min.js|css.

Required

npm install @ziwer1/yuglify
var yuglify = require('yuglify');

yuglify.jsmin('<string of source', function(err, smashed) {
    fs.writeFile('/path/to/file', smashed, 'utf8', function() {});
});

yuglify.cssmin('<string of source', function(err, smashed) {
    fs.writeFile('/path/to/file', smashed, 'utf8', function() {});
});

Purpose

This module is primarily designed to be used inside shifter.

Why not use the default Uglify?

We need to support the /*! license comment blocks when minifying, so we added a preprocessor to the code to pull them from the source, then place them back when the minification is complete.

We also needed to make sure that the file ends in a clean line ending for our combo servers. This way we ensure that other modules don't have to end with a semi-colon and the combohandler doesn't concat them together in a bad way.

We've also added support to add a semi-colon if the last character of the minified source is either a ) or a }.

The last thing this module does is provide the default config that we think is the most compatible with the way that YUI Compressor used to minify our files.

{
    mangle: true,
    squeeze: true,
    semicolon: true,
    lift_vars: false,
    mangle_toplevel: true,
    no_mangle_functions: true,
    max_line_length: 0
}

Testing

Currently, the tests for this module are just to make sure that they are exported properly. Shifter's test suite validates that these compressors are working as expected. Soon, we'll move them over to this repo too.

yuglify's People

Contributors

davglass avatar ziwer1 avatar sompylasar avatar alexnormand avatar johnarcher avatar natevw avatar

Forkers

ldtalent

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.