https://github.com/markusfisch/csspack
A collection of short and simple solutions for compressing CSS data
https://github.com/markusfisch/csspack
Last synced: 7 months ago
JSON representation
A collection of short and simple solutions for compressing CSS data
- Host: GitHub
- URL: https://github.com/markusfisch/csspack
- Owner: markusfisch
- Created: 2011-10-06T19:00:30.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2013-02-03T16:55:32.000Z (over 13 years ago)
- Last Synced: 2023-03-11T13:38:03.564Z (about 3 years ago)
- Language: Shell
- Homepage:
- Size: 102 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Various implementations of a short and simple CSS compressor
============================================================
Why?
----
Because I searched for a simple and portable offline solution and
couldn't find anything suitable.
What is it good for?
--------------------
If you like to organize your style sheets in many files and use
some kind of synchronization process (rsync, Makefile, etc.), you
need a compressor that fits into that chain.
Which one?
----------
The output of all solutions is equivalent. Choose the one that fits
into your environment. If you're looking for performance, gawk seems
to be fastest.
What is compressed?
-------------------
Comments, new lines, and superfluous white space is removed. Combining
longhand statements into shorthand statements is something I like to
do myself.