Skip to content

Commit

Permalink
fix(build): fix rxjs typings issues on build
Browse files Browse the repository at this point in the history
  • Loading branch information
valorkin committed Jul 14, 2016
1 parent fa54e46 commit b4267aa
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
5 changes: 3 additions & 2 deletions gulp-tasks/lint.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ gitignore.push('**/*.ts');
gulp.task('tslint', () =>
gulp
.src(gitignore)
.pipe(tslint())
.pipe(tslint.report('prose', {
.pipe(tslint({
formatter: 'verbose',
emitError: true,
summarizeFailureOutput: true,
reportLimit: 50
}))
.pipe(tslint.report())
);

gulp.task('lint', ['tslint']);
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
},
"homepage": "https://github.com/valor-software/ng2-bootstrap#readme",
"dependencies": {
"moment": "2.13.0"
"moment": "2.14.1"
},
"peerDependencies": {
"@angular/common": "2.0.0-rc.4",
Expand All @@ -66,7 +66,7 @@
"@angular/platform-browser": "2.0.0-rc.4",
"@angular/platform-browser-dynamic": "2.0.0-rc.4",
"@angular/router": "3.0.0-beta.2",
"async": "1.5.2",
"async": "2.0.0",
"bootstrap": "3.3.6",
"codecov": "1.0.1",
"conventional-changelog-cli": "1.2.0",
Expand All @@ -76,26 +76,26 @@
"es6-promise": "3.2.1",
"es6-shim": "0.35.1",
"es7-reflect-metadata": "1.6.0",
"eslint-config-valorsoft": "0.0.16",
"eslint-config-valorsoft": "0.1.0",
"file-loader": "0.9.0",
"gh-pages": "0.11.0",
"gitignore-to-glob": "0.2.1",
"google-code-prettify": "1.0.1",
"gulp": "3.9.1",
"gulp-size": "2.1.0",
"gulp-tslint": "5.0.0",
"lite-server": "2.2.0",
"gulp-tslint": "6.0.1",
"lite-server": "2.2.2",
"marked": "0.3.5",
"ng2-webpack-config": "0.0.3",
"ng2-webpack-config": "0.0.4",
"pre-commit": "1.1.3",
"reflect-metadata": "0.1.2",
"reflect-metadata": "0.1.3",
"require-dir": "0.3.0",
"rxjs": "5.0.0-beta.6",
"systemjs-builder": "0.15.23",
"tslint-config-valorsoft": "1.0.3",
"typedoc": "0.4.1",
"tslint-config-valorsoft": "1.1.0",
"typedoc": "0.4.4",
"typescript": "1.8.10",
"typings": "1.3.0",
"typings": "1.3.1",
"zone.js": "0.6.12"
}
}
5 changes: 4 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"rulesDirectory": "./node_modules/codelyzer",
"rules": {
"component-selector-name": [false, ""],
"no-constructor-vars": false
"no-constructor-vars": false,
"ordered-imports": false,
"import-destructuring-spacing": false,
"only-arrow-functions": false
}
}

0 comments on commit b4267aa

Please sign in to comment.