Skip to content

Commit 4e59552

Browse files
committed
Updated dependencies and fixed linting issues
1 parent de041fd commit 4e59552

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,25 +26,25 @@
2626
"url": "git://github.com/exceptionless/Exceptionless.JavaScript.git"
2727
},
2828
"devDependencies": {
29-
"bower": "1.6.5",
3029
"chai": "^3.4.1",
31-
"del": "2.1.0",
32-
"es5-shim": "4.3.1",
33-
"es6-shim": "0.33.13",
30+
"del": "2.2.0",
31+
"es5-shim": "4.4.1",
32+
"es6-shim": "0.34.1",
3433
"gulp": "3.9.0",
3534
"gulp-concat": "2.6.0",
3635
"gulp-exec": "^2.1.2",
3736
"gulp-mocha": "^2.2.0",
3837
"gulp-replace": "0.5.4",
3938
"gulp-sourcemaps": "1.6.0",
40-
"gulp-tslint": "3.6.0",
39+
"gulp-tslint": "4.3.0",
4140
"gulp-uglify": "1.5.1",
4241
"gulp-wrap-umd": "0.2.1",
43-
"rimraf": "2.4.3",
44-
"source-map-support": "^0.3.3",
42+
"rimraf": "2.5.0",
43+
"source-map-support": "^0.4.0",
4544
"tracekit": "0.3.1",
46-
"tsproject": "1.0.5",
47-
"typescript": "1.6.2",
45+
"tslint": "^3.2.1",
46+
"tsproject": "1.2.0-rc.4",
47+
"typescript": "1.7.5",
4848
"typescript-formatter": "^1.1.0"
4949
},
5050
"dependencies": {

src/EventBuilder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export class EventBuilder {
153153
return false;
154154
}
155155

156-
for (var index = 0; index < value.length; index++) {
156+
for (let index = 0; index < value.length; index++) {
157157
let code = value.charCodeAt(index);
158158
let isDigit = (code >= 48) && (code <= 57);
159159
let isLetter = ((code >= 65) && (code <= 90)) || ((code >= 97) && (code <= 122));

src/Utils-spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ describe('Utils', () => {
2121
name: 'Blake',
2222
password: '123456',
2323
passwordResetToken: 'a reset token',
24-
myPasswordValue: '123456',
2524
myPassword: '123456',
25+
myPasswordValue: '123456',
2626
customValue: 'Password',
2727
value: {
2828
Password: '123456'

tsd.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@
66
"bundle": "src/typings/tsd.d.ts",
77
"installed": {
88
"node/node.d.ts": {
9-
"commit": "68548c2daab053869f323d475419c693478bbb73"
9+
"commit": "d1f6bde13f2209be42e86c3686761e8bfcbb50a5"
1010
},
1111
"angularjs/angular.d.ts": {
12-
"commit": "68548c2daab053869f323d475419c693478bbb73"
12+
"commit": "d1f6bde13f2209be42e86c3686761e8bfcbb50a5"
1313
},
1414
"jquery/jquery.d.ts": {
15-
"commit": "68548c2daab053869f323d475419c693478bbb73"
15+
"commit": "d1f6bde13f2209be42e86c3686761e8bfcbb50a5"
1616
},
1717
"stack-trace/stack-trace.d.ts": {
18-
"commit": "68548c2daab053869f323d475419c693478bbb73"
18+
"commit": "d1f6bde13f2209be42e86c3686761e8bfcbb50a5"
1919
},
2020
"mocha/mocha.d.ts": {
21-
"commit": "fa04c80f4a889613b96cb4f283848c61a9f64233"
21+
"commit": "d1f6bde13f2209be42e86c3686761e8bfcbb50a5"
2222
},
2323
"assertion-error/assertion-error.d.ts": {
24-
"commit": "fa04c80f4a889613b96cb4f283848c61a9f64233"
24+
"commit": "d1f6bde13f2209be42e86c3686761e8bfcbb50a5"
2525
},
2626
"chai/chai.d.ts": {
27-
"commit": "fa04c80f4a889613b96cb4f283848c61a9f64233"
27+
"commit": "d1f6bde13f2209be42e86c3686761e8bfcbb50a5"
2828
}
2929
}
3030
}

tslint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"no-unreachable": true,
4242
"no-use-before-declare": true,
4343
"no-var-keyword": true,
44-
"object-literal-sort-keys": true,
44+
"object-literal-sort-keys": false,
4545
"one-line": [true,
4646
"check-open-brace",
4747
"check-catch",

0 commit comments

Comments
 (0)