Skip to content

Commit

Permalink
refactor(createStore): use symbol-observable module rather than utils…
Browse files Browse the repository at this point in the history
… impl

This starts using symbol-observable (http://github.com/blesh/symbol-observable) module to get the Symbol.observable
instance
  • Loading branch information
benlesh committed Apr 19, 2016
1 parent 498e6d0 commit 164aa6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 20 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@
"dependencies": {
"lodash": "^4.2.1",
"lodash-es": "^4.2.1",
"loose-envify": "^1.1.0"
"loose-envify": "^1.1.0",
"symbol-observable": "^0.2.1"
},
"devDependencies": {
"babel-cli": "^6.3.15",
Expand Down
2 changes: 1 addition & 1 deletion src/createStore.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import isPlainObject from 'lodash/isPlainObject'
import $$observable from './utils/Symbol_observable'
import $$observable from 'symbol-observable';

/**
* These are private action types reserved by Redux.
Expand Down
18 changes: 0 additions & 18 deletions src/utils/Symbol_observable.js

This file was deleted.

0 comments on commit 164aa6d

Please sign in to comment.