Bump packages to fix linter

This commit is contained in:
Henry Mercer 2023-01-18 20:50:03 +00:00
parent ed9506bbaf
commit 0a11e3fdd9
6063 changed files with 378752 additions and 306784 deletions

View file

@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) Isaac Z. Schlueter <i@izs.me>, James Talmage <james@talmage.io> (github.com/jamestalmage), and Contributors
Copyright (c) 2016-2022 Isaac Z. Schlueter <i@izs.me>, James Talmage <james@talmage.io> (github.com/jamestalmage), and Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

10
node_modules/stack-utils/index.js generated vendored
View file

@ -161,7 +161,10 @@ class StackUtils {
setFile(res, site.getFileName(), this._cwd);
if (site.isConstructor()) {
res.constructor = true;
Object.defineProperty(res, 'constructor', {
value: true,
configurable: true,
});
}
if (site.isEval()) {
@ -260,7 +263,10 @@ class StackUtils {
setFile(res, file, this._cwd);
if (ctor) {
res.constructor = true;
Object.defineProperty(res, 'constructor', {
value: true,
configurable: true,
});
}
if (evalOrigin) {

View file

@ -1,6 +1,6 @@
{
"name": "stack-utils",
"version": "2.0.5",
"version": "2.0.6",
"description": "Captures and cleans stack traces",
"license": "MIT",
"repository": "tapjs/stack-utils",
@ -34,6 +34,6 @@
"pify": "^4.0.1",
"q": "^1.5.1",
"source-map-support": "^0.5.20",
"tap": "^15.0.9"
"tap": "^16.3.0"
}
}