Integrates node-kit with gulp to compile .kit files
npm install gulp-kitnode-kit gulp to compile .kit templates 
gulp.task('default', function(){
return gulp.src('src/kit/*.kit')
.pipe(kit())
.pipe(gulp.dest('dest/'));
});
{compilePartials : true} to the // ... as above
.pipe( kit({compilePartials : true}) )
// ... further pipes, as above
You can also pass through any user-defined CodeKit variables by passing{ variables: { key: value, key: value, etc. }} to the plugin.
// ... as above
.pipe( kit({
variables: {
"$uiVer": pkg.version,
"$bsVer": "3.1"
}}) )
// ... further pipes, as above