Skip to content

Commit 232168f

Browse files
committed
Bump to version 1.3.7
Added initial-keyword plugin (shim for the CSS3 keyword). Added inline method (Issue peteboere#18). Added ability to escape declarations from aliasing or plugins by prefixing with tilde. Deprecated @variables syntax for @define. @variables still supported. Surpressed some benign PHP warning messages. Some internal cleaning up.
1 parent f065673 commit 232168f

15 files changed

+302
-134
lines changed

CssCrush.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* CSS Crush
55
* Extensible CSS preprocessor
66
*
7-
* @version 1.3.6
7+
* @version 1.3.7
88
* @license http://www.opensource.org/licenses/mit-license.php (MIT)
99
* @copyright Copyright 2010-2011 Pete Boere
1010
*
@@ -21,6 +21,7 @@
2121
*
2222
*/
2323

24+
require_once 'lib/Util.php';
2425
require_once 'lib/Core.php';
2526
CssCrush::init( dirname( __FILE__ ) );
2627

Plugins.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,7 @@ plugins[] = hsl-to-hex.php
2727
plugins[] = double-colon.php
2828

2929
; Non-standard composite pseudo classes
30-
plugins[] = hocus-pocus.php
30+
plugins[] = hocus-pocus.php
31+
32+
; CSS3 'initial' keyword shim
33+
plugins[] = initial.php

0 commit comments

Comments
 (0)