Skip to content
This repository was archived by the owner on May 11, 2021. It is now read-only.

Commit 7105125

Browse files
committed
refactor: 重构 4.0 组件化
1 parent 073f3bf commit 7105125

File tree

129 files changed

+7956
-12363
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+7956
-12363
lines changed

.all-contributorsrc

-45
This file was deleted.

.env.lib

-2
This file was deleted.

.eslintrc.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@ module.exports = {
88
parser: "babel-eslint"
99
},
1010
rules: {
11-
"no-eval": "off",
12-
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
11+
"vue/no-unused-components":
12+
process.env.NODE_ENV === "production" ? "error" : "warn",
13+
"no-console":
14+
process.env.NODE_ENV === "production"
15+
? ["error", { allow: ["warn", "error"] }]
16+
: "off",
1317
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off"
1418
}
1519
};

.github/ISSUE_TEMPLATE/bug_report.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: Bug report(报告问题)
3+
about: Create a report to help us improve
4+
---
5+
6+
<!--
7+
注意:为更好的解决你的问题,请参考模板提供完整信息,准确描述问题,信息不全的 issue 将被关闭。
8+
9+
Note: In order to better solve your problem, please refer to the template to provide complete information, accurately describe the problem, and the incomplete information issue will be closed.
10+
-->
11+
12+
## Bug report(问题描述)
13+
14+
#### Steps to reproduce(问题复现步骤)
15+
16+
<!--
17+
1. [xxx]
18+
2. [xxx]
19+
3. [xxxx]
20+
-->
21+
22+
#### Screenshot or Gif(截图或动态图)
23+
24+
#### Link to minimal reproduction(最小可在线还原 demo)
25+
26+
<!--
27+
Please only use Codepen, JSFiddle, CodeSandbox or a github repo
28+
-->
29+
30+
#### Other relevant information(格外信息)
31+
32+
- Vue version:
33+
- f-render version:
34+
- ElementUI version:
35+
- vue-ele-form version:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Feature Request(新功能建议)
3+
about: Suggest an idea for this project
4+
---
5+
6+
## Feature request(新功能建议)
7+

.github/ISSUE_TEMPLATE/question.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Question(提问)
3+
about: Asking questions about use
4+
---
5+
6+
## Question(提问)
7+
8+
<!--
9+
提问之前,请确定你已经过自己的努力,尝试解决过这个问题。
10+
若是代码相关问题,请不要只截图,请提供在线 demo,以便节约彼此的时间。
11+
12+
Before asking a question, please make sure that you have tried your best to solve this problem.
13+
If it's a code-related issue, please don't just take screenshots. Please provide an online demo to save each other's time.
14+
-->
15+
16+
#### Steps to reproduce(问题复现步骤)
17+
18+
<!--
19+
1. [xxx]
20+
2. [xxx]
21+
3. [xxxx]
22+
-->
23+
24+
#### Screenshot or Gif(截图或动态图)
25+
26+
#### Link to minimal reproduction(最小可在线还原 demo)
27+
28+
<!--
29+
Please only use Codepen, JSFiddle, CodeSandbox or a github repo
30+
-->
31+
32+
#### Other relevant information(格外信息)
33+
34+
- Vue version:
35+
- f-render version:
36+
- ElementUI version:
37+
- vue-ele-form version:

.github/workflows/main.yml

-8
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,3 @@ jobs:
2424
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
2525
PUBLISH_BRANCH: gh-pages
2626
PUBLISH_DIR: ./dist
27-
28-
- name: Build and push Docker images
29-
uses: docker/build-push-action@v1.1.0
30-
with:
31-
username: ${{ secrets.DOCKER_USERNAME }}
32-
password: ${{ secrets.DOCKER_PASSWORD }}
33-
repository: chaojie1234/fgen
34-
tags: latest

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
.DS_Store
22
node_modules
33
/dist
4-
lib
4+
5+
56
# local env files
67
.env.local
78
.env.*.local
@@ -10,6 +11,7 @@ lib
1011
npm-debug.log*
1112
yarn-debug.log*
1213
yarn-error.log*
14+
pnpm-debug.log*
1315

1416
# Editor directories and files
1517
.idea

.grenrc.js

-6
This file was deleted.

.npmignore

-1
This file was deleted.

.prettierrc.js

-3
This file was deleted.

CHANGELOG.md

-182
This file was deleted.

Dockerfile

-11
This file was deleted.

0 commit comments

Comments
 (0)