Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trescenzi/transvueify
A `.vue` to `.vue` compiler
https://github.com/trescenzi/transvueify
transpiler vuejs vuejs2
Last synced: about 1 month ago
JSON representation
A `.vue` to `.vue` compiler
- Host: GitHub
- URL: https://github.com/trescenzi/transvueify
- Owner: trescenzi
- Created: 2017-03-07T00:29:48.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-21T12:37:44.000Z (over 6 years ago)
- Last Synced: 2024-12-03T04:04:30.768Z (about 1 month ago)
- Topics: transpiler, vuejs, vuejs2
- Language: JavaScript
- Size: 40 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
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 `` 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"]
}
```