Skip to content

Commit 72b97d9

Browse files
committed
chore: bump deps
1 parent df58691 commit 72b97d9

File tree

3 files changed

+141
-173
lines changed

3 files changed

+141
-173
lines changed

template/assets/js/uncaught.js

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
const StackFrame = require('stackframe');
21
const StackTrace = require('stacktrace-js');
32
const prepareStackTrace = require('prepare-stack-trace');
43
const uncaught = require('uncaught');
@@ -9,42 +8,6 @@ const logger = require('./logger');
98
// Sourced from the StackTrace example from CabinJS docs
109
// <https://github.com/cabinjs/cabin#stacktrace>
1110
//
12-
13-
//
14-
// The following override is required until this PR is merged
15-
// <https://github.com/stacktracejs/stackframe/pull/23>
16-
//
17-
StackFrame.prototype.toString = function() {
18-
const fileName = this.getFileName() || '';
19-
const lineNumber = this.getLineNumber() || '';
20-
const columnNumber = this.getColumnNumber() || '';
21-
const functionName = this.getFunctionName() || '';
22-
if (this.getIsEval()) {
23-
if (fileName) {
24-
return (
25-
'[eval] (' + fileName + ':' + lineNumber + ':' + columnNumber + ')'
26-
);
27-
}
28-
29-
return '[eval]:' + lineNumber + ':' + columnNumber;
30-
}
31-
32-
if (functionName) {
33-
return (
34-
functionName +
35-
' (' +
36-
fileName +
37-
':' +
38-
lineNumber +
39-
':' +
40-
columnNumber +
41-
')'
42-
);
43-
}
44-
45-
return fileName + ':' + lineNumber + ':' + columnNumber;
46-
};
47-
4811
uncaught.start();
4912
uncaught.addListener(err => {
5013
// this will transform the error's `stack` property

template/package.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"dependencies": {
3232
"@hapi/boom": "^7.4.3",
3333
"@koa/router": "^8.0.1",
34-
"@ladjs/api": "^0.2.22",
34+
"@ladjs/api": "^0.2.23",
3535
"@ladjs/assets": "^0.0.11",
3636
"@ladjs/bootstrap-social": "^7.0.2",
3737
"@ladjs/bull": "^1.0.2",
@@ -44,15 +44,15 @@
4444
"@ladjs/policies": "^0.0.2",
4545
"@ladjs/proxy": "^1.0.0",
4646
"@ladjs/store-ip-address": "^0.0.6",
47-
"@ladjs/web": "^0.4.0",
47+
"@ladjs/web": "^0.4.1",
4848
"accounting": "^0.4.1",
49-
"aws-sdk": "^2.529.0",
49+
"aws-sdk": "^2.530.0",
5050
"axe": "^4.0.4",
5151
"basic-auth": "^2.0.1",
5252
"bitter-font": "^0.0.1",
5353
"boolean": "1.0.0",
5454
"bootstrap": "4.3.1",
55-
"cabin": "^5.0.7",
55+
"cabin": "^5.0.8",
5656
"captain-hook": "^0.0.3",
5757
"consolidate": "^0.15.1",
5858
"custom-fonts-in-emails": "^2.0.7",
@@ -85,22 +85,21 @@
8585
"mongoose-unique-validator": "^2.0.3",
8686
"nodemailer": "^6.3.0",
8787
"nodemailer-base64-to-s3": "^3.0.1",
88-
"parse-logs": "^0.0.17",
88+
"parse-logs": "^0.0.19",
8989
"passport-local-mongoose": "^5.0.1",
9090
"pino": "^5.13.3",
9191
"pluralize": "^8.0.0",
9292
"popper.js": "^1.15.0",
93-
"prepare-stack-trace": "^0.0.3",
93+
"prepare-stack-trace": "^0.0.4",
9494
"pug": "^2.0.4",
9595
"qs": "^6.8.0",
9696
"randomstring-extended": "^1.0.0",
9797
"sanitize-html": "^1.20.1",
9898
"signale": "^1.4.0",
9999
"spinkit": "^1.2.5",
100-
"stackframe": "^1.0.4",
101-
"stacktrace-js": "^2.0.0",
100+
"stacktrace-js": "^2.0.1",
102101
"strength": "^0.1.4",
103-
"sweetalert2": "^8.17.3",
102+
"sweetalert2": "^8.17.4",
104103
"titleize": "^2.1.0",
105104
"uncaught": "^0.0.5",
106105
"uuid": "^3.3.3",
@@ -113,7 +112,7 @@
113112
"@commitlint/cli": "^8.2.0",
114113
"@commitlint/config-conventional": "^8.2.0",
115114
"@ladjs/babelify": "^8.0.1",
116-
"@lwc/eslint-plugin-lwc": "^0.7.0",
115+
"@lwc/eslint-plugin-lwc": "^0.8.0",
117116
"ava": "^2.4.0",
118117
"babel-eslint": "^10.0.3",
119118
"browserify": "^16.5.0",
@@ -134,7 +133,7 @@
134133
"gulp-eslint": "^6.0.0",
135134
"gulp-if": "^3.0.0",
136135
"gulp-imagemin": "^6.1.0",
137-
"gulp-livereload": "^4.0.1",
136+
"gulp-livereload": "^4.0.2",
138137
"gulp-postcss": "^8.0.0",
139138
"gulp-pug-linter": "^1.3.0",
140139
"gulp-remark": "^7.0.0",
@@ -165,9 +164,9 @@
165164
"rc": "^1.2.8",
166165
"remark-cli": "^7.0.0",
167166
"remark-preset-github": "^0.0.16",
168-
"stylelint": "^10.1.0",
167+
"stylelint": "10.1.0",
169168
"stylelint-config-recommended-scss": "^3.3.0",
170-
"stylelint-scss": "^3.10.1",
169+
"stylelint-scss": "^3.11.0",
171170
"unassertify": "^2.1.1",
172171
"vinyl-buffer": "^1.0.1",
173172
"xo": "^0.24.0"

0 commit comments

Comments
 (0)