Skip to content

Commit e33ed9a

Browse files
committed
chore: v.2.1.1 + move to @types (0.2.13)
1 parent 068ed63 commit e33ed9a

File tree

3 files changed

+26
-13
lines changed

3 files changed

+26
-13
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<a name="0.2.13"></a>
2+
# 0.2.13 (2016-10-20)
3+
* Protractor 4
4+
* Move from `typings` to `@types`. See `tsconfig.json` changes.
5+
* Angular v2.1.1
6+
17
<a name="0.2.12"></a>
28
# 0.2.12 (2016-10-06)
39
* Angular v2.1.0

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,26 +25,26 @@
2525
}
2626
],
2727
"dependencies": {
28-
"@angular/common": "~2.1.0",
29-
"@angular/compiler": "~2.1.0",
30-
"@angular/core": "~2.1.0",
31-
"@angular/forms": "~2.1.0",
32-
"@angular/http": "~2.1.0",
33-
"@angular/platform-browser": "~2.1.0",
34-
"@angular/platform-browser-dynamic": "~2.1.0",
35-
"@angular/router": "~3.1.0",
36-
"@angular/upgrade": "~2.1.0",
28+
"@angular/common": "~2.1.1",
29+
"@angular/compiler": "~2.1.1",
30+
"@angular/core": "~2.1.1",
31+
"@angular/forms": "~2.1.1",
32+
"@angular/http": "~2.1.1",
33+
"@angular/platform-browser": "~2.1.1",
34+
"@angular/platform-browser-dynamic": "~2.1.1",
35+
"@angular/router": "~3.1.1",
36+
"@angular/upgrade": "~2.1.1",
3737

3838
"angular-in-memory-web-api": "~0.1.13",
3939
"bootstrap": "^3.3.7",
4040
"systemjs": "0.19.39",
4141
"core-js": "^2.4.1",
4242
"reflect-metadata": "^0.1.8",
4343
"rxjs": "5.0.0-beta.12",
44-
"zone.js": "^0.6.25"
44+
"zone.js": "^0.6.26"
4545
},
4646
"devDependencies": {
47-
"concurrently": "^3.0.0",
47+
"concurrently": "^3.1.0",
4848
"lite-server": "^2.2.2",
4949
"typescript": "^2.0.3",
5050

tsconfig.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88
"experimentalDecorators": true,
99
"removeComments": false,
1010
"noImplicitAny": true,
11-
"suppressImplicitAnyIndexErrors": true
12-
}
11+
"suppressImplicitAnyIndexErrors": true,
12+
"typeRoots": [
13+
"./node_modules/@types/"
14+
]
15+
},
16+
17+
"exclude": [
18+
"node_modules/*"
19+
]
1320
}

0 commit comments

Comments
 (0)