Skip to content

Commit 0c4f53d

Browse files
committed
Fix .travis.yml.
1 parent 71bd9b4 commit 0c4f53d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
language: node_js
22
node_js:
3-
- '0.10'
3+
- 0.10
4+
before_script:
5+
- npm install -g gulp

gulpfile.coffee

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ gulp.task 'coffee', ->
77
gulp.src 'index.coffee'
88
.pipe coffee bare: true
99
.on 'error', gutil.log
10-
.pipe gulp.dest '.'
10+
.pipe gulp.dest '.'
11+
12+
gulp.task 'test', ->

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"node": ">=0.10.0"
1616
},
1717
"scripts": {
18-
"test": "mocha"
18+
"test": "gulp test"
1919
},
2020
"files": [
2121
"index.js"

0 commit comments

Comments
 (0)