eslint-scope
Advanced tools
Comparing version 5.0.0 to 5.1.0
@@ -0,1 +1,5 @@ | ||
v5.1.0 - June 4, 2020 | ||
* [`d4a3764`](https://github.com/eslint/eslint-scope/commit/d4a376434b16289c1a428d7e304576e997520873) Update: support new export syntax (#56) (Toru Nagashima) | ||
v5.0.0 - July 20, 2019 | ||
@@ -2,0 +6,0 @@ |
@@ -596,2 +596,3 @@ /* | ||
// TODO: ExportDeclaration doesn't exist. for bc? | ||
ExportDeclaration(node) { | ||
@@ -601,2 +602,10 @@ this.visitExportDeclaration(node); | ||
ExportAllDeclaration(node) { | ||
this.visitExportDeclaration(node); | ||
} | ||
ExportDefaultDeclaration(node) { | ||
this.visitExportDeclaration(node); | ||
} | ||
ExportNamedDeclaration(node) { | ||
@@ -607,2 +616,4 @@ this.visitExportDeclaration(node); | ||
ExportSpecifier(node) { | ||
// TODO: `node.id` doesn't exist. for bc? | ||
const local = (node.id || node.local); | ||
@@ -609,0 +620,0 @@ |
@@ -6,3 +6,3 @@ { | ||
"main": "lib/index.js", | ||
"version": "5.0.0", | ||
"version": "5.1.0", | ||
"engines": { | ||
@@ -41,3 +41,4 @@ "node": ">=8.0.0" | ||
"eslint-release": "^1.0.0", | ||
"espree": "^6.0.0", | ||
"eslint-visitor-keys": "^1.2.0", | ||
"espree": "^7.1.0", | ||
"istanbul": "^0.4.5", | ||
@@ -44,0 +45,0 @@ "mocha": "^6.1.4", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77833
1882
13
1