gulp-vuetilize
v0.0.7
Published
Transforms .vue without pre processing the content. It is using the vue-template-compiler. It has only support for JS and HTML templates.
Readme
gulp-vuetilize
Transforms .vue files into .vue.js files. The templates are compiled into render functions using the vue-template-es2015-compiler.
In the current state styles are ignored and scripts are not transpiled.
Installation
npm install gulp-vuetilize --save-devUsage
var vuetilize = require('gulp-vuetilize');
gulp.task('vuetilize', function () {
return gulp.src('components/**/*.vue')
.pipe(vuetilize())
.pipe(gulp.dest('./dist'));
});