This repository has been archived by the owner on Jun 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update CLI reference docs * Update install description to address feedback. * Update index.html
- Loading branch information
1 parent
be230d4
commit c7231fb
Showing
10 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<stache | ||
pageTitle="install"> | ||
|
||
<p> | ||
<stache-code>skyux install</stache-code> deletes the <stache-code>node_modules</stache-code> folder and runs <stache-code>npm install</stache-code>. This clears the existing dependencies in the <stache-code>node_modules</stache-code> folder and ensures that all SKY UX dependencies are consistent with your <stache-code>package.json</stache-code> file. | ||
</p> | ||
|
||
</stache> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<stache-code>--name</stache-code> — Specifies a root directory for the application. The SKY UX CLI creates a folder with this name and prefixes it with "skyux-spa." The root directory determines how to access the SPA because the URL for the home page includes the root directory after the base URL. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<stache-code>--repo</stache-code> — Specifies the URL for a Git repo to store the source files for the application. You can use a Visual Studio Team System Git repo or a GitHub repo. The SKY UX CLI clones the repo and automatically pulls in the SKY UX template. To work locally only, you can create the SPA without a repo. Later, you can manually add a repo as a remote to the local application. To do this, enter <stache-code>git remote add origin [URL]</stache-code> in the command prompt, where "[URL]" is the path for the repo. Then to push local content to the external repo, enter <stache-code>git push origin --all</stache-code>. | ||
|
||
|