Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sgsavu/tailwindcss-parser-cli
https://github.com/sgsavu/tailwindcss-parser-cli
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sgsavu/tailwindcss-parser-cli
- Owner: sgsavu
- License: gpl-3.0
- Created: 2024-08-27T15:15:26.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-27T15:19:04.000Z (3 months ago)
- Last Synced: 2024-08-27T16:54:09.812Z (3 months ago)
- Language: Go
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## Setup Instructions
1. **Install dependencies**:
```bash
npm install
```2. **Build the project**:
```bash
go build .
```3. **Run the CLI tool**:
```bash
./tailwindcss-parser-cli "w-24"
```## `--minify` Flag
The `--minify` flag is used to reduce the size of the output by removing unnecessary characters, such as whitespace and comments. This is especially useful for optimizing files for production, where smaller file sizes can lead to faster load times and better performance.
### Usage
To use the `--minify` flag with the `tailwindcss-parser-cli`, include it in your command like this:
```bash
./tailwindcss-parser-cli --minify "w-24"
```