Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Commit 7d23f8e

Browse files
corbinunzakas
authored andcommitted
Chore: Remove es6-map and es6-weakmap as they are included in node4 (#10)
1 parent 019441e commit 7d23f8e

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
"betarelease": "eslint-prerelease beta"
2424
},
2525
"dependencies": {
26-
"es6-map": "^0.1.3",
27-
"es6-weak-map": "^2.0.1",
2826
"esrecurse": "^4.1.0",
2927
"estraverse": "^4.1.1"
3028
},

src/scope-manager.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*/
2424
"use strict";
2525

26-
const WeakMap = require('es6-weak-map');
2726
const Scope = require('./scope');
2827
const assert = require('assert');
2928

src/scope.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
"use strict";
2525

2626
const Syntax = require('estraverse').Syntax;
27-
const Map = require('es6-map');
2827

2928
const Reference = require('./reference');
3029
const Variable = require('./variable');

0 commit comments

Comments
 (0)