0.4.2 • Published 12 years ago

grunt-consolidate-css v0.4.2

Weekly downloads
25
License
-
Repository
github
Last release
12 years ago

grunt-consolidate-css

Consolidates and minifies your CSS files on a per-page basis

Getting Started

Documentation

Setting up

Modify your grunt.js file by adding the following line:

grunt.loadNpmTasks('grunt-consolidate-css');

Then add some configuration for the plugin like so:

grunt.initConfig({
    ...
    consolidateCss: {
      app: {
        src: ['path/to/html/files/*.html', 'path/to/html/files/*.php'],
        options: {
            min: true
        }
      }
    },
    ...
});

Then just run grunt consolidateCss.

Basic output

Your files will be modified from something like this:

<link rel="stylesheet" type="text/css" href="file2.css">
<link rel="stylesheet" type="text/css" href="file1.css">
<link rel="stylesheet" type="text/css" href="subdir/file2.css">

into something like this:

<link rel="stylesheet" type="text/css" href="css.min/file1,file2,subdir$file2.min.css">

with all the files consolidated and minified using YUICompressor.

Grouping files

If you want to group CSS files together into separate outputs, just leave a blank line between the <link> tags, e.g.

<link rel="stylesheet" type="text/css" href="file2.css">
<link rel="stylesheet" type="text/css" href="file1.css">

<link rel="stylesheet" type="text/css" href="subdir/file2.css">
<link rel="stylesheet" type="text/css" href="subdir/file3.css">

will become

<link rel="stylesheet" type="text/css" href="css.min/file1,file2.min.css">
<link rel="stylesheet" type="text/css" href="css.min/subdir$file2,subdir$file3.min.css">

Cross-page validation

The plugin is slightly strict about how you treat your CSS files, which seems like an acceptable trade-off against not needing to configure your consolidation at all.

It will detect link tags on different pages that contain the same CSS files, but in a different order and fail your build until you fix it. This ensures that the same group of CSS files produces the same output, cached across pages in the browser.

Why not just reorder them automatically? Because order in CSS can often matter, and it's better to avoid the possibility of a tool automatically generating a hard-to-debug layout problem altogether by forcing you to decide on the order explicitely.

Options

  • min Toggles minification of the CSS. It's true by default. If false, then the files will only be concatenated.
  • yuijarpath YUICompressor 2.4.7 comes build-in, but pass the path to a jar of your own here to override it.
  • cssdir The subdirectory that sits alongside the processed HTML that will hold the CSS. By default this will either be css or css.min.
  • pathPrefix This is a prefix added to all CSS link URLs, e.g. a domain name. Sometimes it's useful to use absolute URLs on your test environment.

Release History

0.1.0 - First working version.

0.4.2

12 years ago

0.4.1

12 years ago

0.4.0

12 years ago

0.3.1

12 years ago

0.2.1

12 years ago

0.2.0

12 years ago

0.1.2

12 years ago

0.1.1

12 years ago

0.1.0

12 years ago