Skip to content

Commit 164aa6d

Browse files
committed
refactor(createStore): use symbol-observable module rather than utils impl
This starts using symbol-observable (http://github.com/blesh/symbol-observable) module to get the Symbol.observable instance
1 parent 498e6d0 commit 164aa6d

File tree

3 files changed

+3
-20
lines changed

3 files changed

+3
-20
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@
6363
"dependencies": {
6464
"lodash": "^4.2.1",
6565
"lodash-es": "^4.2.1",
66-
"loose-envify": "^1.1.0"
66+
"loose-envify": "^1.1.0",
67+
"symbol-observable": "^0.2.1"
6768
},
6869
"devDependencies": {
6970
"babel-cli": "^6.3.15",

src/createStore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import isPlainObject from 'lodash/isPlainObject'
2-
import $$observable from './utils/Symbol_observable'
2+
import $$observable from 'symbol-observable';
33

44
/**
55
* These are private action types reserved by Redux.

src/utils/Symbol_observable.js

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)