From 8b1c6d2526ec20fa00ea37efe2810d8578a19d94 Mon Sep 17 00:00:00 2001 From: Martin Yankov Date: Tue, 20 Mar 2018 11:17:06 +0200 Subject: [PATCH 1/2] chore(readme): update development workflow text --- DevelopmentWorkflow.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/DevelopmentWorkflow.md b/DevelopmentWorkflow.md index d0e11860b..449412418 100644 --- a/DevelopmentWorkflow.md +++ b/DevelopmentWorkflow.md @@ -20,6 +20,12 @@ Install your native toolchain and NativeScript as described in the docs: https://docs.nativescript.org/setup/quick-setup +### Clone repository + +``` +$ git clone git@github.com:NativeScript/nativescript-angular.git +$ cd nativescript-angular +``` ### Install dependencies From 1c1f739911a447b43653bbd4254f4ef603cdac8b Mon Sep 17 00:00:00 2001 From: Martin Yankov Date: Fri, 23 Mar 2018 14:01:48 +0200 Subject: [PATCH 2/2] chore(readme): add instruction about ts watch --- DevelopmentWorkflow.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/DevelopmentWorkflow.md b/DevelopmentWorkflow.md index 449412418..99c33f2d7 100644 --- a/DevelopmentWorkflow.md +++ b/DevelopmentWorkflow.md @@ -98,5 +98,6 @@ NOTE: The steps below describe how to run `renderer` tests, but the same approac ## Developer workflow -1. Make changes to the `test`, `ng-sample` projects or in `nativescript-angular` folder. -2. Run the `tests` or `ng-sample` as shown above. +1. Open the `nativescript-angular` folder and start a typescript watcher in it `tsc -w`. +2. Make changes to the `test`, `ng-sample`, `e2e` app projects or in `nativescript-angular` folder. +3. Run the `tests`, `ng-sample` or `e2e` apps as shown above.