Skip to content

Instantly share code, notes, and snippets.

@ayapi
Created June 11, 2014 11:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayapi/dd19a93a842a1aa11002 to your computer and use it in GitHub Desktop.
Save ayapi/dd19a93a842a1aa11002 to your computer and use it in GitHub Desktop.
Webix Skin Builder with Gulp
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