Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 621 Bytes

README.md

File metadata and controls

49 lines (34 loc) · 621 Bytes

css-comment-grouper will group css properties by categories using comments.

Installation

NPM:

npm install css-comment-grouper

Import

import { groupCSS } from 'css-comment-grouper';

Usage

import { groupCSS } from 'css-comment-grouper';

groupCSS(`.box {
    display: flex;
    font-size: 20px;
    width: 50px;
}`)

//  output: .box {
//      /* display and visibility */
//      display: flex;
// 
//      /* box model */
//      width: 50px;
// 
//      /* typography */
//      font-size: 20px;
//  }

CLI Command

css-comment-grouper

groupcss [options] [rootDir]