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

Commit

Permalink
Rewrite api surface (#274)
Browse files Browse the repository at this point in the history
* Rewrite API surface using TypeScript
* Streamline the README
  • Loading branch information
cbrevik authored Aug 28, 2018
1 parent 48430f0 commit ead3e84
Show file tree
Hide file tree
Showing 46 changed files with 6,898 additions and 2,698 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ node_modules

# OS X
.DS_Store

# Project
dist
38 changes: 34 additions & 4 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,39 @@
# example project
example

example/
src/
# build
.travis
.travis.yml

yarn.lock
npm-debug.log
yarn-error.log
.DS_Store
# Github stuff
ISSUE_TEMPLATE.md
ISSUE_TEMPLATE.md
# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
project.xcworkspace
# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml
!android/src/
2 changes: 2 additions & 0 deletions .travis/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ if [ "$LANE" = "node" ]; then
else
npm install -g react-native-cli
react-native -v
yarn install
yarn run tsc

cd example
yarn install
Expand Down
Loading

0 comments on commit ead3e84

Please sign in to comment.