# gulp-vueify

> Compile .vue files using vueify

Latest version **0.0.3** (published 2016-04-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install gulp-vueify
pnpm add gulp-vueify
yarn add gulp-vueify
bun add gulp-vueify
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2016-04-22 |
| First published | 2016-02-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 33 |
| Author | Zahajki |
| Maintainers | zahajki |
| Keywords | gulpplugin, vueify, vue, vuejs |

## Links

- npm: https://www.npmjs.com/package/gulp-vueify
- Repository: https://github.com/zahajki/gulp-vueify
- Homepage: https://github.com/zahajki/gulp-vueify#readme
- Issues: https://github.com/zahajki/gulp-vueify/issues
- npm.io page: https://npm.io/package/gulp-vueify

## Dependencies (3)

- [vueify](https://npm.io/package/vueify.md) ^8.3.5
- [through2](https://npm.io/package/through2.md) ^2.0.1
- [gulp-util](https://npm.io/package/gulp-util.md) ^3.0.7

## Recent versions

- 0.0.3 (latest) — 2016-04-22
- 0.0.2 — 2016-04-19
- 0.0.1 — 2016-02-29

## README

# gulp-vueify
Compile `*.vue` component files using [vueify](https://github.com/vuejs/vueify#compiler-api) **without** Browserify.
This plugin is useful for [Electron](http://electron.atom.io/) apps, because Browserify and webpack are overkill for Electron apps.

For developing non-Electron apps, in other words normal web apps, this plugin is **not necessary** in most cases. Instead, just use
[webpack](https://webpack.github.io/docs/usage-with-gulp.html)+[vue-loader](http://vuejs.github.io/vue-loader/) or
[Browserify](https://github.com/gulpjs/gulp/tree/master/docs/recipes)+[vueify](https://github.com/vuejs/vueify) directly in your `gulpfile.js`.

## Installation
```bash
npm install gulp-vueify --save-dev
```

Typically you will also have to do:
```bash
npm install vueify-insert-css babel-core babel-plugin-transform-runtime babel-preset-es2015 --save-dev
```

## Usage
```javascript
var vueify = require('gulp-vueify');

gulp.task('vueify', function () {
  return gulp.src('components/**/*.vue')
    .pipe(vueify())
    .pipe(gulp.dest('./dist'));
});
```

## API
### vueify([config])
#### config
Config for vueify. See [vueify document](https://github.com/vuejs/vueify#configuring-options) for details. `vue.config.js` file also works.

---
_Source: https://npm.io/package/gulp-vueify · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
