mirror of
https://github.com/RamonGebben/Cquence.git
synced 2026-03-10 00:41:24 +00:00
Added .travis.yml and gulp task for it
This commit is contained in:
11
.travis.yml
Normal file
11
.travis.yml
Normal file
@@ -0,0 +1,11 @@
|
||||
language: node_js
|
||||
|
||||
node_js:
|
||||
- 0.10
|
||||
- 0.11
|
||||
|
||||
before_install:
|
||||
- npm install -g gulp
|
||||
|
||||
script:
|
||||
- gulp ci
|
||||
@@ -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']);
|
||||
Reference in New Issue
Block a user