v2s v0.2.3
v2s
Vue to script.
Convert .vue file's template + script to .ts|js file in a treeshakable manner.
Caveat
The package only transform template + script part of .vue file, style of SFC is not supported.
Vue2 functional template is not supported.
Vue2 + script lang="ts" is not supported.
Installation
npm i -D v2sUsage
npx v2s path/to/fileIt will convert x.vue to x.render.ts|js, x.script.ts|js and x.ts|js corresponding to the lang attribute.
Option
-r, --refactor-vue-import
Refactor .vue import/export statement in .ts/.js/.vue files. (Only transformed .vue imports will be refactored.)
-d, --delete-source
Delete .vue source file after transformation.
-vue2, --vue2
Transform .vue file to vue2 API js file.
Why it exists
If you have a vue library and want to build it in a treeshakable manner, you will always want to keep the original file structure.
For example:
- index.ts index.js + index.d.ts
- Button.vue => Button.js + Button.d.ts
- Input.vue Input.js + Input.d.tsCurrently I can think of some ways to do it.
- rollup +
presereModules=true: not working, due torollup-plugin-vue, the output is not treeshakable. - tsc: not working, it doesn't work with
.vuefiles. - webpack: not working, can not keep the structure.
I want to use tsc to make build the library. So I need a tool to tranform all .vue files to .ts file and modify all the .vue import, export statements inside the library.