Skip to content

Feature: Populate module info with installed node modules #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Oct 31, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ install:
- npm install -g gulp
- npm install -g bower
- npm install
- tsd reinstall -s
- bower install

build_script:
Expand Down
2 changes: 2 additions & 0 deletions dist/exceptionless.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,9 @@ export declare class ConfigurationDefaultsPlugin implements IEventPlugin {
export declare class ErrorPlugin implements IEventPlugin {
priority: number;
name: string;
ignoredProperties: string[];
run(context: EventPluginContext, next?: () => void): void;
private getAdditionalData(exception);
}
export declare class ModuleInfoPlugin implements IEventPlugin {
priority: number;
Expand Down
40 changes: 40 additions & 0 deletions dist/exceptionless.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/exceptionless.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/exceptionless.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/exceptionless.min.js.map

Large diffs are not rendered by default.

102 changes: 102 additions & 0 deletions dist/exceptionless.node.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/exceptionless.node.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"phantomjs": "^1.9.18",
"rimraf": "2.4.3",
"tracekit": "0.3.0",
"tsproject": "1.0.1",
"tsproject": "1.0.4",
"typescript": "1.6.2"
},
"dependencies": {
Expand Down
2 changes: 2 additions & 0 deletions src/exceptionless.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import { IModuleCollector } from './services/IModuleCollector';
import { IRequestInfoCollector } from './services/IRequestInfoCollector';
import { NodeEnvironmentInfoCollector } from './services/NodeEnvironmentInfoCollector';
import { NodeErrorParser } from './services/NodeErrorParser';
import { NodeModuleCollector } from './services/NodeModuleCollector';
import { NodeRequestInfoCollector } from './services/NodeRequestInfoCollector';
import { InMemoryStorage } from './storage/InMemoryStorage';
import { IStorage } from './storage/IStorage';
Expand All @@ -56,6 +57,7 @@ const SIGINT_CODE: number = 2;
let defaults = Configuration.defaults;
defaults.environmentInfoCollector = new NodeEnvironmentInfoCollector();
defaults.errorParser = new NodeErrorParser();
defaults.moduleCollector = new NodeModuleCollector();
defaults.requestInfoCollector = new NodeRequestInfoCollector();
defaults.submissionAdapter = new NodeSubmissionAdapter();

Expand Down
Loading