Mini-CSS is a simple compiler that compile css into minified css and combine css property.
input code
body {
color: blue;
}
span {
color: blue;
}
output code
body,
span {
color: blue;
}
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