Skip to content

Commit a8746a7

Browse files
committed
Updated version number and packages
1 parent b9a49df commit a8746a7

10 files changed

+36
-54
lines changed

dist/exceptionless.js

Lines changed: 3 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.node.js

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/exceptionless.node.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/submitSync.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "exceptionless",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "JavaScript client for Exceptionless",
5-
"license": "Apache",
5+
"license": "Apache-2.0",
66
"main": "dist/exceptionless.node.js",
77
"jspm": {
88
"main": "dist/exceptionless.js"
@@ -22,23 +22,24 @@
2222
"reporting"
2323
],
2424
"devDependencies": {
25-
"bower": "1.4.1",
26-
"del": "1.2.0",
27-
"es5-shim": "4.1.10",
28-
"es6-shim": "0.33.0",
25+
"bower": "1.6.3",
26+
"del": "2.0.2",
27+
"es5-shim": "4.1.15",
28+
"es6-shim": "0.33.6",
2929
"gulp": "3.9.0",
3030
"gulp-concat": "2.6.0",
31-
"gulp-karma": "0.0.4",
32-
"gulp-replace": "0.5.3",
33-
"gulp-sourcemaps": "1.5.2",
34-
"gulp-uglify": "1.2.0",
31+
"gulp-karma": "0.0.5",
32+
"gulp-replace": "0.5.4",
33+
"gulp-sourcemaps": "1.6.0",
34+
"gulp-uglify": "1.4.2",
3535
"gulp-wrap-umd": "0.2.1",
3636
"jasmine-core": "2.3.4",
37-
"karma": "0.12.36",
38-
"karma-cli": "0.0.4",
39-
"karma-jasmine": "0.3.5",
40-
"karma-phantomjs-launcher": "0.2.0",
41-
"rimraf": "2.4.2",
37+
"karma": "0.13.11",
38+
"karma-cli": "0.1.1",
39+
"karma-jasmine": "0.3.6",
40+
"karma-phantomjs-launcher": "0.2.1",
41+
"phantomjs": "^1.9.18",
42+
"rimraf": "2.4.3",
4243
"tracekit": "0.3.0",
4344
"tsproject": "1.0.1",
4445
"typescript": "1.6.2"

src/exceptionless.node.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ process.on(SIGINT, function() {
9595
if (getListenerCount(process, SIGINT) <= 1) {
9696
process.exit(128 + SIGINT_CODE);
9797
}
98-
})
98+
});
9999

100100
process.on(EXIT, function(code: number) {
101101
/**
@@ -148,15 +148,13 @@ process.on(EXIT, function(code: number) {
148148
}
149149

150150
var client = ExceptionlessClient.default;
151-
var config = client.config;
152151
var message = getExitCodeReason(code);
153152

154153
if (message !== null) {
155154
client.submitLog(EXIT, message, 'Error')
156155
}
157156

158-
config.queue.process(true);
159-
157+
client.config.queue.process(true);
160158
// Application will now exit.
161159
});
162160

tsd.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
"bundle": "src/typings/tsd.d.ts",
77
"installed": {
88
"jasmine/jasmine.d.ts": {
9-
"commit": "d5f92f93bdb49f332fa662ff1d0cc8700f02e4dc"
9+
"commit": "68548c2daab053869f323d475419c693478bbb73"
1010
},
1111
"node/node.d.ts": {
12-
"commit": "3fc1377ce29dd9670975cb68615edf1b819fc4a5"
12+
"commit": "68548c2daab053869f323d475419c693478bbb73"
1313
},
1414
"angularjs/angular.d.ts": {
15-
"commit": "557bb595af0ab301d098fb5bd50943fffbfcee57"
15+
"commit": "68548c2daab053869f323d475419c693478bbb73"
1616
},
1717
"jquery/jquery.d.ts": {
18-
"commit": "557bb595af0ab301d098fb5bd50943fffbfcee57"
18+
"commit": "68548c2daab053869f323d475419c693478bbb73"
1919
},
2020
"stack-trace/stack-trace.d.ts": {
21-
"commit": "68114f9ff37de0f92c94126b6e0164e026a1737a"
21+
"commit": "68548c2daab053869f323d475419c693478bbb73"
2222
}
2323
}
2424
}

0 commit comments

Comments
 (0)