# transvueify

> A .vue -> .vue file transpiler

Latest version **0.0.6** (published 2018-05-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install transvueify
pnpm add transvueify
yarn add transvueify
bun add transvueify
```

Provides the command `transvueify`.

## 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.6 |
| Published | 2018-05-21 |
| First published | 2017-03-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Unpacked size | 65 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | trescenzi |

## Links

- npm: https://www.npmjs.com/package/transvueify
- Repository: https://github.com/trescenzi/transvueify
- Homepage: https://github.com/trescenzi/transvueify#readme
- Issues: https://github.com/trescenzi/transvueify/issues
- npm.io page: https://npm.io/package/transvueify

## Dependencies (6)

- [argv](https://npm.io/package/argv.md) 0.0.2
- [glob](https://npm.io/package/glob.md) ^7.1.1
- [mkdirp](https://npm.io/package/mkdirp.md) ^0.5.1
- [rimraf](https://npm.io/package/rimraf.md) ^2.6.1
- [find-config](https://npm.io/package/find-config.md) ^1.0.0
- [vue-template-compiler](https://npm.io/package/vue-template-compiler.md) ^2.2.1

## Recent versions

- 0.0.6 (latest) — 2018-05-21
- 0.0.5 — 2018-05-04
- 0.0.4 — 2017-03-28
- 0.0.3 — 2017-03-26
- 0.0.2 — 2017-03-09
- 0.0.1 — 2017-03-09

## README

# Transvueify: The easy to use `.vue` to `.vue` build tool

Transvueify will take your complex and JS feature filled `.vue`
files and compile them down to however simple JS you're looking for.
The JS inside of the `<script>` in you `.vue` files will be passed
through your desired plugins, such as [transvueify-plugin-babel](https://github.com/trescenzi/transvueify-plugin-babel) ,
and come out as transpiled `.vue` files on the other end. As many files go in will come out. This tool
doesn't do any bundling. It simply transforms your `.vue` files mostly
in place for use either by other tools of to be distributed directly.

The most basic usage is to simple:
`npm install --save-dev transvueify`
`transvueify --input src/**/*.vue --output dist/`

## Config

Instead of providing command line options to transvueify options
can be provided via a `transvueify.config.json` file.

```js
{
  "input": "src/**/*.vue",
  "output": "dist/",
  "plugins": ["transvueify-plugin-babel"]
}
```

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