0.1.0 • Published 10 years ago

grunt-css-absolute-uri v0.1.0

Weekly downloads
-
License
-
Repository
github
Last release
10 years ago

grunt-css-absolute-uri

Very simple replace uris in css files.

Getting Started

This plugin requires Grunt ~0.4.4

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-css-absolute-uri --save-dev

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

grunt.loadNpmTasks('grunt-css-absolute-uri');

The "css_absolute_uri" task

Overview

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

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

Options

options.absoluteUri

Type: String Required

A string value with your absolute uri.

options.escapeFormats

Type: String Default value: null

A list of string value that you escape, for example, fonts uris (.eto, woff, etc).

Usage Examples

Default

In this example, all uris from files file_css_1.css and file_css_2.css will change to

url("http://cdn.test.com/images/jquery-ui/#####.png")
grunt.initConfig({
  css_absolute_uri: {
    options: {
        absoluteUri: 'http://cdn.test.com/images/jquery-ui/'
    },
    files: {
        'tmp/file_1_and_2.css': ['test/fixtures/file_css_1.css', 'test/fixtures/file_css_2.css']
    }
  }
});

Escape Formats

In this example, uris with '.eot', '.ttf', '.svg', '.woff' are ignored, all others will be replaced.

grunt.initConfig({
  css_absolute_uri: {
    options: {
        absoluteUri: 'http://cdn.test.com/images/jquery-ui/',
        escapeFormats: ['.eot', '.ttf', '.svg', '.woff']
    },
    files: {
        'tmp/ignored.css': ['test/fixtures/file_css_1.css', 'test/fixtures/file_css_2.css']
    }
  },
});

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

(Nothing yet)

0.1.0

10 years ago