npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

grunt-uniator

v0.1.0

Published

Combine style-tags and CSS-files linked by HTML-file into one or several files or style-tags

Downloads

10

Readme

grunt-uniator

Combine style-tags and CSS-files linked by HTML-file into one or several files or style-tags.

Grunt plugin for uniator

NPM version Build Status Built with Grunt

Getting Started

This plugin requires Grunt >=0.4.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-uniator --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-uniator');

The "uniator" task

Overview

The uniator task is multi task.

In your project's Gruntfile, add a section named uniator to the data object passed into grunt.initConfig().

grunt.initConfig({
    uniator: {
        options: {
            // Task-specific options go here.
        },
        your_target: {
            // Target-specific file lists and/or options go here.
        }
    }
});

Options

The supported options are equal to settings that can be passed into uniator.collectCssInFile() (see uniator API for details).

The most important options are mentioned below.

options.cssFile

Type: String
Default value: style

Base of name of file into which collected styles will be saved. Should not contain an extension. Can contain path, for example path/to/collected.

options.destDir

Type: String
Default value: directory of source HTML-file

Path to directory relative to which files should be created.

options.encoding

Type: String
Default value: utf8

Encoding of source files.

options.include

Type: Boolean
Default value: false

Whether collected styles should be included into contents of HTML-file.

options.minifyCss

Type: Boolean | Object
Default value: false

Whether collected styles should be minified.

Object as option value can be used to specify options for minification (see How to use clean-css programmatically?).

options.removeSourceFile

Type: Boolean
Default value: false

Whether collected source CSS-files should be removed.

options.skipCssFile

Type: Array | String

A CSS-file or list of CSS-files that should not be collected. Each file can be specified by name or by path. If file has .css extension the extension can be omitted.

options.updateUrl

Type: Boolean | Function
Default value: false

Whether URLs found in CSS-files should be updated to be accessible from destination file. A function can be used as the option value. In the latter case the function will be called instead of predefined function to get new URL. If the function returns a string value, that value will be used as new URL. A non-string value returned by the function will be ignored (i.e. the source URL will not be changed). Data object will be passed into the function (see getUpdatedUrl for details).

Usage Examples

Combine all styles from HTML-file into one file style.css

grunt.initConfig({
    uniator: {
        combine: {
            src: ["path/to/source/index.html"]
        }
    }
});

Combine and minify all styles from HTML-file, save styles into path/to/out/css/combined.css, update URLs in result CSS-file, create new HTML-file path/to/out/processed.html, remove source CSS-files

grunt.initConfig({
    uniator: {
        combine_minify: {
            options: {
                cssFile: "css/combined",
                destDir: "path/to/out",
                minifyCss: true,
                removeSourceFile: true,
                updateUrl: true
            },
            src: ["source.html"],
            dest: "path/to/out/processed.html"
        }
    }
});

Combine and minify all styles from HTML-file besides plugins.css and controls.css, include styles into source HTML-file

grunt.initConfig({
    uniator: {
        combine_minify_include: {
            options: {
                include: true,
                minifyCss: true,
                skipCssFile: ["plugins", "controls"]
            },
            src: ["index.html"]
        }
    }
});

Related projects

If you need more advanced control over files combining, try one of the following plugins/tools:

Also you may find useful:

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

  • 0.1.0 / 2016-03-21

    • Add support for Grunt 1.0.
  • 0.0.3 / 2014-05-05

  • 0.0.2 / 2014-02-20

    • Update uniator package to 0.0.2
    • Add release tasks in Gruntfile

License

Copyright (c) 2014-2016 Denis Sikuler
Licensed under the MIT license.