We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 29155c9 + 657e98d commit d7a7fefCopy full SHA for d7a7fef
.travis.yml
@@ -0,0 +1,4 @@
1
+language: node_js
2
+node_js:
3
+ - 0.8
4
+ - 0.10
Readme.md
@@ -1,4 +1,3 @@
-
# css-whitespace
Whitespace significant CSS to regular CSS. Typically used for [Rework](https://github.com/visionmedia/rework),
@@ -28,7 +27,7 @@ var css = compile('body\n color: #888\n');
28
27
body
29
padding: 50px
30
background: black
31
- colour: white
+ color: white
32
33
form
34
button
@@ -54,7 +53,7 @@ yields:
54
53
body {
55
padding: 50px;
56
background: black;
57
- colour: white;
+ color: white;
58
}
59
60
form button {
package.json
@@ -11,5 +11,8 @@
11
"mocha": "*",
12
"should": "*"
13
},
14
- "main": "index"
+ "main": "index",
15
+ "scripts": {
16
+ "test": "mocha --require should --reporter spec"
17
+ }
18
0 commit comments