Skip to content
This repository was archived by the owner on Nov 23, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ node_modules/
npm-debug.log

index.ios.js
.idea
6 changes: 6 additions & 0 deletions .idea/jsLibraryMappings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/watcherTasks.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,11 @@
<false/>
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
</dict>
<key>NSAppTransportSecurity</key>
<dict>
<!--Include to allow all connections (NOT RECOMENDED)-->
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
</dict>
</plist>
45 changes: 30 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,34 @@
{
"name": "ReactNativeEs6Reflux",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node_modules/react-native/packager/packager.sh",
"webpack": "webpack --config webpack.config.js"
},
"name": "react-native-es6-reflux",
"version": "1.0.0",
"description": "As the very long repo title indicates, this is a boilerplate repository that includes the following:",
"main": "ignored-modules.js",
"dependencies": {
"babel-core": "^5.1.8",
"babel-loader": "^5.0.0",
"babel-runtime": "^5.1.8",
"eslint": "^0.19.0",
"eslint-plugin-react": "^2.2.0",
"react-native": "^0.5.0",
"reflux": "^0.2.7",
"webpack": "^1.8.4"
}
"babel-runtime": "^5.8.25",
"babel-loader": "^5.3.2",
"babel-core": "^5.8.25",
"eslint-plugin-react": "^2.7.1",
"react-native": "^0.11.4",
"react-native-webpack-server": "^0.6.0",
"react": "^0.13.3",
"reflux": "^0.2.12",
"webpack-dev-server": "^1.12.0",
"webpack": "^1.12.2"
},
"devDependencies": {},
"scripts": {
"prestart": "npm install",
"start": "rnws start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bukati/react-native-es6-reflux.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bukati/react-native-es6-reflux/issues"
},
"homepage": "https://github.com/Bukati/react-native-es6-reflux#readme"
}
4 changes: 3 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ var path = require("path");

module.exports = {
watch: true,
entry: path.join(__dirname, "/src/main.js"),
entry: {
'index.ios': path.join(__dirname, "/src/main.js")
},
externals: [require("./ignored-modules")],
module: {
loaders: [
Expand Down