chore: update development workflow info (#7750)

This commit is contained in:
Nikolay Tsonev
2019-09-10 15:57:47 +03:00
committed by Manol Donev
parent 03d1ff0399
commit f3d8967e0c

View File

@@ -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 <path to tns-core-modules>
# 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
```