vue-sfc-cli
vue-sfc-cli copied to clipboard
🔨A powerful tool for developing vue single-file component
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...
在当前项目运行,报错  但是生成的组件项目却不会,这是什么原因? standard-version -m 后续执行的是哪个npm包的操作? 求大神指点
## 提供初始化项目类型(支持多模板 使用 cli 生成文件时,我想通过选择我要生成的项目是什么类型,vue组件 或者 工具型 的开源项目 以致于生成后的整套文件完整的,只需要关注我要开发的文件 `src` 即可;**不再需要**修改文件以免受失误而造成的工程出错。 PS: vue组件 和 工具型 应该成为模板,以方便的扩展(或许可以优化为 本地或者在线模板。
**Is your feature request related to a problem? Please describe.** 支持打包 typescript 组件 **Describe the solution you'd like** 参考 https://github.com/FEMessage/v-gantt ,使用 vue-cli 生成模板,原生支持 typescript & 库模式。缺点是使用 webpack 打包不支持产出 esm 模块...
Bumps [standard-version](https://github.com/conventional-changelog/standard-version) from 6.0.1 to 7.1.0. Changelog Sourced from standard-version's changelog. 7.1.0 (2019-12-08) Features Adds support for header (--header) configuration based on the spec. (#364) (ba80a0c) custom 'bumpFiles' and 'packageFiles'...
Bumps [glob](https://github.com/isaacs/node-glob) from 7.1.4 to 7.1.6. Commits - [`f5a57d3`](https://github.com/isaacs/node-glob/commit/f5a57d3d6e19b324522a3fa5bdd5075fd1aa79d1) 7.1.6 - [`9d415a9`](https://github.com/isaacs/node-glob/commit/9d415a9de4abd65d4fc18a836965c86a7a8d0da7) add funding - [`11b7dcc`](https://github.com/isaacs/node-glob/commit/11b7dcc3a94edae1e8c4d8ae326c77a105a61d6e) add funding - [`768cf33`](https://github.com/isaacs/node-glob/commit/768cf33c9f3aa0f6d1ae0f9eb75f7424e7ea5cb2) 7.1.5 - [`a1e2d50`](https://github.com/isaacs/node-glob/commit/a1e2d50ecdca83fa57ff1a6a7090f92904783d22) Bring back lumpy space princess - [`e3fe170`](https://github.com/isaacs/node-glob/commit/e3fe170d9156e7c444a57b44a9e45e46c66f2dbf)...
**Is your feature request related to a problem?** 在开发的时候用jsx写组件,结果发现在打包编译的时候jsx编译不通过。希望能够支持jsx
## 当前场景 原.babelrc有test相关的配置;新的.babelrc删去了相关内容。当前的行为是cli不改动这个文件,导致用户不知道要升级; 而build.sh这类的文件则会粗暴覆盖。 ## 期望行为 升级覆盖文件时,进行字符串比对。如果不同,则生成一个文件副本,并在命令行提示用户需要手动合并。比如: ``` # 升级前文件目录 .babelrc # 升级后,发现文本内容有不同。用户需要手动合并 .babelrc # 新文件 .babelrc.old # 原文件 ```