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

Commit ead3e84

Browse files
authored
Rewrite api surface (#274)
* Rewrite API surface using TypeScript * Streamline the README
1 parent 48430f0 commit ead3e84

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+6898
-2698
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,6 @@ node_modules
3737

3838
# OS X
3939
.DS_Store
40+
41+
# Project
42+
dist

.npmignore

+34-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,39 @@
11
# example project
2-
example
3-
2+
example/
3+
src/
44
# build
55
.travis
66
.travis.yml
7-
7+
yarn.lock
8+
npm-debug.log
9+
yarn-error.log
10+
.DS_Store
811
# Github stuff
9-
ISSUE_TEMPLATE.md
12+
ISSUE_TEMPLATE.md
13+
# Xcode
14+
#
15+
build/
16+
*.pbxuser
17+
!default.pbxuser
18+
*.mode1v3
19+
!default.mode1v3
20+
*.mode2v3
21+
!default.mode2v3
22+
*.perspectivev3
23+
!default.perspectivev3
24+
xcuserdata
25+
*.xccheckout
26+
*.moved-aside
27+
DerivedData
28+
*.hmap
29+
*.ipa
30+
*.xcuserstate
31+
project.xcworkspace
32+
# Android/IntelliJ
33+
#
34+
build/
35+
.idea
36+
.gradle
37+
local.properties
38+
*.iml
39+
!android/src/

.travis/run.sh

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ if [ "$LANE" = "node" ]; then
66
else
77
npm install -g react-native-cli
88
react-native -v
9+
yarn install
10+
yarn run tsc
911

1012
cd example
1113
yarn install

0 commit comments

Comments
 (0)