grunt-ksscomb

1.0.4 • Public • Published

grunt-Ksscomb

Grunt plugin for sorting CSS properties in specific order with support for custom @includes.

Getting Started

This plugin requires Grunt 0.4.x.

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-ksscomb --save-dev

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

grunt.loadNpmTasks('grunt-ksscomb');

The "csscomb" task

Overview

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

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

Options

options.config

Type: String Default value: null

A string value that is used to specify custom-csscomb.json file path.

Usage Examples

  grunt.loadNpmTasks('grunt-ksscomb');
 
  // Define the configuration for all the tasks
  grunt.initConfig({
 
    ksscomb: {
      options: {
        config: '.ksscomb.json'
      },
      dynamic: {
        expand: true,
        cwd: 'styles/',
        src: ['**/*.scss'],
        dest: 'styles/',
        ext: '.scss'
      }
    },
 
  });
 
  grunt.registerTask('groupCSS', 'Group CSS into groups', function () {
    grunt.task.run([
      'ksscomb'
    ]);
  });

Dependents (0)

Package Sidebar

Install

npm i grunt-ksscomb

Weekly Downloads

4

Version

1.0.4

License

none

Last publish

Collaborators

  • mihnutzen