mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
feat: 添加初始化项目cli
This commit is contained in:
parent
6eb4bdd050
commit
6c95da8fd8
21
packages/create-fes-app/LICENSE
Normal file
21
packages/create-fes-app/LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2020-present webank
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
5
packages/create-fes-app/README.md
Normal file
5
packages/create-fes-app/README.md
Normal file
@ -0,0 +1,5 @@
|
||||
# fes 项目管理脚本
|
||||
|
||||
* 初始化 fes 项目
|
||||
* 创建页面
|
||||
* 创建模块
|
3
packages/create-fes-app/bin/create-fes-app.js
Executable file
3
packages/create-fes-app/bin/create-fes-app.js
Executable file
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
require('../lib/cli');
|
35
packages/create-fes-app/package.json
Normal file
35
packages/create-fes-app/package.json
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "@webank/create-fes-app",
|
||||
"version": "2.0.0-alpha.0",
|
||||
"description": "@webank/create-fes-app",
|
||||
"main": "lib/index.js",
|
||||
"files": [
|
||||
"lib",
|
||||
"bin",
|
||||
"templates"
|
||||
],
|
||||
"bin": {
|
||||
"create-umi-app": "bin/create-fes-app.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/WeBankFinTech/fes.js.git",
|
||||
"directory": "packages/create-fes-app"
|
||||
},
|
||||
"keywords": [
|
||||
"fes"
|
||||
],
|
||||
"sideEffects": false,
|
||||
"author": "qlin",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/WeBankFinTech/fes.js/issues"
|
||||
},
|
||||
"homepage": "https://github.com/WeBankFinTech/fes.js#readme",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"vue-router": "^4.0.1"
|
||||
}
|
||||
}
|
12
packages/create-fes-app/src/cli.js
Normal file
12
packages/create-fes-app/src/cli.js
Normal file
@ -0,0 +1,12 @@
|
||||
|
||||
/**
|
||||
* TODO
|
||||
* 需要支持的命令
|
||||
* v
|
||||
* h
|
||||
* [项目名称] 可选择 h5 | pc 模版
|
||||
*
|
||||
* feature pc
|
||||
* 根据API动态生产列表页
|
||||
* feature h5
|
||||
*/
|
0
packages/create-fes-app/src/genTmp.js
Normal file
0
packages/create-fes-app/src/genTmp.js
Normal file
@ -1 +1,3 @@
|
||||
# fes vue3 模版
|
||||
# fes h5 模版
|
||||
|
||||
内部测试用,不对外发布
|
||||
|
@ -44,5 +44,6 @@
|
||||
"@webank/fes-plugin-icon": "^1.0.0",
|
||||
"@webank/fes-plugin-request": "^1.0.0",
|
||||
"vue": "^3.0.4"
|
||||
}
|
||||
},
|
||||
"private": true
|
||||
}
|
||||
|
3
packages/fes-template/README.md
Normal file
3
packages/fes-template/README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# fes 模版
|
||||
|
||||
内部测试用,不对外发布
|
@ -50,5 +50,7 @@
|
||||
"@webank/fes-plugin-model": "^1.0.0",
|
||||
"ant-design-vue": "2.0.0-rc.3",
|
||||
"vue": "3.0.4"
|
||||
}
|
||||
},
|
||||
"private": true
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user