Skip to content

Commit b4267aa

Browse files
committed
fix(build): fix rxjs typings issues on build
1 parent fa54e46 commit b4267aa

File tree

3 files changed

+17
-13
lines changed

3 files changed

+17
-13
lines changed

gulp-tasks/lint.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ gitignore.push('**/*.ts');
99
gulp.task('tslint', () =>
1010
gulp
1111
.src(gitignore)
12-
.pipe(tslint())
13-
.pipe(tslint.report('prose', {
12+
.pipe(tslint({
13+
formatter: 'verbose',
1414
emitError: true,
1515
summarizeFailureOutput: true,
1616
reportLimit: 50
1717
}))
18+
.pipe(tslint.report())
1819
);
1920

2021
gulp.task('lint', ['tslint']);

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
},
5151
"homepage": "https://github.com/valor-software/ng2-bootstrap#readme",
5252
"dependencies": {
53-
"moment": "2.13.0"
53+
"moment": "2.14.1"
5454
},
5555
"peerDependencies": {
5656
"@angular/common": "2.0.0-rc.4",
@@ -66,7 +66,7 @@
6666
"@angular/platform-browser": "2.0.0-rc.4",
6767
"@angular/platform-browser-dynamic": "2.0.0-rc.4",
6868
"@angular/router": "3.0.0-beta.2",
69-
"async": "1.5.2",
69+
"async": "2.0.0",
7070
"bootstrap": "3.3.6",
7171
"codecov": "1.0.1",
7272
"conventional-changelog-cli": "1.2.0",
@@ -76,26 +76,26 @@
7676
"es6-promise": "3.2.1",
7777
"es6-shim": "0.35.1",
7878
"es7-reflect-metadata": "1.6.0",
79-
"eslint-config-valorsoft": "0.0.16",
79+
"eslint-config-valorsoft": "0.1.0",
8080
"file-loader": "0.9.0",
8181
"gh-pages": "0.11.0",
8282
"gitignore-to-glob": "0.2.1",
8383
"google-code-prettify": "1.0.1",
8484
"gulp": "3.9.1",
8585
"gulp-size": "2.1.0",
86-
"gulp-tslint": "5.0.0",
87-
"lite-server": "2.2.0",
86+
"gulp-tslint": "6.0.1",
87+
"lite-server": "2.2.2",
8888
"marked": "0.3.5",
89-
"ng2-webpack-config": "0.0.3",
89+
"ng2-webpack-config": "0.0.4",
9090
"pre-commit": "1.1.3",
91-
"reflect-metadata": "0.1.2",
91+
"reflect-metadata": "0.1.3",
9292
"require-dir": "0.3.0",
9393
"rxjs": "5.0.0-beta.6",
9494
"systemjs-builder": "0.15.23",
95-
"tslint-config-valorsoft": "1.0.3",
96-
"typedoc": "0.4.1",
95+
"tslint-config-valorsoft": "1.1.0",
96+
"typedoc": "0.4.4",
9797
"typescript": "1.8.10",
98-
"typings": "1.3.0",
98+
"typings": "1.3.1",
9999
"zone.js": "0.6.12"
100100
}
101101
}

tslint.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"rulesDirectory": "./node_modules/codelyzer",
44
"rules": {
55
"component-selector-name": [false, ""],
6-
"no-constructor-vars": false
6+
"no-constructor-vars": false,
7+
"ordered-imports": false,
8+
"import-destructuring-spacing": false,
9+
"only-arrow-functions": false
710
}
811
}

0 commit comments

Comments
 (0)