An open API service indexing awesome lists of open source software.

https://github.com/codeabinash/mini

A simple CSS minifier CLI tool made with C++
https://github.com/codeabinash/mini

Last synced: 10 months ago
JSON representation

A simple CSS minifier CLI tool made with C++

Awesome Lists containing this project

README

          

# Mini - The CSS Minifier
A simple tool for minifying CSS files.

![Version](https://img.shields.io/github/v/release/codeabinash/mini?color=limegreen)
![Release Date](https://img.shields.io/github/release-date/codeabinash/mini?color=limegreen)
![Tag](https://img.shields.io/github/tag/codeabinash/mini?color=limegreen)

## Installation
- Download it for 64bit windows x64 from [here](https://github.com/codeAbinash/mini/releases/download/v2.0.0/mini.exe).

- Or compile it yourself for your platform from source code.
```bash
$ git clone "https://github.com/codeAbinash/mini.git"
```
Open the project in your favorite IDE and compile it. For example, if you are using codeblocks then open the project file `mini.cbp` and compile it.

> Add it to your path variable so that you can use it from anywhere.

## How to use
```bash
$ mini "inputFile.css" "outputFile.css"
```
```bash
$ mini "inputFile.css" -o "outputFile.css"
```
```bash
$ mini "inputFile.css"
```
> Output fie will be named `inputFile.min.css`