From fea9186636195737b02576241da99305574bc6ad Mon Sep 17 00:00:00 2001 From: songjianet <1778651752@qq.com> Date: Thu, 5 May 2022 16:27:19 +0800 Subject: [PATCH] [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 +``` + +---