Skip to content

Commit 4324327

Browse files
committed
Updated to Angular 2.0.0
1 parent 2811677 commit 4324327

File tree

3 files changed

+23
-19
lines changed

3 files changed

+23
-19
lines changed

gulpfile.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ gulp.task('clean', (cb) => {
1919
*/
2020
gulp.task('tslint', () => {
2121
return gulp.src("src/**/*.ts")
22-
.pipe(tslint())
23-
.pipe(tslint.report('prose'));
22+
.pipe(tslint({
23+
formatter: 'prose'
24+
}))
25+
.pipe(tslint.report());
2426
});
2527

2628
/**

package.json

+17-16
Original file line numberDiff line numberDiff line change
@@ -19,32 +19,33 @@
1919
"url": "https://github.com/kolorobot/angular2-typescript-gulp/issues"
2020
},
2121
"dependencies": {
22-
"@angular/common": "2.0.0-rc.6",
23-
"@angular/compiler": "2.0.0-rc.6",
24-
"@angular/core": "2.0.0-rc.6",
25-
"@angular/forms": "2.0.0-rc.6",
26-
"@angular/http": "2.0.0-rc.6",
27-
"@angular/platform-browser": "2.0.0-rc.6",
28-
"@angular/platform-browser-dynamic": "2.0.0-rc.6",
29-
"@angular/router": "3.0.0-rc.2",
30-
"@angular/upgrade": "2.0.0-rc.6",
22+
"@angular/common": "2.0.0",
23+
"@angular/compiler": "2.0.0",
24+
"@angular/core": "2.0.0",
25+
"@angular/forms": "2.0.0",
26+
"@angular/http": "2.0.0",
27+
"@angular/platform-browser": "2.0.0",
28+
"@angular/platform-browser-dynamic": "2.0.0",
29+
"@angular/router": "3.0.0",
30+
"@angular/upgrade": "2.0.0",
3131

3232
"core-js": "^2.4.1",
3333
"reflect-metadata": "^0.1.3",
34-
"rxjs": "5.0.0-beta.11",
34+
"rxjs": "5.0.0-beta.12",
3535
"systemjs": "0.19.27",
36-
"zone.js": "^0.6.17"
36+
"zone.js": "^0.6.23"
3737
},
3838
"devDependencies": {
3939
"concurrently": "^2.2.0",
4040
"del": "^2.2.0",
4141
"gulp": "^3.9.1",
4242
"gulp-sourcemaps": "^1.6.0",
43-
"gulp-tslint": "^4.3.3",
44-
"gulp-typescript": "^2.12.0",
45-
"lite-server": "^2.2.0",
43+
"gulp-tslint": "^6.1.1 ",
44+
"gulp-typescript": "^2.13.6",
45+
"lite-server": "^2.2.2",
4646
"tslint": "^3.5.0",
47-
"typescript": "^1.8.10",
48-
"typings": "^1.3.2"
47+
"typescript": "^2.0.2",
48+
"typings": "^1.3.3",
49+
"ts-node": "^1.3.0"
4950
}
5051
}

typings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"globalDependencies": {
33
"core-js": "registry:dt/core-js#0.0.0+20160725163759",
4-
"node": "registry:dt/node#6.0.0+20160831021119"
4+
"node": "registry:dt/node#6.0.0+20160909174046",
5+
"jasmine": "registry:dt/jasmine#2.2.0+20160621224255"
56
}
67
}

0 commit comments

Comments
 (0)