1.0.2 • Published 11 months ago

css-comment-grouper v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

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]
1.0.2

11 months ago

1.0.1

12 months ago

1.0.0

12 months ago