Skip to content

Commit bef6fce

Browse files
authored
Version v1.3.3 (#76)
### Enhancements * `react-redux` and `redux` removed from peer dependencies * `react-redux` and `redux` removed from bundle externals * dependencies in travis `before_install` removed (unnecessary)
1 parent 91c2bd9 commit bef6fce

File tree

4 files changed

+7
-21
lines changed

4 files changed

+7
-21
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ addons:
2121
code_climate:
2222
repo_token: $CODE_CLIMATE
2323

24-
before_install:
25-
- "npm install react redux react-redux"
26-
2724
after_success:
2825
- npm install -g codeclimate-test-reporter
2926
- codeclimate-test-reporter < coverage/lcov.info

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-redux-firebase",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "Redux integration for Firebase. Comes with a Higher Order Component for use with React.",
55
"browser": "dist/react-redux-firebase.js",
66
"main": "lib/index.js",
@@ -56,9 +56,7 @@
5656
"lodash": "^4.17.4"
5757
},
5858
"peerDependencies": {
59-
"react": "^0.14.6 || ^15.0.0",
60-
"react-redux": "^4.0.6 || ^5.0.0",
61-
"redux": "^3.0.5 || ^3.6.0"
59+
"react": "^0.14.6 || ^15.0.0"
6260
},
6361
"devDependencies": {
6462
"babel-cli": "^6.18.0",
@@ -94,8 +92,10 @@
9492
"istanbul": "^1.1.0-alpha.1",
9593
"jsdom": "^9.8.3",
9694
"mocha": "^3.1.2",
97-
"react-addons-test-utils": "^15.4.0",
98-
"react-dom": "^15.4.0",
95+
"react": "^15.4.2",
96+
"react-addons-test-utils": "^15.4.2",
97+
"react-dom": "^15.4.2",
98+
"redux": "3.6.0",
9999
"rimraf": "^2.5.4",
100100
"sinon": "^1.17.6",
101101
"sinon-chai": "^2.8.0",

src/actions/query.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { forEach, size } from 'lodash'
12
import { actionTypes } from '../constants'
23
import { promisesForPopulate } from '../utils/populate'
3-
import { forEach, size } from 'lodash'
44
import {
55
applyParamsToQuery,
66
getWatcherCount,

webpack.config.js

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,6 @@ const config = {
2020
commonjs2: 'react',
2121
amd: 'react',
2222
root: 'React'
23-
},
24-
redux: {
25-
commonjs: 'redux',
26-
commonjs2: 'redux',
27-
amd: 'redux',
28-
root: 'Redux'
29-
},
30-
'react-redux': {
31-
commonjs: 'react-redux',
32-
amd: 'react-redux',
33-
root: 'ReactRedux'
3423
}
3524
},
3625
plugins: [

0 commit comments

Comments
 (0)