Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
niftylettuce committed Sep 18, 2019
1 parent 848a940 commit 6348bd6
Show file tree
Hide file tree
Showing 3 changed files with 140 additions and 155 deletions.
22 changes: 0 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -802,28 +802,6 @@ If you're curious why it won't work in IE11, please see this [great documentatio
// Sourced from the StackTrace example from CabinJS docs
// <https://github.com/cabinjs/cabin#stacktrace>
//
//
// The following override is required until this PR is merged
// <https://github.com/stacktracejs/stackframe/pull/23>
//
StackFrame.prototype.toString = function() {
var fileName = this.getFileName() || '';
var lineNumber = this.getLineNumber() || '';
var columnNumber = this.getColumnNumber() || '';
var functionName = this.getFunctionName() || '';
if (this.getIsEval()) {
if (fileName) {
return '[eval] (' + fileName + ':' + lineNumber + ':' + columnNumber + ')';
}
return '[eval]:' + lineNumber + ':' + columnNumber;
}
if (functionName) {
return functionName + ' (' + fileName + ':' + lineNumber + ':' + columnNumber + ')';
}
return fileName + ':' + lineNumber + ':' + columnNumber;
}
var cabin = new Cabin({ key: 'YOUR-CABIN-API-KEY' });
uncaught.start();
uncaught.addListener(function(err) {
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@
"iserror": "^0.0.2",
"ms": "^2.1.2",
"on-finished": "^2.3.0",
"parse-err": "^0.0.10",
"parse-request": "^2.0.2"
"parse-err": "^0.0.11",
"parse-request": "^2.0.3"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"ava": "^2.3.0",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"ava": "^2.4.0",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"codecov": "^3.5.0",
"cross-env": "^5.2.1",
"eslint": "^6.3.0",
"cross-env": "^6.0.0",
"eslint": "^6.4.0",
"eslint-config-xo-lass": "^1.0.3",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-node": "^10.0.0",
Expand All @@ -66,7 +66,7 @@
"pino": "^5.13.3",
"remark-cli": "^7.0.0",
"remark-preset-github": "^0.0.16",
"request-received": "^0.0.2",
"request-received": "^0.0.3",
"response-time": "^2.3.2",
"rimraf": "^3.0.0",
"signale": "^1.4.0",
Expand Down
Loading

0 comments on commit 6348bd6

Please sign in to comment.