Dave Rolsky
/
0.85
(DROLSKY on 2025-04-27)
0.84
(DROLSKY on 2023-12-10)
0.83
(DROLSKY on 2022-11-19)
0.82
(DROLSKY on 2022-04-15)
0.81
(DROLSKY on 2022-02-17)
0.20
(JSWARTZ on 2014-05-19)
0.19
(JSWARTZ on 2014-03-07)
0.18
(JSWARTZ on 2013-09-21)
0.17
(JSWARTZ on 2013-03-11)
0.16
(JSWARTZ on 2012-10-22)
0.15
(JSWARTZ on 2012-10-12)
0.14
(JSWARTZ on 2012-10-10)
0.13
(JSWARTZ on 2012-09-30)
0.12
(JSWARTZ on 2012-09-27)
0.11
(JSWARTZ on 2012-09-21)
0.10
(JSWARTZ on 2012-09-12)
0.09
(JSWARTZ on 2012-09-11)
0.08
(JSWARTZ on 2012-09-10)
0.07
(JSWARTZ on 2012-09-05)
0.06
(JSWARTZ on 2012-09-03)
'
0.80
(DROLSKY on 2021-11-26)
0.79
(DROLSKY on 2021-11-26)
0.78
(DROLSKY on 2020-04-25)
0.77-TRIAL DEV
(DROLSKY on 2020-01-04)
0.76-TRIAL DEV
(DROLSKY on 2019-12-25)
0.75
(DROLSKY on 2019-12-24)
0.74
(DROLSKY on 2019-05-24)
0.73
(DROLSKY on 2019-01-20)
0.72
(DROLSKY on 2018-12-20)
0.71
(DROLSKY on 2018-09-12)
0.70
(DROLSKY on 2018-04-12)
0.69
(DROLSKY on 2017-10-07)
0.68
(DROLSKY on 2017-09-29)
0.67
(DROLSKY on 2017-09-18)
0.66
(DROLSKY on 2017-09-17)
0.65
(DROLSKY on 2017-08-01)
0.64
(DROLSKY on 2017-07-31)
0.63
(DROLSKY on 2017-07-23)
0.62
(DROLSKY on 2017-07-20)
0.61
(DROLSKY on 2017-07-07)
0.60
(DROLSKY on 2017-07-03)
0.59
(DROLSKY on 2017-05-14)
0.58
(DROLSKY on 2017-03-11)
0.57
(DROLSKY on 2017-02-20)
0.56
(DROLSKY on 2017-02-01)
0.55
(DROLSKY on 2016-11-01)
0.54
(DROLSKY on 2016-10-16)
0.53
(DROLSKY on 2016-10-10)
0.52
(DROLSKY on 2016-09-19)
0.51
(DROLSKY on 2016-09-19)
0.50
(DROLSKY on 2016-09-18)
0.49
(DROLSKY on 2016-07-22)
0.48
(DROLSKY on 2016-06-16)
0.47
(DROLSKY on 2016-05-02)
0.46
(DROLSKY on 2016-04-18)
0.45
(DROLSKY on 2016-04-11)
0.44
(DROLSKY on 2016-04-11)
0.43
(DROLSKY on 2016-03-28)
0.42
(DROLSKY on 2016-03-10)
0.41
(DROLSKY on 2016-03-04)
0.40
(DROLSKY on 2016-02-21)
0.39
(DROLSKY on 2016-02-13)
0.38
(DROLSKY on 2016-01-11)
0.37
(DROLSKY on 2015-12-03)
0.36
(DROLSKY on 2015-12-02)
0.35
(DROLSKY on 2015-12-02)
0.34
(DROLSKY on 2015-12-02)
0.33-TRIAL DEV
(DROLSKY on 2015-11-30)
0.32
(DROLSKY on 2015-11-19)
0.31
(DROLSKY on 2015-11-17)
0.30
(DROLSKY on 2015-09-14)
0.29
(DROLSKY on 2015-08-15)
0.28
(DROLSKY on 2015-08-07)
0.27
(DROLSKY on 2015-07-05)
0.26
(DROLSKY on 2015-06-29)
0.25
(DROLSKY on 2015-03-31)
0.24
(DROLSKY on 2014-11-06)
0.23
(DROLSKY on 2014-11-06)
0.22
(DROLSKY on 2014-11-05)
0.21
(DROLSKY on 2014-11-05)
0.05
(JSWARTZ on 2012-08-21)
0.04
(JSWARTZ on 2012-08-15)
0.03
(JSWARTZ on 2012-07-24)
0.02
(JSWARTZ on 2012-07-03)
0.01
(JSWARTZ on 2012-06-17)
Code-TidyAll-0.34
River stage two
• 34 direct dependents
• 50 total dependents
40 ++
/
node_modules/cssunminifier/README.md
CSS Unminifier
A simple utility written in javascript for node.js to unminify CSS. The script is converted from the MrColes.com browser-based css unminifier .
Install the script with npm:
npm install -g cssunminifier
Run this to print out an unminified version of a CSS file named style.min.css:
cssunminifier style.min.css
Additional examples
Save the output to a file:
cssunminifier style.min.css style.css
Change the default tab width from 4 spaces to 8:
cssunminifier -w=8 style.min.css
Save the output to a file, reading from stdin:
cat style.mins.css | cssunminifier - style.css
Read a file from the web:
curl http://mrcoles.com/media/css/base/screen.css | cssunminifier - | less
Notes
You must have node installed to run this script. You can install it with something like homebrew brew install node or manually . Also, here’s a link to Node Package Manager .
The code for this project lives on github .