0.1.1 • Published 9 years ago

grunt-prefix-css v0.1.1

Weekly downloads
3
License
-
Repository
github
Last release
9 years ago

grunt-prefix-css

Grunt task to prefix all rules from css-files with some selector

Getting Started

This plugin requires Grunt ~0.4.5

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-prefix-css --save-dev

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

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

The "prefix_css" task

Overview

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

grunt.initConfig({
  prefix_css: {
    options: {
      // Task-specific options go here.
    }
  },
});
 options: {
    prefix: '.test',
    fileSrc: 'test/fixtures/123.css',
    fileDest: 'test/tmp/123result.css',
    separator: '\n'
  }

Options

options.prefix

Type: String Default value: ', '

A string value that is used to prefix all of your css with.

options.fileSrc

Type: String Default value: '.'

A string value pointing to the source .css file.

options.fileDest

Type: String Default value: ','

options.separator

Type: String Default value: ','

Usage Examples

Default Options

grunt.initConfig({
  prefix_css: {
     options: {
        prefix: '.test',
        fileSrc: 'test/fixtures/123.css',
        fileDest: 'test/tmp/123result.css',
        separator: '\n'
      }
  },
});

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)