Bump packages to fix linter
This commit is contained in:
parent
ed9506bbaf
commit
0a11e3fdd9
6063 changed files with 378752 additions and 306784 deletions
2
node_modules/stack-utils/license → node_modules/stack-utils/LICENSE.md
generated
vendored
2
node_modules/stack-utils/license → node_modules/stack-utils/LICENSE.md
generated
vendored
|
|
@ -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
10
node_modules/stack-utils/index.js
generated
vendored
|
|
@ -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) {
|
||||
|
|
|
|||
4
node_modules/stack-utils/package.json
generated
vendored
4
node_modules/stack-utils/package.json
generated
vendored
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue