Created
June 11, 2014 11:10
-
-
Save ayapi/dd19a93a842a1aa11002 to your computer and use it in GitHub Desktop.
Webix Skin Builder with Gulp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var download = require('gulp-download'); | |
var unzip = require('gulp-unzip'); | |
gulp.task('webix', function(){ | |
return download('http://webix.com/skin-builder/data/aec0da36.zip') | |
.pipe(unzip()) | |
.pipe(gulp.dest('./dist/lib/webix/codebase/')) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment