Bump eslint-plugin-import to avoid vulnerability in dependency
This commit is contained in:
parent
10695e6a20
commit
ed9506bbaf
1660 changed files with 67726 additions and 27926 deletions
7
node_modules/is-regex/CHANGELOG.md
generated
vendored
7
node_modules/is-regex/CHANGELOG.md
generated
vendored
|
|
@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [v1.1.4](https://github.com/inspect-js/is-regex/compare/v1.1.3...v1.1.4) - 2021-08-05
|
||||
|
||||
### Commits
|
||||
|
||||
- [Dev Deps] update `auto-changelog`, `core-js`, `eslint`, `tape` [`4b17cad`](https://github.com/inspect-js/is-regex/commit/4b17cad8496b1ae621b18335fa3afe94d0c65e83)
|
||||
- [Refactor] use `has-tostringtag` to behave correctly in the presence of symbol shams [`2dad4af`](https://github.com/inspect-js/is-regex/commit/2dad4afffa15f07cbbf7675b77d1f650c92652c4)
|
||||
|
||||
## [v1.1.3](https://github.com/inspect-js/is-regex/compare/v1.1.2...v1.1.3) - 2021-05-07
|
||||
|
||||
### Commits
|
||||
|
|
|
|||
3
node_modules/is-regex/index.js
generated
vendored
3
node_modules/is-regex/index.js
generated
vendored
|
|
@ -1,8 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
var callBound = require('call-bind/callBound');
|
||||
var hasSymbols = require('has-symbols/shams')();
|
||||
var hasToStringTag = hasSymbols && !!Symbol.toStringTag;
|
||||
var hasToStringTag = require('has-tostringtag/shams')();
|
||||
var has;
|
||||
var $exec;
|
||||
var isRegexMarker;
|
||||
|
|
|
|||
12
node_modules/is-regex/package.json
generated
vendored
12
node_modules/is-regex/package.json
generated
vendored
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "is-regex",
|
||||
"version": "1.1.3",
|
||||
"version": "1.1.4",
|
||||
"description": "Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag",
|
||||
"author": "Jordan Harband <ljharb@gmail.com>",
|
||||
"funding": {
|
||||
|
|
@ -40,19 +40,19 @@
|
|||
],
|
||||
"dependencies": {
|
||||
"call-bind": "^1.0.2",
|
||||
"has-symbols": "^1.0.2"
|
||||
"has-tostringtag": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ljharb/eslint-config": "^17.6.0",
|
||||
"aud": "^1.1.5",
|
||||
"auto-changelog": "^2.2.1",
|
||||
"core-js": "^3.12.0",
|
||||
"auto-changelog": "^2.3.0",
|
||||
"core-js": "^3.16.0",
|
||||
"eclint": "^2.8.1",
|
||||
"eslint": "^7.26.0",
|
||||
"eslint": "^7.32.0",
|
||||
"foreach": "^2.0.5",
|
||||
"nyc": "^10.3.2",
|
||||
"safe-publish-latest": "^1.1.4",
|
||||
"tape": "^5.2.2"
|
||||
"tape": "^5.3.0"
|
||||
},
|
||||
"testling": {
|
||||
"files": "test/index.js",
|
||||
|
|
|
|||
3
node_modules/is-regex/test/index.js
generated
vendored
3
node_modules/is-regex/test/index.js
generated
vendored
|
|
@ -1,7 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
var hasSymbols = require('has-symbols/shams')();
|
||||
var hasToStringTag = hasSymbols && !!Symbol.toStringTag;
|
||||
var hasToStringTag = require('has-tostringtag/shams')();
|
||||
var forEach = require('foreach');
|
||||
var test = require('tape');
|
||||
var isRegex = require('..');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue