Skip to content

Commit 4908516

Browse files
Fatme HavaluovaFatme
Fatme Havaluova
authored andcommitted
Help for install command
1 parent 4b8342a commit 4908516

File tree

7 files changed

+37
-1
lines changed

7 files changed

+37
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
install
2+
==========
3+
4+
Usage | Synopsis
5+
---|---
6+
General | `$ tns install [--path]`
7+
8+
Installs all platforms and dependencies described in package.json file.
9+
10+
### Options
11+
* `--path` - Specifies the directory where you want to create the project, if different from the current directory. The directory must be empty.
12+
13+
<% if(isHtml) { %>
14+
### Related Commands
15+
16+
Command | Description
17+
----------|----------
18+
[platform add](platform-add.html) | Configures the current project to target the selected platform.
19+
[platform remove](platform-remove.html) | Removes the selected platform from the platforms that the project currently targets.
20+
[platform update](platform-update.html) | Updates the NativeScript runtime for the specified platform.
21+
[platform](platform.html) | Lists all platforms that the project currently targets.
22+
[prepare](prepare.html) | Copies common and relevant platform-specific content from the app directory to the subdirectory for the selected target platform in the platforms directory.
23+
<% } %>

docs/man_pages/project/configuration/platform-add.md

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ To list only experimental versions for ios, run `$ npm view tns-ios dist-tags`
3131

3232
Command | Description
3333
----------|----------
34+
[install](install.html) | Installs all platforms and dependencies described in package.json file.
3435
[platform remove](platform-remove.html) | Removes the selected platform from the platforms that the project currently targets.
3536
[platform update](platform-update.html) | Updates the NativeScript runtime for the specified platform.
3637
[platform](platform.html) | Lists all platforms that the project currently targets.

docs/man_pages/project/configuration/platform-remove.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Removes the selected platform from the platforms that the project currently targ
2424

2525
Command | Description
2626
----------|----------
27+
[install](install.html) | Installs all platforms and dependencies described in package.json file.
2728
[platform add](platform-add.html) | Configures the current project to target the selected platform.
2829
[platform update](platform-update.html) | Updates the NativeScript runtime for the specified platform.
2930
[platform](platform.html) | Lists all platforms that the project currently targets.

docs/man_pages/project/configuration/platform-update.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ To list only experimental versions for ios, run `$ npm view tns-ios dist-tags`
2929

3030
Command | Description
3131
----------|----------
32+
[install](install.html) | Installs all platforms and dependencies described in package.json file.
3233
[platform add](platform-add.html) | Configures the current project to target the selected platform.
3334
[platform remove](platform-remove.html) | Removes the selected platform from the platforms that the project currently targets.
3435
[platform](platform.html) | Lists all platforms that the project currently targets.

docs/man_pages/project/configuration/platform.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Lists all platforms that the project currently targets. You can build and deploy
1212

1313
Command | Description
1414
----------|----------
15+
[install](install.html) | Installs all platforms and dependencies described in package.json file.
1516
[platform add](platform-add.html) | Configures the current project to target the selected platform.
1617
[platform remove](platform-remove.html) | Removes the selected platform from the platforms that the project currently targets.
1718
[platform update](platform-update.html) | Updates the NativeScript runtime for the specified platform.

docs/man_pages/project/configuration/prepare.md

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ in the `platforms` directory. This lets you build the project with the SDK for t
2323

2424
Command | Description
2525
----------|----------
26+
[install](install.html) | Installs all platforms and dependencies described in package.json file.
2627
[platform add](platform-add.html) | Configures the current project to target the selected platform.
2728
[platform remove](platform-remove.html) | Removes the selected platform from the platforms that the project currently targets.
2829
[platform update](platform-update.html) | Updates the NativeScript runtime for the specified platform.

docs/man_pages/project/creation/create.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,12 @@ Creates a new project for native development with NativeScript from the default
1616
* `<App Name>` is the name of project. The specified name must meet the requirements of all platforms that you want to target. <% if(isConsole) { %>For more information about the `<App Name>` requirements, run `$ tns help create`<% } %><% if(isHtml) { %>For projects that target Android, you can use uppercase or lowercase letters, numbers, and underscores. The name must start with a letter.
1717
For projects that target iOS, you can use uppercase or lowercase letters, numbers, and hyphens.<% } %>
1818
* `<App ID>` is the application identifier for your project. It must be a domain name in reverse and must meet the requirements of all platforms that you want to target. If not specified, the application identifier is set to `org.nativescript.<App name>` <% if(isConsole) { %>For more information about the `<App ID>` requirements, run `$ tns help create`<% } %><% if(isHtml) { %>For projects that target Android, you can use uppercase or lowercase letters, numbers, and underscores in the strings of the reversed domain name, separated by a dot. Strings must be separated by a dot and must start with a letter. For example: `com.nativescript.My_Andro1d_App`
19-
For projects that target iOS, you can use uppercase or lowercase letters, numbers, and hyphens in the strings of the reversed domain name. Strings must be separated by a dot. For example: `com.nativescript.My-i0s-App`.<% } %>
19+
For projects that target iOS, you can use uppercase or lowercase letters, numbers, and hyphens in the strings of the reversed domain name. Strings must be separated by a dot. For example: `com.nativescript.My-i0s-App`.<% } %>
20+
21+
<% if(isHtml) { %>
22+
### Related Commands
23+
24+
Command | Description
25+
----------|----------
26+
[install](install.html) | Creates and prepares a NativeScript project from the specified package.json file.]
27+
<% } %>

0 commit comments

Comments
 (0)