Skip to content

Commit d7a7fef

Browse files
committed
Merge branch 'master' of github.com:visionmedia/css-whitespace
2 parents 29155c9 + 657e98d commit d7a7fef

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
language: node_js
2+
node_js:
3+
- 0.8
4+
- 0.10

Readme.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# css-whitespace
32

43
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');
2827
body
2928
padding: 50px
3029
background: black
31-
colour: white
30+
color: white
3231

3332
form
3433
button
@@ -54,7 +53,7 @@ yields:
5453
body {
5554
padding: 50px;
5655
background: black;
57-
colour: white;
56+
color: white;
5857
}
5958

6059
form button {

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,8 @@
1111
"mocha": "*",
1212
"should": "*"
1313
},
14-
"main": "index"
14+
"main": "index",
15+
"scripts": {
16+
"test": "mocha --require should --reporter spec"
17+
}
1518
}

0 commit comments

Comments
 (0)