From f3d8967e0c78da2d5206c06435262fbeb2e9a792 Mon Sep 17 00:00:00 2001 From: Nikolay Tsonev Date: Tue, 10 Sep 2019 15:57:47 +0300 Subject: [PATCH] chore: update development workflow info (#7750) --- DevelopmentWorkflow.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/DevelopmentWorkflow.md b/DevelopmentWorkflow.md index b54e0e8da..6e8f810b3 100644 --- a/DevelopmentWorkflow.md +++ b/DevelopmentWorkflow.md @@ -95,13 +95,14 @@ tns run android --path apps ## Running Another App -The [initial setup](#initial-setup) will `npm-link` the `tns-core-modules` globally. You can use it in any local project: - +1. Open the app, where you will use the module from the repository in the console. +2. Add the `tns-core-modules` in the application via: +```bash +npm install --save +# Example: npm install --save ../NativeScript/tns-core-modules +``` +3. Run the app ```bash -# Run once: Link tns-core-modules in your project -npm link tns-core-modules - -# Run the app tns run ios tns run android ```