Skip to content

Commit

Permalink
Add redux-persist to plugins list (#1171)
Browse files Browse the repository at this point in the history
* Add redux-persist to plugins list

* Use index.js as entry file
  • Loading branch information
ryanlntn authored and GantMan committed Oct 17, 2017
1 parent 8b2d4c8 commit cab7891
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions PLUGINS.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ name | supporting | author
[radio-buttons](https://github.com/robinheinze/ignite-radio-buttons) | [react-native-radio-buttons](https://github.com/ArnaudRinquin/react-native-radio-buttons) | [Robin Heinze](https://github.com/robinheinze)
[redux-devtools](https://github.com/infinitered/ignite-redux-devtools) | [remote-redux-devtools](https://github.com/zalmoxisus/remote-redux-devtools) | [Ryan Linton](https://github.com/ryanlntn)
[redux-logger](https://github.com/GantMan/ignite-redux-logger) | [redux-logger](https://github.com/evgenyrodionov/redux-logger) | [Gant Laborde](https://github.com/gantman)
[redux-persist](https://github.com/infinitered/ignite-redux-persist) | [redux-persist](https://github.com/rt2zz/redux-persist) | [Ryan Linton](https://github.com/ryanlntn)
[redux-thunk](https://github.com/kusti8/ignite-redux-thunk) | [redux-thunk](https://github.com/gaearon/redux-thunk) | [Gustav Hansen](https://github.com/kusti8)
[source-map](https://github.com/GantMan/ignite-source-map) | [source-map](https://github.com/mozilla/source-map) | [Gant Laborde](https://github.com/gantman)
[tab-view](https://github.com/dabit3/ignite-tab-view) | [react-native-tab-view](https://github.com/react-native-community/react-native-tab-view) | [Nadir Dabit](https://github.com/dabit3)
Expand Down
4 changes: 2 additions & 2 deletions bin/ci
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ check_builds()
test_command npm run lint

echo '~ Build ios'
test_command react-native bundle --entry-file index.ios.js --bundle-output test.ios.js --dev false --platform ios --assets-dest iosAssets
test_command react-native bundle --entry-file index.js --bundle-output test.ios.js --dev false --platform ios --assets-dest iosAssets
if [ ! -d "iosAssets" ]; then
echo 'iosAssets folder did not generate'
SOMETHING_FAILED=1
fi

echo '~ Build android'
test_command react-native bundle --entry-file index.android.js --bundle-output test.android.js --dev false --platform android --assets-dest androidAssets
test_command react-native bundle --entry-file index.js --bundle-output test.android.js --dev false --platform android --assets-dest androidAssets
if [ ! -d "androidAssets" ]; then
echo 'androidAssets folder did not generate'
SOMETHING_FAILED=1
Expand Down

0 comments on commit cab7891

Please sign in to comment.