Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c609e4c

Browse files
committedSep 26, 2016
Merge master
2 parents 7c12490 + 7e19c7a commit c609e4c

11 files changed

+234
-124
lines changed
 

‎dist/exceptionless.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -209,20 +209,20 @@ export declare class Configuration implements IConfigurationSettings {
209209
settings: Object;
210210
storage: IStorageProvider;
211211
queue: IEventQueue;
212+
private _apiKey;
213+
private _serverUrl;
214+
private _heartbeatServerUrl;
215+
private _updateSettingsWhenIdleInterval;
216+
private _dataExclusions;
217+
private _userAgentBotPatterns;
212218
private _plugins;
213219
private _handlers;
214220
constructor(configSettings?: IConfigurationSettings);
215-
private _apiKey;
216221
apiKey: string;
217222
isValid: boolean;
218-
private _serverUrl;
219223
serverUrl: string;
220-
private _heartbeatServerUrl;
221224
heartbeatServerUrl: string;
222-
private _updateSettingsWhenIdleInterval;
223225
updateSettingsWhenIdleInterval: number;
224-
private _dataExclusions;
225-
private _userAgentBotPatterns;
226226
dataExclusions: string[];
227227
addDataExclusions(...exclusions: string[]): void;
228228
userAgentBotPatterns: string[];
@@ -427,12 +427,12 @@ export declare class SubmissionMethodPlugin implements IEventPlugin {
427427
export declare class DuplicateCheckerPlugin implements IEventPlugin {
428428
priority: number;
429429
name: string;
430+
private _mergedEvents;
430431
private _processedHashcodes;
431432
private _getCurrentTime;
433+
private _interval;
432434
constructor(getCurrentTime?: () => number, interval?: number);
433435
run(context: EventPluginContext, next?: () => void): void;
434-
private onInterval();
435-
private enqueueMergedEvents();
436436
}
437437
export declare class EventExclusionPlugin implements IEventPlugin {
438438
priority: number;

‎dist/exceptionless.js

Lines changed: 66 additions & 29 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: 2 additions & 2 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: 61 additions & 25 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.

‎gulpfile.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
var fs = require("fs");
12
var pkg = require('./package.json');
23
var gulp = require('gulp');
34
var replace = require('gulp-replace');
@@ -28,10 +29,10 @@ gulp.task('exceptionless.umd', ['typescript', 'typescript.integrations'], functi
2829
.pipe(umd({
2930
exports: 'exports',
3031
globalName: 'exceptionless',
31-
namespace: 'exceptionless'
32+
namespace: 'exceptionless',
33+
deps: ['TraceKit'],
34+
template: fs.readFileSync('./umd.template.jst', 'utf8')
3235
}))
33-
.pipe(replace("define(factory);", "define('exceptionless', factory);"))
34-
.pipe(replace('}(this, function(require, exports, module) {', '}(this, function(require, exports, module) {\nif (!require) {\n\trequire = function(name) {\n\t\treturn (typeof window !== "undefined" ? window : global)[name];\n\t}\n}\nif (!exports) {\n\tvar exports = {};\n}'))
3536
.pipe(sourcemaps.write('.'))
3637
.pipe(gulp.dest('dist/temp'));
3738
});
@@ -91,8 +92,8 @@ gulp.task('watch', ['build'], function () {
9192
gulp.task('lint', function () {
9293
var tslint = require('gulp-tslint');
9394
return gulp.src(['src/**/*.ts', '!src/typings/**/*.ts'])
94-
.pipe(tslint())
95-
.pipe(tslint.report('verbose'));
95+
.pipe(tslint({ formatter: 'verbose' }))
96+
.pipe(tslint.report());
9697
});
9798

9899
gulp.task('build', ['clean', 'lint', 'exceptionless', 'exceptionless.node']);

‎package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,26 +28,26 @@
2828
},
2929
"devDependencies": {
3030
"chai": "3.5.0",
31-
"del": "2.2.0",
32-
"es5-shim": "4.5.8",
33-
"es6-shim": "0.35.0",
31+
"del": "2.2.1",
32+
"es5-shim": "4.5.9",
33+
"es6-shim": "0.35.1",
3434
"gulp": "3.9.1",
3535
"gulp-concat": "2.6.0",
3636
"gulp-exec": "2.1.2",
3737
"gulp-mocha": "2.2.0",
3838
"gulp-replace": "0.5.4",
3939
"gulp-sourcemaps": "1.6.0",
40-
"gulp-tslint": "5.0.0",
41-
"gulp-uglify": "1.5.3",
40+
"gulp-tslint": "6.0.1",
41+
"gulp-uglify": "1.5.4",
4242
"gulp-wrap-umd": "0.2.1",
43-
"rimraf": "2.5.2",
44-
"source-map-support": "0.4.0",
45-
"mock-fs": "3.9.0",
43+
"rimraf": "2.5.3",
44+
"source-map-support": "0.4.2",
45+
"mock-fs": "3.11.0",
4646
"tracekit": "0.4.3",
47-
"tslint": "3.8.1",
47+
"tslint": "3.13.0",
4848
"tsproject": "1.2.1",
4949
"typescript": "1.8.10",
50-
"typescript-formatter": "2.1.0"
50+
"typescript-formatter": "2.2.1"
5151
},
5252
"dependencies": {
5353
"stack-trace": "0.0.9"

0 commit comments

Comments
 (0)