Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

refactor: add src folder #3171

Merged
merged 35 commits into from
Feb 2, 2017
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
7bc7a53
boilerplate, gulpfile, quickstart
filipesilva Jan 28, 2017
f4bea02
move ts files up to cookbooks
filipesilva Jan 28, 2017
a1f9c0b
move rest of ts files
filipesilva Jan 30, 2017
90a88ca
fix tsconfig, default build task, json file
filipesilva Jan 30, 2017
d494e5d
fix js examples
filipesilva Jan 31, 2017
74048a0
fix webpack example
filipesilva Jan 31, 2017
41712e6
remove a2docs.css references
filipesilva Jan 31, 2017
fed922d
fix aot examples
filipesilva Jan 31, 2017
81f5694
fix webpack run task
filipesilva Jan 31, 2017
3f24fa3
fix cb-i18n
filipesilva Jan 31, 2017
f422bd9
fix upgrade examples
filipesilva Jan 31, 2017
3ae9182
fix unit tests
filipesilva Jan 31, 2017
a187a25
fix comment in deployment index
filipesilva Jan 31, 2017
652e6fa
removed unused typings.json
filipesilva Feb 1, 2017
cc75ad9
fix plunkers
filipesilva Feb 1, 2017
128be8a
fix js example paths
filipesilva Feb 1, 2017
b097525
fix ts quickstart/setup prose
filipesilva Feb 1, 2017
1be1534
add src folder note to setup
filipesilva Feb 1, 2017
33298d0
broadly replace app/ -> src/app/
filipesilva Feb 1, 2017
0a50ed7
broadly replace main.ts
filipesilva Feb 1, 2017
88a7616
broadly replaced index.html
filipesilva Feb 1, 2017
99feb82
broadly replace tsconfig
filipesilva Feb 1, 2017
a805364
replace systemjs
filipesilva Feb 1, 2017
e49686f
fix filetrees
filipesilva Feb 1, 2017
d527d2c
Minor prose fixes to aot, i18n cookbooks
filipesilva Feb 1, 2017
ecceee4
remove char harp was complaining about
filipesilva Feb 1, 2017
01d0a8a
update new reactive forms example
filipesilva Feb 1, 2017
2eaec29
fix quickstart jade error
filipesilva Feb 1, 2017
db7c819
fix mistakes uncovered by CI
filipesilva Feb 1, 2017
65a5f89
fix bad filename errors
filipesilva Feb 1, 2017
d873717
edit style guide 04-06 rule to use src
filipesilva Feb 2, 2017
4dc0bed
add changelog
filipesilva Feb 2, 2017
9e7e636
Incorporate Jesus's feedback
filipesilva Feb 2, 2017
281df32
fix snippet headers in toh1/2
filipesilva Feb 2, 2017
cec1f33
chore: tweak changelog and setup text
wardbell Feb 2, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions public/docs/ts/latest/guide/change-log.jade
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Copy link
Member

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 at src/main.ts or something like that?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

* `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/`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This sentence needs rewording, too many "to"

Copy link
Contributor Author

Choose a reason for hiding this comment

The 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
Expand Down