Skip to content

Commit ae2576e

Browse files
Update dependencies
1 parent b231e7c commit ae2576e

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

gulpfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ var docOptions = {
9393
mode: "file",
9494
module: "commonjs",
9595
out: "docs",
96-
target: "es5"
96+
target: "es5",
97+
ignoreCompileErrors: true
9798
};
9899
gulp.task("docs", ["prod", "clean-docs"], function() {
99100
return gulp.src("src")

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
"gulp-typescript": "^3.1.5",
4242
"merge2": "^1.0.3",
4343
"mocha": "^3.2.0",
44-
"tslint": "^4.4.2",
44+
"tslint": "^4.5.1",
4545
"typedoc": "^0.5.7",
46-
"typescript": "^2.1.6"
46+
"typescript": "^2.2.1"
4747
}
4848
}

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export function isUndefined(val: any): val is undefined {
4545
/**
4646
* @private
4747
*/
48-
export function isObject(val: any): val is Object {
48+
export function isObject(val: any): val is object {
4949
return Object.prototype.toString.call(val) === "[object Object]";
5050
}
5151

0 commit comments

Comments
 (0)