This repository was archived by the owner on Dec 4, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 877
refactor: add src folder #3171
Merged
Merged
refactor: add src folder #3171
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
7bc7a53
boilerplate, gulpfile, quickstart
filipesilva f4bea02
move ts files up to cookbooks
filipesilva a1f9c0b
move rest of ts files
filipesilva 90a88ca
fix tsconfig, default build task, json file
filipesilva d494e5d
fix js examples
filipesilva 74048a0
fix webpack example
filipesilva 41712e6
remove a2docs.css references
filipesilva fed922d
fix aot examples
filipesilva 81f5694
fix webpack run task
filipesilva 3f24fa3
fix cb-i18n
filipesilva f422bd9
fix upgrade examples
filipesilva 3ae9182
fix unit tests
filipesilva a187a25
fix comment in deployment index
filipesilva 652e6fa
removed unused typings.json
filipesilva cc75ad9
fix plunkers
filipesilva 128be8a
fix js example paths
filipesilva b097525
fix ts quickstart/setup prose
filipesilva 1be1534
add src folder note to setup
filipesilva 33298d0
broadly replace app/ -> src/app/
filipesilva 0a50ed7
broadly replace main.ts
filipesilva 88a7616
broadly replaced index.html
filipesilva 99feb82
broadly replace tsconfig
filipesilva a805364
replace systemjs
filipesilva e49686f
fix filetrees
filipesilva d527d2c
Minor prose fixes to aot, i18n cookbooks
filipesilva ecceee4
remove char harp was complaining about
filipesilva 01d0a8a
update new reactive forms example
filipesilva 2eaec29
fix quickstart jade error
filipesilva db7c819
fix mistakes uncovered by CI
filipesilva 65a5f89
fix bad filename errors
filipesilva d873717
edit style guide 04-06 rule to use src
filipesilva 4dc0bed
add changelog
filipesilva 9e7e636
Incorporate Jesus's feedback
filipesilva 281df32
fix snippet headers in toh1/2
filipesilva cec1f33
chore: tweak changelog and setup text
wardbell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
|
@@ -5,6 +5,17 @@ block includes | |
The Angular documentation is a living document with continuous improvements. | ||
This log calls attention to recent significant changes. | ||
|
||
## NEW: Added `src/` folder to all examples (2017-02-02) | ||
We've updated all our examples include a `src/` folder at the project root. | ||
Having this folder helps separate app code from setup and configuration files. | ||
You can read about moving your existing project to this structure in | ||
[the QuickStart repo update instructions](https://github.com/angular/quickstart#updating-to-a-newer-version-of-the-quickstart-repo). | ||
* `app/` has been moved to `src/app/` | ||
* `src/app/main.ts` has been moved to `src/main.ts` | ||
* `index.html`, `styles.css` and `tsconfig.json` have been moved inside `src/` | ||
* `systemjs.config.js` now imports `main.js` instead of `app`. | ||
* There is a new `bs-config.json` file at root to configure `lite-server` to serve `src/` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This sentence needs rewording, too many "to" There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Reworded |
||
|
||
## NEW: Reactive Forms guide (2017-01-31) | ||
The new [**Reactive Forms**](reactive-forms.html) guide explains how and why to build a "reactive form". | ||
"Reactive Forms" are the code-based counterpart to the declarative "Template Driven" forms approach | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't be better to say:
app/main.ts
is not atsrc/main.ts
or something like that?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed