Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-vuetilize

conterra2Apache-2.00.0.7

Transforms .vue without pre processing the content. It is using the vue-template-compiler. It has only support for JS and HTML templates.

gulpplugin, vue, vuejs

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-dev

Usage

var vuetilize = require('gulp-vuetilize');

gulp.task('vuetilize', function () {
  return gulp.src('components/**/*.vue')
    .pipe(vuetilize())
    .pipe(gulp.dest('./dist'));
});