Skip to content

Commit 35e9534

Browse files
committedApr 16, 2017
initial commit
0 parents  commit 35e9534

23 files changed

+1108
-0
lines changed
 

‎.editorconfig

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
12+
[*.md]
13+
max_line_length = 0
14+
trim_trailing_whitespace = false
15+
16+
# Indentation override
17+
#[lib/**.js]
18+
#[{package.json,.travis.yml}]
19+
#[**/**.js]

‎.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.idea
2+
node_modules
3+
jspm_packages
4+
npm-debug.*
5+
link-checker-results.txt
6+
app/**/*.js
7+
*.js.map
8+
e2e/**/*.js
9+
e2e/**/*.js.map
10+
_test-output
11+
_temp

‎.travis.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
dist: trusty
2+
sudo: required
3+
language: node_js
4+
node_js:
5+
- "5"
6+
os:
7+
- linux
8+
env:
9+
global:
10+
- DBUS_SESSION_BUS_ADDRESS=/dev/null
11+
- DISPLAY=:99.0
12+
- CHROME_BIN=chromium-browser
13+
before_script:
14+
- sh -e /etc/init.d/xvfb start
15+
install:
16+
- npm install
17+
script:
18+
- npm run lint
19+
- npm run test-once
20+
- npm run e2e

‎CHANGELOG.md

+193
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,193 @@
1+
## Angular Documentation QuickStart Changelog
2+
Upgraders: for a fresh start, consider running these commands
3+
* `git clean -xdf`
4+
* `npm install`
5+
6+
<a name="0.2.20"></a>
7+
# 0.2.20 (2016-12-07)
8+
* Update to Angular 2.3.0
9+
10+
<a name="0.2.19"></a>
11+
# 0.2.19 (2016-11-30)
12+
* remove upgrade mappings from `systemjs.config.js` PR #301
13+
14+
<a name="0.2.18"></a>
15+
# 0.2.18 (2016-11-30)
16+
* remove `exclude` clause from `tsconfig.json`; it was just confusing people
17+
* karma.config + karma-test-shim can handle multiple spec source paths (issue #294)
18+
* cosmetic `app.component.spec.ts` changes
19+
* cosmetic `karma.config.js` changes
20+
21+
<a name="0.2.17"></a>
22+
# 0.2.17 (2016-11-16)
23+
* Conform to updated QuickStart advice
24+
* removed docker everywhere (was nice but not necessary)
25+
* removed wallaby
26+
* shrink styles.css
27+
* refine tsconfig.json
28+
* `AppComponent` uses interpolation
29+
30+
<a name="0.2.16"></a>
31+
# 0.2.16 (2016-11-14)
32+
* Update to Angular 2.2.0
33+
34+
<a name="0.2.15"></a>
35+
# 0.2.15 (2016-10-29)
36+
* Revert to Jasmine 2.4.1 because bug in 2.5.x (see [jasmine issue #1231](https://github.com/jasmine/jasmine/issues/1231))
37+
38+
<a name="0.2.14"></a>
39+
# 0.2.14 (2016-10-29)
40+
* Remove bootstrap.css install
41+
* Angular v2.1.2
42+
43+
<a name="0.2.13"></a>
44+
# 0.2.13 (2016-10-20)
45+
* Protractor 4
46+
* Move from `typings` to `@types`. See `tsconfig.json` changes.
47+
* Angular v2.1.1
48+
49+
<a name="0.2.12"></a>
50+
# 0.2.12 (2016-10-06)
51+
* Angular v2.1.0
52+
53+
<a name="0.2.11"></a>
54+
# 0.2.11 (2016-10-06)
55+
* Angular v2.0.2
56+
* License is MIT
57+
* Current testing configuration
58+
* No code changes
59+
60+
<a name="0.2.10"></a>
61+
# 0.2.10 (2016-09-19)
62+
* All "Angular 2" references become just "Angular"
63+
* No code changes
64+
65+
<a name="0.2.9"></a>
66+
# 0.2.9 (2016-09-14)
67+
* Angular 2.0.0 version
68+
* Update to Typescript 2.0.2
69+
* Fix e2e test missing dir
70+
71+
<a name="0.2.8"></a>
72+
# 0.2.8 (2016-09-01)
73+
* remove @angular test libraries from system.js (now in shim)
74+
* update test related files
75+
* wallaby doesn't completely work. Researching.
76+
77+
<a name="0.2.7"></a>
78+
# 0.2.7 (2016-08-31)
79+
* Angular 2 RC6 version
80+
* Updated new forms, router, angular2-in-memory-web-api, karma, core-js, rxjs and zone.js packages
81+
* Removed router-deprecated package
82+
* Updated karma.conf.js and systemjs.config.js
83+
84+
<a name="0.2.6"></a>
85+
# 0.2.6 (2016-08-09)
86+
* Angular 2 RC5 version
87+
* Updated new forms, router and angular2-in-memory-web-api
88+
89+
<a name="0.2.5"></a>
90+
# 0.2.5 (2016-06-30)
91+
* Angular 2 RC4 version
92+
* Updated new forms and router
93+
94+
<a name="0.2.4"></a>
95+
# 0.2.4 (2016-06-21)
96+
* Angular 2 RC3 version
97+
* Add new forms and router
98+
* Add support for TS e2e tests
99+
100+
<a name="0.2.3"></a>
101+
# 0.2.3 (2016-06-15)
102+
* Angular 2 RC2 version
103+
104+
<a name="0.2.2"></a>
105+
# 0.2.2 (2016-05-21)
106+
* Update to Typings 1.x
107+
108+
<a name="0.2.1"></a>
109+
# 0.2.1 (2016-05-03)
110+
* Angular 2 RC01 version
111+
112+
<a name="0.2.0"></a>
113+
# 0.2.0 (2016-05-02)
114+
* Angular 2 RC0 version
115+
116+
<a name="0.1.17"></a>
117+
# 0.1.17 (2016-04-29)
118+
* update packages
119+
* Angular 2 beta 17
120+
* RxJS 5.0.0-beta.6
121+
* a2-in-memory-web-api 0.1.17
122+
123+
<a name="0.1.16"></a>
124+
# 0.1.16 (2016-04-26)
125+
* update packages
126+
* Angular 2 beta 16
127+
* a2-in-memory-web-api 0.1.6
128+
* protractor 3.3.0
129+
* typings 0.8.1
130+
* zone.js 0.6.12
131+
132+
* added favicon.ico
133+
134+
* testing
135+
- updated wallaby.js and karma.conf.js
136+
- updated app.component.spec.ts
137+
138+
139+
<a name="0.1.15"></a>
140+
# 0.1.15 (2016-04-13)
141+
* Add testing support
142+
* npm scripts
143+
* karma/jasmine
144+
* protractor
145+
146+
* update packages
147+
* Angular 2 beta 15
148+
* lite-server 2.2.0
149+
* systemjs 0.19.26
150+
* typescript 1.8.10
151+
* typings 0.7.12
152+
153+
* add run packages
154+
* a2-in-memory-web-api
155+
156+
* add testing dev-dependency packages
157+
* canonical-path: 0.0.2,
158+
* http-server: ^0.9.0,
159+
* jasmine-core: ~2.4.1,
160+
* karma: ^0.13.22,
161+
* karma-chrome-launcher: ^0.2.3,
162+
* karma-cli: ^0.1.2,
163+
* karma-htmlfile-reporter: ^0.2.2,
164+
* karma-jasmine: ^0.3.8,
165+
* protractor: ^3.2.2,
166+
* rimraf: ^2.5.2
167+
168+
<a name="0.1.14"></a>
169+
# 0.1.14 (2016-04-07)
170+
* update packages
171+
* Angular 2 beta 14
172+
* lite-server 2.2.0
173+
* typings 0.7.12
174+
175+
<a name="0.1.13"></a>
176+
# 0.1.13 (2016-03-31)
177+
* update packages
178+
* Angular 2 beta 13
179+
180+
<a name="0.1.12"></a>
181+
# 0.1.12 (2016-03-23)
182+
* update packages
183+
* Angular 2 beta 12
184+
* zones 0.6.6
185+
* remove es6-promise because no longer needed.
186+
187+
<a name="0.1.11"></a>
188+
# 0.1.11 (2016-03-18)
189+
* update packages
190+
* Angular 2 beta 11
191+
* zones 0.6.4
192+
* typescript 1.8.9
193+
* typings 0.7.9

‎LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) 2014-2016 Google, Inc.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

0 commit comments

Comments
 (0)