mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 10:11:03 +00:00
object-assign no longer needed under babel 6
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
const EventEmitter = require('events').EventEmitter;
|
||||
const _ = require('lodash');
|
||||
const assign = require('object-assign');
|
||||
const debug = require('debug')('scope:app-store');
|
||||
const Immutable = require('immutable');
|
||||
|
||||
@@ -100,7 +99,7 @@ function setDefaultTopologyOptions(topologyList) {
|
||||
|
||||
// Store API
|
||||
|
||||
const AppStore = assign({}, EventEmitter.prototype, {
|
||||
const AppStore = Object.assign({}, EventEmitter.prototype, {
|
||||
|
||||
CHANGE_EVENT: 'change',
|
||||
|
||||
|
||||
@@ -16,7 +16,6 @@
|
||||
"keymirror": "0.1.1",
|
||||
"lodash": "~3.10.1",
|
||||
"materialize-css": "0.97.2",
|
||||
"object-assign": "4.0.1",
|
||||
"page": "1.6.4",
|
||||
"react": "0.14.2",
|
||||
"react-addons-pure-render-mixin": "0.14.2",
|
||||
|
||||
Reference in New Issue
Block a user