object-assign no longer needed under babel 6

This commit is contained in:
David Kaltschmidt
2015-11-11 19:35:21 +01:00
parent c458b29034
commit 2eb80d79bc
2 changed files with 1 additions and 3 deletions

View File

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

View File

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