docs(setup-anatomy): edit copy to guidelines (#3382)

This commit is contained in:
Kapunahele Wong 2017-03-17 18:24:46 -04:00 committed by Jules Kremer
parent a8540b01d3
commit cc7287d1be
1 changed files with 8 additions and 8 deletions

View File

@ -2,7 +2,7 @@ block includes
include ../_util-fns include ../_util-fns
:marked :marked
The documentation [setup](setup.html) procedures install a _lot_ of files, The documentation [setup](setup.html) procedures install a _lot_ of files.
Most of them can be safely ignored. Most of them can be safely ignored.
Application files _inside the_ **`src/`** and **`e2e/`** folders matter most to developers. Application files _inside the_ **`src/`** and **`e2e/`** folders matter most to developers.
@ -19,10 +19,10 @@ table(width="100%")
th File th File
th Purpose th Purpose
tr tr
td <code>src/app/...</code> td <code>src/app/</code>
td td
:marked :marked
Your Angular application files go here. Angular application files go here.
Ships with the "Hello Angular" sample's Ships with the "Hello Angular" sample's
`AppComponent`, `AppModule`, a component unit test (`app.component.spec.ts`), and `AppComponent`, `AppModule`, a component unit test (`app.component.spec.ts`), and
@ -32,17 +32,17 @@ table(width="100%")
and the <live-example name="setup" plnkr="quickstart-specs">unit test</live-example> and the <live-example name="setup" plnkr="quickstart-specs">unit test</live-example>
as _live examples_. as _live examples_.
tr tr
td <code>e2e/...</code> td <code>e2e/</code>
td td
:marked :marked
_End-to-end_ (e2e) tests of your application, _End-to-end_ (e2e) tests of the application,
written in Jasmine and run by the written in Jasmine and run by the
<a href="http://www.protractortest.org/" target="_blank" title="Protractor: end-to-end testing for Angular">protractor</a> <a href="http://www.protractortest.org/" target="_blank" title="Protractor: end-to-end testing for Angular">protractor</a>
e2e test runner. e2e test runner.
Initialized with an e2e test for the "Hello Angular" sample. Initialized with an e2e test for the "Hello Angular" sample.
tr tr
td <code>node_modules/...</code> td <code>node_modules/</code>
td td
:marked :marked
The _npm_ packages installed with the `npm install` command. The _npm_ packages installed with the `npm install` command.
@ -50,7 +50,7 @@ table(width="100%")
td td
code. code.
.editorconfig<br> .editorconfig<br>
.git/...<br> .git/<br>
.gitignore<br> .gitignore<br>
.travis.yml .travis.yml
td td
@ -138,7 +138,7 @@ table(width="100%")
td td
:marked :marked
Tells the **SystemJS** module loader where to find modules Tells the **SystemJS** module loader where to find modules
referenced in JavaScript `import` statements such as referenced in JavaScript `import` statements. For example:
code-example(language="ts"). code-example(language="ts").
import { Component } from '@angular/core; import { Component } from '@angular/core;
:marked :marked