Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-scope

Package Overview
Dependencies
Maintainers
4
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-scope - npm Package Compare versions

Comparing version 5.0.0 to 5.1.0

4

CHANGELOG.md

@@ -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 @@

5

package.json

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc