diff --git a/packages/fes-cli/build/tasks/init.js b/packages/fes-cli/build/tasks/init.js index 6d77a58d..3e40600d 100644 --- a/packages/fes-cli/build/tasks/init.js +++ b/packages/fes-cli/build/tasks/init.js @@ -1,7 +1,8 @@ const path = require('path'); const fs = require('fs-extra'); const prompts = require('prompts'); -const { exec } = require('child_process'); +const tar = require('tar'); +const { execSync } = require('child_process'); const log = require('../helpers/log'); @@ -13,22 +14,22 @@ function createProject(config, projectName) { return Promise.reject(); } return new Promise((resolve, reject) => { - fs.copy(`${config.folders.CLI_DIR}/template`, `${config.folders.PROJECT_DIR}/${projectName}`).then(() => { - exec(`cd ${config.folders.PROJECT_DIR}/${projectName} && git init && npm i @webank/fes-core @webank/fes-ui && npm i`, (err) => { - if (err) { - log.error(err); - reject(err); - return; - } - log.message(`项目 ${projectName} 创建完成,请执行下面的命令进行使用:`); - log.message(`$ cd ${projectName}`); - log.message('$ npm run dev'); - resolve(); - }); - }).catch((err) => { - log.error(err); - reject(err); - }); + const productDir = `${config.folders.PROJECT_DIR}/${projectName}`; + const stdout = execSync(`npm pack @webank/fes-template`, { encoding: 'utf8', stdio: [null]}); + const filePath = path.resolve(config.folders.PROJECT_DIR, stdout.replace('\n', '')); + fs.mkdirSync(projectDir); + fs.createReadStream(filePath).pipe( + tar.x({ + strip: 1, + C: productDir // alias for cwd:'some-dir', also ok + }) + ); + fs.unlinkSync(filePath); + log.message(`项目 ${projectName} 创建完成,请执行下面的命令进行使用:`); + log.message(`$ cd ${projectName}`); + log.message('$ npm i'); + log.message('$ npm run dev'); + resolve(); }); } diff --git a/packages/fes-cli/package.json b/packages/fes-cli/package.json index 65b665ff..9b767826 100644 --- a/packages/fes-cli/package.json +++ b/packages/fes-cli/package.json @@ -80,6 +80,7 @@ "string-replace-loader": "^2.2.0", "strip-indent": "^2.0.0", "style-loader": "^1.0.0", + "tar": "^6.0.5", "tar-fs": "^1.16.0", "terser-webpack-plugin": "^2.2.1", "thread-loader": "^2.1.3", diff --git a/packages/fes-cli/template/.eslintrc.js b/packages/fes-cli/template/.eslintrc.js deleted file mode 100644 index a27eba89..00000000 --- a/packages/fes-cli/template/.eslintrc.js +++ /dev/null @@ -1,17 +0,0 @@ - -module.exports = { - extends: [ - '@webank/eslint-config-webank/vue', - ], - globals: { - // 这里填入你的项目需要的全局变量 - // 这里值为 false 表示这个全局变量不允许被重新赋值,比如: - // - // Vue: false - }, - rules: { - 'no-plusplus': 'off', - 'no-bitwise': 'off', - 'vue/comment-directive': 'off' - } -}; diff --git a/packages/fes-cli/template/LICENSE b/packages/fes-cli/template/LICENSE deleted file mode 100644 index 23c3e60f..00000000 --- a/packages/fes-cli/template/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2020-present harrywan - -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. \ No newline at end of file diff --git a/packages/fes-cli/template/fes.config.js b/packages/fes-cli/template/fes.config.js deleted file mode 100644 index b805c841..00000000 --- a/packages/fes-cli/template/fes.config.js +++ /dev/null @@ -1,139 +0,0 @@ -module.exports = { - mode: 'vertical', // 可选有vertical、horizontal,默认vertical - theme: 'blue', // 可选有blue、dark,默认blue - fesName: 'xx 运营平台', // 项目名称 - favicon: 'static/favicon.ico', // 图标 - // 环境变量配置, 默认使用local环境 - env: { - // 本地开发环境 - local: { - api: '' - }, - // 测试环境 --env=sit 触发使用 - develop: { - api: 'http://test.xxx.com' - }, - // 生产环境 --env=sit 触发使用 - prod: { - api: 'http://xxx.com' - } - }, - // 配置角色-路由访问权限,使用FesApp.setRole('unLogin')来修改当前用户的角色,控制路由访问权限 - roles: { - unLogin: ['/home'], - admin: ['/list', '*'] - }, - // map - map: { - status: [['1', '成功'], ['2', '失败']] - }, - // 左侧菜单配置 - menu: [ - { - title: '$i18n.menu.interface', - path: '/api', - subMenu: [ - { - title: 'Fes', - path: '/api/fes' - }, - { - title: 'FesApp', - path: '/api/fesApp' - }, - { - title: 'FesApi', - path: '/api/fesApi' - }, - { - title: 'FesMenu', - path: '/api/fesMenu' - }, - { - title: 'FesMap', - path: '/api/fesMap' - }, - { - title: 'FesFesx', - path: '/api/fesFesx' - }, - { - title: 'FesStorage', - path: '/api/fesStorage' - }, - { - title: 'FesUtil', - path: '/api/fesUtil' - } - ] - }, - { - title: '路由', - path: '/route' - }, - { - icon: 'static/bell.png', - title: '列表页', - path: '/list' - }, - { - title: '内容很多的编辑', - path: '/list/edit' - }, - { - title: '显示头部', - path: '/header' - }, - { - title: '静态资源', - path: '/static' - }, - { - title: '子路由', - path: '/layout', - subMenu: [ - { - title: '子路由A', - path: '/layout/a' - }, - { - title: '子路由B', - path: '/layout/b' - } - ] - }, - { - title: '国际化', - path: '/i18n' - } - ], - i18n: { - locale: 'en', // default zh-cn - messages: { - 'zh-cn': { - menu: { - interface: '接口' - }, - overview: '概述', - i18n: { - internationalization: '国际化,基于', - achieve: '实现。', - ui: 'UI组件' - }, - title: '标题' - }, - en: { - menu: { - interface: 'interface' - }, - overview: 'Overview', - i18n: { - internationalization: 'internationalization,base on', - achieve: 'to achieve.', - ui: 'UI components' - }, - title: 'title' - } - } - } -}; diff --git a/packages/fes-cli/template/mock.js b/packages/fes-cli/template/mock.js deleted file mode 100644 index f9fcf1a8..00000000 --- a/packages/fes-cli/template/mock.js +++ /dev/null @@ -1,113 +0,0 @@ -module.exports = (cgiMock, Mock) => { - const { Random } = Mock; - - // 前缀,全局(可选) - // cgiMock.prefix = ''; - - // 返回一个数字 - cgiMock('/number', 123); - - // 返回一个json - cgiMock({ - url: '/json', - result: { - code: '400101', msg: "不合法的请求:Missing cookie 'wb_app_id' for method parameter of type String", transactionTime: '20170309171146', success: false - } - }); - - // 利用mock.js 产生随机文本 - cgiMock('/text', Random.cparagraph()); - - // 返回一个字符串 利用mock.js 产生随机字符 - cgiMock('/string', Mock.mock({ - 'string|1-10': '★' - })); - - - // 正则匹配url, 返回一个字符串 - // cgiMock(/\/abc|\/xyz/, 'regexp test!'); - - // option.result 参数如果是一个函数, 可以实现自定义返回内容, 接收的参数是是经过 express 封装的 req 和 res 对象. - // cgiMock(/\/function$/, function (req, res) { - // res.send('function test'); - // }); - - // 返回文本 fs.readFileSync - // cgiMock('/file', cgiMock.file('./test.json')); - - // 更复杂的规则配置 - cgiMock({ - url: /\/who/, - method: 'GET', - result(req, res) { - if (req.query.name === 'kwan') { - res.json({ kwan: '孤独患者' }); - } else { - res.send('Nooooooooooo'); - } - }, - headers: { - 'Content-Type': 'text/plain', - 'Content-Length': '123', - ETag: '12345' - }, - cookies: [ - { - name: 'myname', value: 'kwan', maxAge: 900000, httpOnly: true - } - ], - // 接口随机延迟 - timeout: Mock.mock({ - 'number|1000-5000': 1000 - }).number - }); - // 登录 - cgiMock('/login', (req, res) => { - res.send(JSON.stringify({ - code: '0', - msg: '', - result: { - username: '万纯(harrywan)', - roleName: '管理员' - } - })); - }); - - cgiMock('/getTestList', (req, res) => { - const list = []; - for (let i = 0; i < req.body.pageSize; i++) { - list.push({ - a: i - }); - } - res.send(JSON.stringify({ - code: '0', - msg: 'this is message', - result: { - list, - page: { - pageSize: req.body.pageSize, - currentPage: req.body.currentPage, - totalPage: 1000 - } - } - - })); - }); - - cgiMock('/getNumber', (req, res) => { - res.send(JSON.stringify({ - code: '0', - msg: 'this is message', - result: 4 - })); - }); - - cgiMock('/getRoleName', (req, res) => { - res.send(JSON.stringify({ - code: '0', - msg: 'this is message', - result: 'admin' - })); - }); -}; diff --git a/packages/fes-cli/template/package.json b/packages/fes-cli/template/package.json deleted file mode 100644 index 48b007e0..00000000 --- a/packages/fes-cli/template/package.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "name": "@webank/fes-template", - "version": "0.1.0", - "description": "fes项目模版", - "main": "index.js", - "scripts": { - "build": "fes build", - "dev": "fes dev" - }, - "husky": { - "hooks": { - "pre-commit": "lint-staged" - } - }, - "lint-staged": { - "*.js": [ - "eslint", - "git add" - ], - "*.fes": [ - "eslint", - "git add" - ], - "*.vue": [ - "eslint", - "git add" - ] - }, - "keywords": [ - "管理端", - "fes", - "fast", - "easy", - "strong" - ], - "files": [ - ".eslintrc.js", - ".gitignore", - "fes.config.js", - "mock.js", - "package.json", - "README.md", - "/src" - ], - "repository": { - "type": "git" - }, - "author": "harrywan qlin", - "license": "MIT", - "devDependencies": { - "@webank/eslint-config-webank": "^0.1.4", - "husky": "^3.0.9", - "lint-staged": "^9.4.2" - }, - "dependencies": { - "@webank/fes-core": "^0.1.0", - "@webank/fes-ui": "^0.1.0" - }, - "peerDependencies": {} -} diff --git a/packages/fes-cli/template/src/app.js b/packages/fes-cli/template/src/app.js deleted file mode 100644 index 5cf4d295..00000000 --- a/packages/fes-cli/template/src/app.js +++ /dev/null @@ -1,42 +0,0 @@ -import './assets/styles/main.scss'; - -export default function () { - this.FesApp.set('FesName', '$i18n.title'); - - - // 设置退出逻辑 - this.on('fes_logout', () => { - this.FesApp.setRole('unLogin'); - this.FesStorage.set('userLogin', false); - }); - - // 设置logo点击事件 - this.on('fes_logo_click', () => { - window.Toast('你点击了LOGO'); - }); - - // 设置路由钩子 - this.FesApp.setBeforeRouter((from, to, next) => { - next(); - }); - this.FesApp.setAfterRouter((route) => { - console.log(`您浏览到了${route.path}`); - }); - - // 设置当前角色 - if (!this.FesStorage.get('userLogin') === true) { - this.setRole('unLogin'); - } - - // 设置AJAX配置 - this.FesApi.option({ - }); - - // 设置响应结构 - this.FesApi.setResponse({ - successCode: '0', - codePath: 'code', - messagePath: 'msg', - resultPath: 'result' - }); -} diff --git a/packages/fes-cli/template/src/assets/images/bg.png b/packages/fes-cli/template/src/assets/images/bg.png deleted file mode 100644 index 28a4e820..00000000 Binary files a/packages/fes-cli/template/src/assets/images/bg.png and /dev/null differ diff --git a/packages/fes-cli/template/src/assets/images/logo.png b/packages/fes-cli/template/src/assets/images/logo.png deleted file mode 100644 index 217f6597..00000000 Binary files a/packages/fes-cli/template/src/assets/images/logo.png and /dev/null differ diff --git a/packages/fes-cli/template/src/assets/styles/login.scss b/packages/fes-cli/template/src/assets/styles/login.scss deleted file mode 100644 index 3c5a095d..00000000 --- a/packages/fes-cli/template/src/assets/styles/login.scss +++ /dev/null @@ -1,131 +0,0 @@ -.login-panel { - position: absolute; - left: 0; - top: 0; - margin: 0; - right: 0; - width: 100%; - height: 100%; - background-color: $body-background; - background-image: url("../images/bg.png"); - background-position: left bottom; - background-repeat: no-repeat; - background-size: 100% auto; - font-size: 18px; - color: $black-text-color; - } - - .login-panel .login-panel-swap { - position: relative; - width: 945px; - height: 324px; - margin: 10% auto; - border-radius: $border-radius-small; - } - - .login-panel .logo { - display: inline-block; - vertical-align: middle; - width: 400px; - height: 100%; - text-align: center; - .logo-text { - display: inline-block; - vertical-align: middle; - margin-top: 130px; - font-size: 28px; - font-weight: bold; - } - } - - .login-panel .split { - display: inline-block; - background: $border-color-base; - width: 1px; - height: 180px; - vertical-align: middle; - } - - .login-panel .error { - margin-top: 10px; - width: 350px; - color: $error-color; - font-size: 14px; - .ui-icon-exclamation-circle{ - margin-right: 6px; - } - } - - .login-panel .login-form { - position: relative; - display: inline-block; - vertical-align: middle; - padding: 0 75px 0; - height: 270px; - input::-webkit-input-placeholder{ - color: $black-text-color; - } - input::-moz-placeholder { - color: $black-text-color; - } - /* ie */ - input:-ms-input-placeholder { - color: $black-text-color; - } - /* firefox 19+ */ - input:-moz-placeholder { - color: $black-text-color; - } - - input:-webkit-autofill { - -webkit-box-shadow: 0 0 0px 1000px white inset !important; - -webkit-text-fill-color: $black-text-color !important; - } - .line{ - padding-top: 30px; - border-bottom: 1px solid $border-color-split; - } - input[type="text"], - input[type="password"]{ - margin: 0; - width: 350px; - height: 40px; - line-height: 40px; - padding: 0 15px; - vertical-align: middle; - background: 0 0; - outline: 0; - border: none; - font-size: 16px; - color: $black-text-color; - } - button { - margin-top: 10px; - width: 350px; - height: 48px; - border-radius: 4px; - line-height: 46px; - border: none; - outline: 0; - background-color: $primary-color; - color: #ffffff; - cursor: pointer; - text-align: center; - font-size: 18px; - &:hover { - background-color: $selected-color; - } - } - } - -.ie-palceholder::after{ - content: '用户名'; - position: absolute; - left: 88px; - top: 38px; - font-size: 16px; -} -.ie-palceholder-password::after{ - content: '密码'; - top: 110px; -} \ No newline at end of file diff --git a/packages/fes-cli/template/src/assets/styles/main.scss b/packages/fes-cli/template/src/assets/styles/main.scss deleted file mode 100644 index 76e41f96..00000000 --- a/packages/fes-cli/template/src/assets/styles/main.scss +++ /dev/null @@ -1,50 +0,0 @@ -@import "variables"; -@import "login"; - -.article { - padding: 20px; - h1 { - font-size: 26px; - font-weight: 400; - margin: 12px 0; - } - - h2 { - margin: 25px 0 12px; - font-size: 20px; - font-weight: 400; - } - - h3 { - font-size: 16px; - font-weight: 400; - } - - p { - font-size: 14px; - margin: 5px; - } - - ul { - padding-left: 40px; - } - - li { - list-style-type: disc; - margin-bottom: 5px; - font-size: 14px; - } - table{ - border-collapse: collapse; - border-spacing: 0; - empty-cells: show; - border: 1px solid #e9e9e9; - width: 500px; - margin-bottom: 24px; - } - th,td { - border: 1px solid #e9e9e9; - padding: 8px 16px; - text-align: left; - } -} \ No newline at end of file diff --git a/packages/fes-cli/template/src/assets/styles/variables.scss b/packages/fes-cli/template/src/assets/styles/variables.scss deleted file mode 100644 index bb87d50f..00000000 --- a/packages/fes-cli/template/src/assets/styles/variables.scss +++ /dev/null @@ -1,90 +0,0 @@ -// Color -$primary-color : #3399ff; -$info-color : #2db7f5; -$success-color : #00cc66; -$warning-color : #ff9900; -$error-color : #ff5500; -$link-color : #3399ff; -$link-hover-color : #5cadff; -$link-focus-color : rgba(51,153,255, .2); -$link-active-color : #3091f2; -$selected-color : rgba($primary-color, .9); -$tooltip-color : #fff; -//辅助/图标 -$subsidiary-color : #9ea7b4; -$disabled-color : #f3f3f3; - -// Base -$body-background : #fff; -$component-background : #fff; -$font-family : "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif; -$code-family : Consolas,Menlo,Courier,monospace; -$title-color : #464c5b; -$text-color : #657180; -$black-text-color : #333333; -$sub-text-color : #999; -$dark-color : #333; - -//失效 Disabled -$tip-color : #c3cbd6; -$font-size-lg : 16px; -$font-size-base : 14px; -$font-size-small : 12px; -$line-height-base : 1.5; -$line-height-computed : floor(($font-size-base * $line-height-base)); -$border-radius-base : 6px; -$border-radius-small : 4px; -$cursor-disabled : not-allowed; - -// Border color -$border-color-base : #d7dde4; // outside -$border-color-split : #e3e8ee; // inside - - -// Background color -$background-color-base : #f7f7f7; // base -$background-color-select-hover: #f3f3f3; -$tooltip-bg : rgba(70, 76, 91, .9); -$head-bg : #f9fafc; -$table-thead-bg : #f5f7f9; -$table-td-stripe-bg : #f5f7f9; -$table-td-hover-bg : #ebf7ff; -$table-td-highlight-bg : #ebf7ff; - -// Z-index -$zindex-spin : 8; -$zindex-affix : 10; -$zindex-back-top : 10; -$zindex-select : 900; -$zindex-modal : 1000; -$zindex-message : 1010; -$zindex-notification : 1010; -$zindex-tooltip : 1060; -$zindex-loading-bar : 2000; - -// Animation -$animation-time : .3s; -$transition-time : .2s; -$ease-out : cubic-bezier(0.215, 0.61, 0.355, 1); -$ease-in : cubic-bezier(0.55, 0.055, 0.675, 0.19); -$ease-in-out : cubic-bezier(0.645, 0.045, 0.355, 1); -$ease-out-back : cubic-bezier(0.12, 0.4, 0.29, 1.46); -$ease-in-back : cubic-bezier(0.71, -0.46, 0.88, 0.6); -$ease-in-out-back : cubic-bezier(0.71, -0.46, 0.29, 1.46); -$ease-out-circ : cubic-bezier(0.08, 0.82, 0.17, 1); -$ease-in-circ : cubic-bezier(0.6, 0.04, 0.98, 0.34); -$ease-in-out-circ : cubic-bezier(0.78, 0.14, 0.15, 0.86); -$ease-out-quint : cubic-bezier(0.23, 1, 0.32, 1); -$ease-in-quint : cubic-bezier(0.755, 0.05, 0.855, 0.06); -$ease-in-out-quint : cubic-bezier(0.86, 0, 0.07, 1); - -// Shadow -$shadow-color : rgba(0, 0, 0, .2); -$shadow-1-up : 0 -1px 6px $shadow-color; -$shadow-1-down : 0 1px 6px $shadow-color; -$shadow-1-left : -1px 0 6px $shadow-color; -$shadow-1-right : 1px 0 6px $shadow-color; -$shadow-2 : 0 2px 8px $shadow-color; -$box-shadow-base : $shadow-1-down; - -$mask-color: rgba(55, 55, 55, .6); diff --git a/packages/fes-cli/template/src/pages/api/fes/index.vue b/packages/fes-cli/template/src/pages/api/fes/index.vue deleted file mode 100644 index f67abf2c..00000000 --- a/packages/fes-cli/template/src/pages/api/fes/index.vue +++ /dev/null @@ -1,74 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/api/fesApi/index.vue b/packages/fes-cli/template/src/pages/api/fesApi/index.vue deleted file mode 100644 index 250925bd..00000000 --- a/packages/fes-cli/template/src/pages/api/fesApi/index.vue +++ /dev/null @@ -1,50 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/api/fesApp/index.vue b/packages/fes-cli/template/src/pages/api/fesApp/index.vue deleted file mode 100644 index f3c5ef9d..00000000 --- a/packages/fes-cli/template/src/pages/api/fesApp/index.vue +++ /dev/null @@ -1,94 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/api/fesFesx/index.vue b/packages/fes-cli/template/src/pages/api/fesFesx/index.vue deleted file mode 100644 index c1dc2d4a..00000000 --- a/packages/fes-cli/template/src/pages/api/fesFesx/index.vue +++ /dev/null @@ -1,26 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/api/fesMap/index.vue b/packages/fes-cli/template/src/pages/api/fesMap/index.vue deleted file mode 100644 index bf0f8cca..00000000 --- a/packages/fes-cli/template/src/pages/api/fesMap/index.vue +++ /dev/null @@ -1,20 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/api/fesMenu/index.vue b/packages/fes-cli/template/src/pages/api/fesMenu/index.vue deleted file mode 100644 index aaffb93e..00000000 --- a/packages/fes-cli/template/src/pages/api/fesMenu/index.vue +++ /dev/null @@ -1,129 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/api/fesStorage/index.vue b/packages/fes-cli/template/src/pages/api/fesStorage/index.vue deleted file mode 100644 index a5e469dd..00000000 --- a/packages/fes-cli/template/src/pages/api/fesStorage/index.vue +++ /dev/null @@ -1,38 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/api/fesUtil/index.vue b/packages/fes-cli/template/src/pages/api/fesUtil/index.vue deleted file mode 100644 index be19be80..00000000 --- a/packages/fes-cli/template/src/pages/api/fesUtil/index.vue +++ /dev/null @@ -1,33 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/header/index.vue b/packages/fes-cli/template/src/pages/header/index.vue deleted file mode 100644 index 98e5cdfe..00000000 --- a/packages/fes-cli/template/src/pages/header/index.vue +++ /dev/null @@ -1,77 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/home/index.vue b/packages/fes-cli/template/src/pages/home/index.vue deleted file mode 100644 index ab58795f..00000000 --- a/packages/fes-cli/template/src/pages/home/index.vue +++ /dev/null @@ -1,142 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/i18n/index.vue b/packages/fes-cli/template/src/pages/i18n/index.vue deleted file mode 100644 index b0ef9c45..00000000 --- a/packages/fes-cli/template/src/pages/i18n/index.vue +++ /dev/null @@ -1,48 +0,0 @@ - - - diff --git a/packages/fes-cli/template/src/pages/layout/a.vue b/packages/fes-cli/template/src/pages/layout/a.vue deleted file mode 100644 index 76f339b3..00000000 --- a/packages/fes-cli/template/src/pages/layout/a.vue +++ /dev/null @@ -1,12 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/layout/b.vue b/packages/fes-cli/template/src/pages/layout/b.vue deleted file mode 100644 index 8a6a578c..00000000 --- a/packages/fes-cli/template/src/pages/layout/b.vue +++ /dev/null @@ -1,12 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/layout/layout.vue b/packages/fes-cli/template/src/pages/layout/layout.vue deleted file mode 100644 index 32df58ad..00000000 --- a/packages/fes-cli/template/src/pages/layout/layout.vue +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/list/edit/index.vue b/packages/fes-cli/template/src/pages/list/edit/index.vue deleted file mode 100644 index 64e8c23b..00000000 --- a/packages/fes-cli/template/src/pages/list/edit/index.vue +++ /dev/null @@ -1,89 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/list/index.vue b/packages/fes-cli/template/src/pages/list/index.vue deleted file mode 100644 index 328f3c6a..00000000 --- a/packages/fes-cli/template/src/pages/list/index.vue +++ /dev/null @@ -1,84 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/route.vue b/packages/fes-cli/template/src/pages/route.vue deleted file mode 100644 index d5286533..00000000 --- a/packages/fes-cli/template/src/pages/route.vue +++ /dev/null @@ -1,28 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/pages/static/index.vue b/packages/fes-cli/template/src/pages/static/index.vue deleted file mode 100644 index 1bdce2ad..00000000 --- a/packages/fes-cli/template/src/pages/static/index.vue +++ /dev/null @@ -1,18 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/static/1.txt b/packages/fes-cli/template/src/static/1.txt deleted file mode 100644 index 9d07aa0d..00000000 --- a/packages/fes-cli/template/src/static/1.txt +++ /dev/null @@ -1 +0,0 @@ -111 \ No newline at end of file diff --git a/packages/fes-cli/template/src/static/bell.png b/packages/fes-cli/template/src/static/bell.png deleted file mode 100644 index 8ae70678..00000000 Binary files a/packages/fes-cli/template/src/static/bell.png and /dev/null differ diff --git a/packages/fes-cli/template/src/static/favicon.ico b/packages/fes-cli/template/src/static/favicon.ico deleted file mode 100644 index 82339b3b..00000000 Binary files a/packages/fes-cli/template/src/static/favicon.ico and /dev/null differ diff --git a/packages/fes-doc/docs/guide/play.md b/packages/fes-doc/docs/guide/play.md index 40e26009..d054fa94 100644 --- a/packages/fes-doc/docs/guide/play.md +++ b/packages/fes-doc/docs/guide/play.md @@ -1,10 +1,17 @@ # 快速上手 ## 创建项目 + ```shell fes init [projectName] ``` +## 项目初始化 + +```shell +cd [projectName] && npm i +``` + ## 启动项目 进入工程目录,执行 `fes dev` 进入开发模式 diff --git a/packages/fes-template/.editorconfig b/packages/fes-template/.editorconfig deleted file mode 100644 index 8786e6e2..00000000 --- a/packages/fes-template/.editorconfig +++ /dev/null @@ -1,15 +0,0 @@ -# http://editorconfig.org - -root = true - -[*] -charset = utf-8 -indent_style = space -indent_size = 4 -end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true - -[*.md] -insert_final_newline = false -trim_trailing_whitespace = false diff --git a/packages/fes-cli/template/.gitignore b/packages/fes-template/.gitignore similarity index 100% rename from packages/fes-cli/template/.gitignore rename to packages/fes-template/.gitignore diff --git a/packages/fes-template/package.json b/packages/fes-template/package.json index 657e8cc1..47c800dd 100644 --- a/packages/fes-template/package.json +++ b/packages/fes-template/package.json @@ -1,31 +1,11 @@ { "name": "@webank/fes-template", - "version": "0.1.0", + "version": "0.1.2", "description": "fes项目模版", "main": "index.js", "scripts": { "build": "fes build", - "dev": "fes dev", - "lint": "fes lint" - }, - "husky": { - "hooks": { - "pre-commit": "lint-staged" - } - }, - "lint-staged": { - "*.js": [ - "eslint", - "git add" - ], - "*.fes": [ - "eslint", - "git add" - ], - "*.vue": [ - "eslint", - "git add" - ] + "dev": "fes dev" }, "keywords": [ "管理端", @@ -43,17 +23,16 @@ "README.md", "/src" ], - "author": "harrywan fanniehuang qlin", + "repository": { + "type": "git" + }, + "author": "harrywan qlin", "license": "MIT", "devDependencies": { - "@webank/eslint-config-webank": "^0.1.6", - "csp-html-webpack-plugin": "^4.0.0", - "husky": "^3.0.9", - "lint-staged": "^9.4.2" + "@webank/eslint-config-webank": "^0.1.4" }, "dependencies": { - "vue": "^2.6.10", - "@webank/fes-core": "^0.1.0", + "@webank/fes-core": "^0.1.1", "@webank/fes-ui": "^0.1.0" }, "peerDependencies": {} diff --git a/packages/fes-template/src/assets/images/logo.png b/packages/fes-template/src/assets/images/logo.png index 9e065675..217f6597 100644 Binary files a/packages/fes-template/src/assets/images/logo.png and b/packages/fes-template/src/assets/images/logo.png differ diff --git a/packages/fes-template/src/components/fesHeader.fes b/packages/fes-template/src/components/fesHeader.fes deleted file mode 100644 index 22564d9c..00000000 --- a/packages/fes-template/src/components/fesHeader.fes +++ /dev/null @@ -1,14 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/components/fesHeader.vue b/packages/fes-template/src/components/fesHeader.vue similarity index 100% rename from packages/fes-cli/template/src/components/fesHeader.vue rename to packages/fes-template/src/components/fesHeader.vue diff --git a/packages/fes-template/src/components/fesLeft.fes b/packages/fes-template/src/components/fesLeft.fes deleted file mode 100644 index e64ebed8..00000000 --- a/packages/fes-template/src/components/fesLeft.fes +++ /dev/null @@ -1,9 +0,0 @@ - - diff --git a/packages/fes-cli/template/src/components/fesLeft.vue b/packages/fes-template/src/components/fesLeft.vue similarity index 100% rename from packages/fes-cli/template/src/components/fesLeft.vue rename to packages/fes-template/src/components/fesLeft.vue diff --git a/packages/fes-template/webpack.config.js b/packages/fes-template/webpack.config.js deleted file mode 100644 index 6c366b7b..00000000 --- a/packages/fes-template/webpack.config.js +++ /dev/null @@ -1,27 +0,0 @@ -const CspHtmlWebpackPlugin = require('csp-html-webpack-plugin'); - -module.exports = function (mode, configs, webpack) { - if (mode === 'build') { - return { - plugins: [new CspHtmlWebpackPlugin({ - 'base-uri': "'self'", - 'object-src': "'none'", - 'script-src': [ - "'self'" - ], - 'style-src': [ - "'self'" - ], - 'connect-src': [ - "'self'", - 'http://adm.webank.io' - ], - 'img-src': [ - 'data:', - "'self'" - ] - })] - }; - } - return {}; -};