Skip to content

Commit 14899c9

Browse files
committed
Merge pull request #368 from nschonni/add-grunt-build
First cut of Grunt build
2 parents bff759b + c996466 commit 14899c9

File tree

13 files changed

+550
-44
lines changed

13 files changed

+550
-44
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This file is for unifying the coding style for different editors and IDEs
2+
# editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
indent_style = space
11+
indent_size = 4

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
csslint.pnproj
2-
build/
1+
csslint.pnproj
2+
build/
3+
node_modules/

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: node_js
22
node_js:
3-
- 0.8
4-
before_install: "npm install -g yuitest"
5-
script: "ant test"
3+
- "0.8"
4+
- "0.10"
5+
before_install:
6+
- npm install -g grunt-cli

0 commit comments

Comments
 (0)