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

Chore: Remove es6-map and es6-weakmap as they are included in node4 #10

Merged
merged 1 commit into from
Feb 11, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"betarelease": "eslint-prerelease beta"
},
"dependencies": {
"es6-map": "^0.1.3",
"es6-weak-map": "^2.0.1",
"esrecurse": "^4.1.0",
"estraverse": "^4.1.1"
},
Expand Down
1 change: 0 additions & 1 deletion src/scope-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
*/
"use strict";

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

Expand Down
1 change: 0 additions & 1 deletion src/scope.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"use strict";

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

const Reference = require('./reference');
const Variable = require('./variable');
Expand Down