Skip to content

Commit efa007d

Browse files
committed
Add Gruntfile.coffee to linting and add travis file
1 parent 5a4a72c commit efa007d

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.travis.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: node_js
2+
node_js:
3+
- "0.11"
4+
- "0.10"
5+
- "0.8"
6+
before_script:
7+
- npm install -g grunt-cli

Gruntfile.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = (grunt) ->
3737
"lib/irc.js": "src/irc.coffee"
3838

3939
coffeelint:
40-
client: ["src/**/*.coffee"]
40+
client: ["Gruntfile.coffee", "src/**/*.coffee"]
4141
options:
4242
indentation:
4343
value: 2

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
},
2020
"main": "./src/irc.coffee",
2121
"engine": "node > 0.6.0",
22+
"scripts": {
23+
"test": "grunt"
24+
},
2225
"dependencies": {
2326
"irc": "git://github.com/nandub/node-irc.git"
2427
},

0 commit comments

Comments
 (0)