Skip to content
This repository was archived by the owner on Oct 17, 2021. It is now read-only.

Commit 6ce075d

Browse files
committedDec 12, 2016
Update dependencies
* Update dependencies * Remove deprecated tslint rules
1 parent 0abe062 commit 6ce075d

File tree

3 files changed

+18
-22
lines changed

3 files changed

+18
-22
lines changed
 

‎gulpfile.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ gulp.task('tslint', () => {
3131
gulp.task("compile", ["tslint"], () => {
3232
let tsResult = gulp.src("src/**/*.ts")
3333
.pipe(sourcemaps.init())
34-
.pipe(tsc(tsProject));
34+
.pipe(tsProject());
3535
return tsResult.js
3636
.pipe(sourcemaps.write(".", {sourceRoot: '/src'}))
3737
.pipe(gulp.dest("build"));

‎package.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
"url": "https://github.com/kolorobot/angular2-typescript-gulp/issues"
2020
},
2121
"dependencies": {
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",
22+
"@angular/common": "~2.2.4",
23+
"@angular/compiler": "~2.2.4",
24+
"@angular/core": "~2.2.4",
25+
"@angular/forms": "~2.2.4",
26+
"@angular/http": "~2.2.4",
27+
"@angular/platform-browser": "~2.2.4",
28+
"@angular/platform-browser-dynamic": "~2.2.4",
29+
"@angular/router": "~3.2.4",
30+
"@angular/upgrade": "~2.2.4",
3131

3232
"core-js": "^2.4.1",
3333
"reflect-metadata": "^0.1.3",
@@ -36,16 +36,16 @@
3636
"zone.js": "^0.6.23"
3737
},
3838
"devDependencies": {
39-
"concurrently": "^2.2.0",
39+
"concurrently": "^3.1.0",
4040
"del": "^2.2.0",
4141
"gulp": "^3.9.1",
42-
"gulp-sourcemaps": "^1.6.0",
43-
"gulp-tslint": "^6.1.1 ",
44-
"gulp-typescript": "^2.13.6",
42+
"gulp-sourcemaps": "^1.9.1",
43+
"gulp-tslint": "^7.0.1",
44+
"gulp-typescript": "^3.1.3",
4545
"lite-server": "^2.2.2",
46-
"tslint": "^3.5.0",
47-
"typescript": "^2.0.2",
48-
"typings": "^1.3.3",
49-
"ts-node": "^1.3.0"
46+
"tslint": "^4.0.2",
47+
"typescript": "^2.1.4",
48+
"typings": "^2.0.0",
49+
"ts-node": "^1.7.2"
5050
}
5151
}

‎tslint.json

-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
4
1010
],
1111
"label-position": true,
12-
"label-undefined": true,
1312
"max-line-length": [
1413
true,
1514
140
@@ -26,14 +25,11 @@
2625
],
2726
"no-construct": true,
2827
"no-debugger": true,
29-
"no-duplicate-key": true,
3028
"no-duplicate-variable": true,
3129
"no-empty": false,
3230
"no-eval": true,
3331
"no-string-literal": false,
3432
"no-trailing-whitespace": true,
35-
"no-unused-variable": false,
36-
"no-unreachable": true,
3733
"no-use-before-declare": true,
3834
"one-line": [
3935
true,

0 commit comments

Comments
 (0)
This repository has been archived.