Skip to content

Commit 5f7c768

Browse files
authored
Version v2.0.0 Alpha 7 (#181)
* Reverted back to `add-module-exports` to fix issue with base level exports (breaking react-native example) * More files added to `.npmignore` including: * .travis.yml * CODE_OF_CONDUCT.md * CHANGELOG.md * .codeclimate.yml * PATRONS.md
1 parent 87eb3a4 commit 5f7c768

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.babelrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"presets": ["es2015", "react"],
33
"plugins": [
44
"lodash",
5+
"add-module-exports",
56
"transform-object-rest-spread",
67
"transform-object-assign",
78
"transform-class-properties"
@@ -11,8 +12,7 @@
1112
"comments": false
1213
},
1314
"commonjs": {
14-
"comments": false,
15-
"plugins": ["transform-es2015-modules-commonjs"]
15+
"comments": false
1616
},
1717
"test": {
1818
"plugins": ["transform-decorators-legacy"]

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,8 @@ book.json
1414
CNAME
1515
.github
1616
yarn.lock
17+
.travis.yml
18+
CODE_OF_CONDUCT.md
19+
CHANGELOG.md
20+
.codeclimate.yml
21+
PATRONS.md

examples/complete/react-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"react-native": "0.42.0",
1515
"react-native-google-signin": "0.9.0",
1616
"react-redux": "^5.0.3",
17-
"react-redux-firebase": "^2.0.0-alpha.4",
17+
"react-redux-firebase": "^2.0.0-alpha.7",
1818
"redux": "^3.6.0"
1919
},
2020
"devDependencies": {

examples/complete/react-native/yarn.lock

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1187,10 +1187,6 @@ errorhandler@~1.4.2:
11871187
accepts "~1.3.0"
11881188
escape-html "~1.0.3"
11891189

1190-
es6-promise@^4.1.0:
1191-
version "4.1.1"
1192-
resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.1.1.tgz#8811e90915d9a0dba36274f0b242dbda78f9c92a"
1193-
11941190
escape-html@1.0.2:
11951191
version "1.0.2"
11961192
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.2.tgz#d77d32fa98e38c2f41ae85e9278e0e0e6ba1022c"
@@ -2407,11 +2403,10 @@ react-proxy@^1.1.7:
24072403
lodash "^4.6.1"
24082404
react-deep-force-update "^1.0.0"
24092405

2410-
react-redux-firebase@^2.0.0-alpha.4:
2411-
version "2.0.0-alpha.4"
2412-
resolved "https://registry.yarnpkg.com/react-redux-firebase/-/react-redux-firebase-2.0.0-alpha.4.tgz#b6e77b7d05ab1d6030d5663adf35db6ee8c7902c"
2406+
react-redux-firebase@^2.0.0-alpha.7:
2407+
version "2.0.0-alpha.6"
2408+
resolved "https://registry.yarnpkg.com/react-redux-firebase/-/react-redux-firebase-2.0.0-alpha.7.tgz#87d55fca3d130ab13a6fd9c51da5aa8026beada4"
24132409
dependencies:
2414-
es6-promise "^4.1.0"
24152410
firebase "^4.1.3"
24162411
hoist-non-react-statics "^1.2.0"
24172412
jwt-decode "^2.2.0"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-redux-firebase",
3-
"version": "2.0.0-alpha.6",
3+
"version": "2.0.0-alpha.7",
44
"description": "Redux integration for Firebase. Comes with a Higher Order Component for use with React.",
55
"main": "lib/index.js",
66
"module": "es/index.js",
@@ -71,9 +71,9 @@
7171
"babel-eslint": "^7.2.1",
7272
"babel-loader": "^6.4.1",
7373
"babel-plugin-lodash": "^3.2.11",
74+
"babel-plugin-add-module-exports": "^0.2.1",
7475
"babel-plugin-transform-class-properties": "^6.23.0",
7576
"babel-plugin-transform-decorators-legacy": "^1.3.4",
76-
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
7777
"babel-plugin-transform-object-assign": "^6.22.0",
7878
"babel-plugin-transform-object-rest-spread": "^6.23.0",
7979
"babel-plugin-transform-runtime": "^6.23.0",

0 commit comments

Comments
 (0)