You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by so...@apache.org on 2022/05/05 08:27:25 UTC

[dolphinscheduler] branch dev updated: [Docs][UI][Beta] Update README. (#9895)

This is an automated email from the ASF dual-hosted git repository.

songjian pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new fea9186636 [Docs][UI][Beta] Update README. (#9895)
fea9186636 is described below

commit fea9186636195737b02576241da99305574bc6ad
Author: songjianet <17...@qq.com>
AuthorDate: Thu May 5 16:27:19 2022 +0800

    [Docs][UI][Beta] Update README. (#9895)
    
    * [Docs][UI][Beta] Update README.
    
    * [Docs][UI][Beta] Update README.
---
 dolphinscheduler-ui-next/README.md | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

diff --git a/dolphinscheduler-ui-next/README.md b/dolphinscheduler-ui-next/README.md
index 26f42181b8..6bb362ab2a 100644
--- a/dolphinscheduler-ui-next/README.md
+++ b/dolphinscheduler-ui-next/README.md
@@ -1,7 +1,7 @@
-# Dolphin Scheduler UI Next
+# Dolphin Scheduler UI
 
-> After two and a half months of development cycle, we have brought a brand-new `UI` management system (V1.0.0-Alpha).
->
+> Brand new UI management system (Beta).
+> 
 > Compared with the old `UI`, it will be more standardized, and it will also have a more complete type checking mechanism. At the same time, its speed has made a qualitative leap.
 >
 > We also provide dark mode and light mode to meet the preferences of different developers. It will make your eyes shine.
@@ -42,6 +42,10 @@ When you are ready to package, you need to modify the `VITE_APP_PROD_WEB_URL` pa
 pnpm run build:prod
 ```
 
+---
+
+### Participate Development
+
 #### Code Format
 
 Usually after you modify the code, you need to perform code formatting operations to ensure that the code in the project is the same style.
@@ -50,4 +54,12 @@ Usually after you modify the code, you need to perform code formatting operation
 pnpm run prettier
 ```
 
----
\ No newline at end of file
+#### Type Checking
+
+If you are involved in the development of the `UI`, please make sure to perform type checking before submitting the code, and submit it without errors.
+
+```shell
+vue-tsc --noEmit
+```
+
+---