From 67c8f098a083d69a8482e16131ccd26b62b2a52b Mon Sep 17 00:00:00 2001 From: Sebastiaan Janssen Date: Fri, 8 Dec 2023 12:42:29 +0100 Subject: [PATCH] Add login screen to the readme --- .github/BUILD.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/BUILD.md b/.github/BUILD.md index ee0584528a..4f2523624a 100644 --- a/.github/BUILD.md +++ b/.github/BUILD.md @@ -40,18 +40,22 @@ You can also run the tasks manually on the command line: ``` cd src\Umbraco.Web.UI.Client -npm install +npm i npm run dev ``` -or +If you just want to build the UI Client to `Umbraco.Web.UI` then instead of running `dev`, you can do: `npm run build`. + +The login screen is a different frontend build, for that one you can run it as follows: ``` -cd src\Umbraco.Web.UI.Client -npm install -gulp dev +cd src\Umbraco.Web.UI.Login +npm i +npm run dev ``` +If you just want to build the Login screen to `Umbraco.Web.UI` then instead of running `dev`, you can do: `npm run build`. + **The initial Gulp build might take a long time - don't worry, this will be faster on subsequent runs.** You might run into [Gulp quirks](#gulp-quirks).