From 77c83cca411a38bfb2300c2a4e3533a964860f5a Mon Sep 17 00:00:00 2001 From: Vladimir Enchev Date: Wed, 13 Jul 2016 10:36:11 +0300 Subject: [PATCH 1/2] How to build instructions added --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 858cc26f5b..55fa588842 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ The NativeScript CLI lets you create, build, and deploy NativeScript-based proje * [Troubleshooting](#troubleshooting) * [Known Issues](#known-issues) * [How to Contribute](#how-to-contribute) +* [How to Build](#how-to-build) * [License](#license) What is NativeScript @@ -585,6 +586,21 @@ To learn how to contribute to the code base, click [here](https://github.com/Nat [Back to Top][1] +How to Build +=== +``` +git clone https://github.com/NativeScript/nativescript-cli +cd nativescript-cli +git submodule update --init +npm install +grunt +``` + +To use the locally built CLI instead `tns` you can call `PATH_TO_CLI_FOLDER/bin/nativescript`. For example: +`PATH_TO_CLI_FOLDER/bin/nativescript run ios|android` + +[Back to Top][1] + License === From 17f5306f29943dc9d78c1e2cb31b77c93ea15a21 Mon Sep 17 00:00:00 2001 From: Vladimir Enchev Date: Wed, 13 Jul 2016 10:43:54 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 55fa588842..2de41e8951 100644 --- a/README.md +++ b/README.md @@ -596,8 +596,8 @@ npm install grunt ``` -To use the locally built CLI instead `tns` you can call `PATH_TO_CLI_FOLDER/bin/nativescript`. For example: -`PATH_TO_CLI_FOLDER/bin/nativescript run ios|android` +To use the locally built CLI instead `tns` you can call `PATH_TO_CLI_FOLDER/bin/tns`. For example: +`PATH_TO_CLI_FOLDER/bin/tns run ios|android` [Back to Top][1]