2015-01-29 17:10:49 -08:00
|
|
|
# Xcode
|
2015-02-25 09:54:45 -08:00
|
|
|
!**/*.xcodeproj
|
|
|
|
!**/*.pbxproj
|
|
|
|
!**/*.xcworkspacedata
|
|
|
|
!**/*.xcsettings
|
|
|
|
!**/*.xcscheme
|
2015-01-29 17:10:49 -08:00
|
|
|
*.pbxuser
|
|
|
|
!default.pbxuser
|
|
|
|
*.mode1v3
|
|
|
|
!default.mode1v3
|
|
|
|
*.mode2v3
|
|
|
|
!default.mode2v3
|
|
|
|
*.perspectivev3
|
|
|
|
!default.perspectivev3
|
|
|
|
xcuserdata
|
|
|
|
*.xccheckout
|
|
|
|
*.moved-aside
|
|
|
|
DerivedData
|
|
|
|
*.hmap
|
|
|
|
*.ipa
|
|
|
|
*.xcuserstate
|
2015-04-14 11:36:13 -07:00
|
|
|
project.xcworkspace
|
2015-01-29 17:10:49 -08:00
|
|
|
|
2015-12-18 11:33:32 +00:00
|
|
|
# Gradle
|
|
|
|
/build/
|
2017-05-22 12:55:07 -07:00
|
|
|
/RNTester/android/app/build/
|
|
|
|
/RNTester/android/app/gradle/
|
|
|
|
/RNTester/android/app/gradlew
|
|
|
|
/RNTester/android/app/gradlew.bat
|
2015-12-18 11:37:46 +00:00
|
|
|
/ReactAndroid/build/
|
2015-03-02 10:52:16 -08:00
|
|
|
|
2016-01-30 16:02:32 -05:00
|
|
|
# Buck
|
|
|
|
.buckd
|
|
|
|
buck-out
|
2016-02-25 16:39:29 -08:00
|
|
|
/ReactAndroid/src/main/jni/prebuilt/lib/armeabi-v7a/
|
|
|
|
/ReactAndroid/src/main/jni/prebuilt/lib/x86/
|
2016-09-23 15:54:44 -07:00
|
|
|
/ReactAndroid/src/main/gen
|
2016-01-30 16:02:32 -05:00
|
|
|
|
2015-10-12 16:35:14 +01:00
|
|
|
# Android
|
2015-09-14 15:35:58 +01:00
|
|
|
.idea
|
|
|
|
.gradle
|
|
|
|
local.properties
|
|
|
|
*.iml
|
2016-03-15 09:21:50 -07:00
|
|
|
/android/
|
2015-09-14 15:35:58 +01:00
|
|
|
|
2015-03-02 10:52:16 -08:00
|
|
|
# Node
|
2015-01-29 17:10:49 -08:00
|
|
|
node_modules
|
2015-05-04 01:34:36 +03:00
|
|
|
*.log
|
2015-07-09 14:12:56 +02:00
|
|
|
.nvm
|
Adds Danger support
Summary:
Testing Danger support in CI. Continuation of #14964, which Circle stopped building.
Update your node modules first: `npm install`
`npm run danger pr https://github.com/facebook/react-native/pull/14951`
Verify output. This PR should trigger a WIP warning, as well as a package.json warning:
```
> react-native@1000.0.0 danger /Users/hramos/git/react-native
> node ./node_modules/.bin/danger "pr" "https://github.com/facebook/react-native/pull/14951"
{
fails: [],
warnings: [
{
message: ":construction_worker: Work In Progress - <i>Do not merge yet.</i>"
},
{
message: ":lock: Changes were made to package.json - <i>This will require a manual import. Once approved, a Facebook employee should import the PR, then run `yarn add` for any new packages.</i>"
}
],
messages: [],
markdowns: ["This PR requires attention from the facebook/react-native team."]
}
```
`npm run danger pr https://github.com/facebook/react-native/pull/14946`
Verify output. This PR should trigger a warning against the lack of a test plan (note that the PR does have a test plan, but it does not title it as such):
```
{
fails: [],
warnings: [
{
message: ":clipboard: Test Plan - <i>This PR appears to be missing a Test Plan</i>"
}
],
messages: [],
markdowns: []
}
```
`npm run danger pr https://github.com/facebook/react-native/pull/13186`
Should warn against a missing test plan:
```
{
fails: [],
warnings: [
{
message: ":clipboard: Test Plan - <i>This PR appears to be missing a Test Plan.</i>"
}
],
messages: [],
markdowns: [":page_facing_up: Thanks for your contribution to the docs!"]
}
```
If the author is able to issue bot commands, we reasonably assume that this is coming from an established core contributor. Their PRs will be flagged for expedited review:
`npm run danger pr https://github.com/facebook/react-native/pull/14895`
```
{
fails: [],
warnings: [
{
message: ":clipboard: Test Plan - <i>This PR appears to be missing a Test Plan.</i>"
}
],
messages: [],
markdowns: ["This PR has been submitted by a core contributor. Notifying facebook/react-native."]
}
```
Closes https://github.com/facebook/react-native/pull/15061
Differential Revision: D5436605
Pulled By: hramos
fbshipit-source-id: 4ba9e812387d8a69893dab537af9b6cd108753cf
2017-07-18 11:08:35 -07:00
|
|
|
/danger/node_modules/
|
2015-10-12 16:35:14 +01:00
|
|
|
|
|
|
|
# OS X
|
|
|
|
.DS_Store
|
2016-05-16 12:15:22 -07:00
|
|
|
|
|
|
|
# Test generated files
|
|
|
|
/ReactAndroid/src/androidTest/assets/AndroidTestBundle.js
|
2016-12-13 17:07:13 -08:00
|
|
|
*.js.meta
|
2017-03-05 23:59:18 -08:00
|
|
|
|
2017-03-27 11:34:32 -07:00
|
|
|
/coverage
|
2017-03-05 23:59:18 -08:00
|
|
|
/third-party
|