Skip to content

Commit

Permalink
Fix use Object.assign instead of pollyfill
Browse files Browse the repository at this point in the history
closes #86
  • Loading branch information
Berkeley Martinez authored and Berkeley Martinez committed Oct 5, 2015
1 parent 5e624f4 commit aa56717
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ general:
- gh-pages
machine:
node:
version: iojs-v1.6.4
version: 4.1.1
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
"debug": "^2.1.3",
"invariant": "^2.0.0",
"node-uuid": "^1.4.1",
"object.assign": "^3.0.0",
"stampit": "^2.1.0",
"supermixer": "^1.0.2",
"warning": "^2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/Actions.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import Rx from 'rx';
import warning from 'warning';
import assign from 'object.assign';
import stampit from 'stampit';
import debugFactory from 'debug';

import waitFor from './waitFor';

const assign = Object.assign;
const debug = debugFactory('thundercats:actions');
const currentStampSpec = [
'methods',
Expand Down
2 changes: 1 addition & 1 deletion src/Store.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import uuid from 'node-uuid';
import assign from 'object.assign';
import stampit from 'stampit';
import { Observable, Disposable } from 'rx';
import invariant from 'invariant';
Expand All @@ -18,6 +17,7 @@ import {
isPromise
} from './utils';

const assign = Object.assign;
const debug = debugFactory('thundercats:store');
const __DEV__ = process.env.NODE_ENV !== 'production';

Expand Down
2 changes: 1 addition & 1 deletion src/Translate.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Observable } from 'rx';
import invariant from 'invariant';
import assign from 'object.assign';
import debugFactory from 'debug';
import {
createObjectValidator,
Expand All @@ -9,6 +8,7 @@ import {
isKitten
} from './utils';

const assign = Object.assign;
const __DEV__ = process.env.NODE_ENV === 'development';
const debug = debugFactory('thundercats:translate');

Expand Down

0 comments on commit aa56717

Please sign in to comment.