1 Star 0 Fork 0

cqm316/reactui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
plopfile.js 787 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenqiaomin@bxqqedu.com 提交于 2020-10-16 12:16 . 打包
module.exports = function(plop) {
// controller generator
plop.addHelper("headCaps", function(p) {
p = p.trim();
return p.slice(0, 1).toUpperCase() + p.slice(1);
});
plop.setGenerator("component", {
description: "create component",
prompts: [
{
type: "input",
name: "name",
message: "component name please",
},
],
actions: [
{
type: "add",
path: "src/components/{{name}}/index.tsx",
templateFile: "plop-template/componentIndex.hbs",
},
{
type: "add",
path: "src/components/{{name}}/__test__/{{name}}.test.tsx",
templateFile: "plop-template/componentTest.hbs",
},
{
type: "add",
path: "src/components/{{name}}/{{name}}.stories.tsx",
templateFile: "plop-template/componentStories.hbs",
},
],
});
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cqm316/reactui.git
git@gitee.com:cqm316/reactui.git
cqm316
reactui
reactui
master

搜索帮助