-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Taro create 无法创建component模板,package.json 中有 templateInfo 无法使用创建页面模板 #4106
Comments
欢迎提交 Issue~ 如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏 如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。 Good luck and happy coding~ |
CC @luckyadam |
CC @Chen-jj |
same issue |
@Chen-jj 你好, 这并不是同样的 issue,或者说只有部分是相同的。 我很用心地在写 issue,希望你能一字一句地看完。 |
身边没有电脑,下周跟进一下 |
@xPixv 复现不了,使用全局 CLI 再试试 |
@Chen-jj 全局安装也一样有问题。(Taro 1.3.13) 只要 package.json 里有如下的模板信息 {
"templateInfo": {
"name": "redux",
"typescript": true,
"css": "sass"
}
} 创建页面就会出错 上图,第一次,没有 templateInfo,创建了 jsx + css 的模板 第二次添加了 templateInfo 什么都没创建(虽然提示成功,其实并没有) 希望 cli 能根据 templateInfo 创建合适的模板。比如 templateInfo 指定用 typescript + sass 开发的话,就创建 tsx + scss。 复现步骤: (按理没有 2、3 步,不安装依赖,只利用脚手架也应该也可以创建模板 |
@xPixv 原因是你选 redux 模板,但并没有下载过 redux 模板。 |
@Chen-jj 原来是这样子呀 0.0 这个处理逻辑也有点问题吧: |
@xPixv 我觉得没有问题,创建页面肯定用回当前模板,templateInfo 也是自动加的。像你这样手动加 templateInfo 的操作很少见 |
@Chen-jj 一个建议:项目的模板用 npm 包管理,代替 init 的时候用 git-download 下载模板,就应该能保证 install 项目后模板依赖存在了。(同时也能克服 GitHub 的网络问题) 希望 Taro 团队可以谨慎评估,考虑一下 |
?????? |
问题描述
Taro create 无法创建component模板,package.json 中有 templateInfo 无法使用创建页面模板
复现步骤
package.json
【taro-cli 是本地安装,而非全局安装】
如果
package.josn
包含如上信息,使用npx taro create page haha
无法创建页面。控制台提示:✔ 创建页面 haha 成功! Done in 1.53s.
然而 pages 目录下并没有创建相应页面
删掉 templateInfo 就可以创建一个
jsx + css
的模板,而不是tsx + sass
期望行为
使用 taro create 指令,正确地创建 tsx + sass 的页面模板。
也能指定 component 类型创建组件模板。
报错信息
无
系统信息
The text was updated successfully, but these errors were encountered: