Added .travis.yml and gulp task for it

This commit is contained in:
Ramon Gebben
2015-01-18 11:26:11 +01:00
parent 021722db5c
commit 2f8dda8a70
2 changed files with 15 additions and 2 deletions

11
.travis.yml Normal file
View File

@@ -0,0 +1,11 @@
language: node_js
node_js:
- 0.10
- 0.11
before_install:
- npm install -g gulp
script:
- gulp ci

View File

@@ -1,7 +1,9 @@
var gulp=require("gulp"),
uglify = require("gulp-uglify");
gulp.task("compress", function(){
gulp.src("Cquence.js").pipe( uglify() ).pipe( gulp.dest("minified") )
});
});
gulp.task('ci', ['compress']);