Skip to content

MohamedElmdary/mini-css

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mini-CSS

Mini-CSS is a simple compiler that compile css into minified css and combine css property.


For example

input code

body {
  color: blue;
}
span {
  color: blue;
}

output code

body,
span {
  color: blue;
}

How To Use:

requirements

  • nodejs
  • npm
$ git clone https://github.com/MohamedElmdary/mini-css
// npm
$ npm install

// yarn
$ yarn install
// npm
$ npm run test
$ npm run example

// yarn
$ yarn test
$ yarn example

About

tool to compile css to combined css properties

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published