Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit cd5e40f

Browse files
author
Will Anderson
committed
Add React Native app stub to examples folder
0 parents  commit cd5e40f

File tree

18 files changed

+1460
-0
lines changed

18 files changed

+1460
-0
lines changed

.gitignore

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# Xcode
2+
#
3+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
## Build generated
6+
build/
7+
DerivedData
8+
9+
## Various settings
10+
*.pbxuser
11+
!default.pbxuser
12+
*.mode1v3
13+
!default.mode1v3
14+
*.mode2v3
15+
!default.mode2v3
16+
*.perspectivev3
17+
!default.perspectivev3
18+
xcuserdata
19+
20+
## Other
21+
*.xccheckout
22+
*.moved-aside
23+
*.xcuserstate
24+
25+
## Obj-C/Swift specific
26+
*.hmap
27+
*.ipa
28+
29+
# CocoaPods
30+
#
31+
# We recommend against adding the Pods directory to your .gitignore. However
32+
# you should judge for yourself, the pros and cons are mentioned at:
33+
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
34+
#
35+
#Pods/
36+
37+
# Carthage
38+
#
39+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
40+
# Carthage/Checkouts
41+
42+
Carthage/Build
43+
44+
### Node
45+
46+
# Logs
47+
logs
48+
*.log
49+
50+
# Runtime data
51+
pids
52+
*.pid
53+
*.seed
54+
55+
# Directory for instrumented libs generated by jscoverage/JSCover
56+
lib-cov
57+
58+
# Coverage directory used by tools like istanbul
59+
coverage
60+
61+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
62+
.grunt
63+
64+
# node-waf configuration
65+
.lock-wscript
66+
67+
# Compiled binary addons (http://nodejs.org/api/addons.html)
68+
build/Release
69+
70+
# Dependency directory
71+
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
72+
node_modules
73+
74+
# Xcode
75+
#
76+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
77+
78+
## Build generated
79+
build/
80+
DerivedData
81+
82+
## Various settings
83+
*.pbxuser
84+
!default.pbxuser
85+
*.mode1v3
86+
!default.mode1v3
87+
*.mode2v3
88+
!default.mode2v3
89+
*.perspectivev3
90+
!default.perspectivev3
91+
xcuserdata
92+
93+
## Other
94+
*.xccheckout
95+
*.moved-aside
96+
*.xcuserstate
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
[ignore]
2+
3+
# We fork some components by platform.
4+
.*/*.web.js
5+
.*/*.android.js
6+
7+
# Some modules have their own node_modules with overlap
8+
.*/node_modules/node-haste/.*
9+
10+
# Ignore react-tools where there are overlaps, but don't ignore anything that
11+
# react-native relies on
12+
.*/node_modules/react-tools/src/vendor/core/ExecutionEnvironment.js
13+
.*/node_modules/react-tools/src/browser/eventPlugins/ResponderEventPlugin.js
14+
.*/node_modules/react-tools/src/browser/ui/React.js
15+
.*/node_modules/react-tools/src/core/ReactInstanceHandles.js
16+
.*/node_modules/react-tools/src/event/EventPropagators.js
17+
18+
# Ignore commoner tests
19+
.*/node_modules/react-tools/node_modules/commoner/test/.*
20+
21+
# See https://github.com/facebook/flow/issues/442
22+
.*/react-tools/node_modules/commoner/lib/reader.js
23+
24+
# Ignore jest
25+
.*/react-native/node_modules/jest-cli/.*
26+
27+
[include]
28+
29+
[libs]
30+
node_modules/react-native/Libraries/react-native/react-native-interface.js
31+
32+
[options]
33+
module.system=haste
34+
35+
[version]
36+
0.11.0
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
build/
8+
*.pbxuser
9+
!default.pbxuser
10+
*.mode1v3
11+
!default.mode1v3
12+
*.mode2v3
13+
!default.mode2v3
14+
*.perspectivev3
15+
!default.perspectivev3
16+
xcuserdata
17+
*.xccheckout
18+
*.moved-aside
19+
DerivedData
20+
*.hmap
21+
*.ipa
22+
*.xcuserstate
23+
24+
# node.js
25+
#
26+
node_modules/
27+
npm-debug.log
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
build/
8+
*.pbxuser
9+
!default.pbxuser
10+
*.mode1v3
11+
!default.mode1v3
12+
*.mode2v3
13+
!default.mode2v3
14+
*.perspectivev3
15+
!default.perspectivev3
16+
xcuserdata
17+
*.xccheckout
18+
*.moved-aside
19+
DerivedData
20+
*.hmap
21+
*.ipa
22+
*.xcuserstate
23+
24+
# node.js
25+
#
26+
node_modules/
27+
npm-debug.log

0 commit comments

Comments
 (0)