初始化提交

This commit is contained in:
Jerry Yan 2020-02-26 09:04:49 +08:00
commit f94cec56aa
4 changed files with 93 additions and 0 deletions

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
*.pbxproj -text

67
.gitignore vendored Normal file
View File

@ -0,0 +1,67 @@
# OSX
#
.DS_Store
# 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
# Visual Studio Code
#
.vscode/
# node.js
#
node_modules/
npm-debug.log
yarn-error.log
# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/
*/fastlane/report.xml
*/fastlane/Preview.html
*/fastlane/screenshots
# Bundle artifact
*.jsbundle
# CocoaPods
/ios/Pods/
*.idea
yarn*

1
.npmignore Normal file
View File

@ -0,0 +1 @@
/android/build

24
package.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "jerry-rn-a-fitfullscreen",
"version": "1.0.0.0",
"description": "Fit FullScreen Mode.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "ssh://git@git.jerryyan.cn:29022/q792602257/jerry-rn-a-fitfullscreen.git"
},
"keywords": [
"react-native",
"ios",
"android"
],
"author": "Jerry Yan",
"license": "ISC",
"bugs": {
"url": "http://git.jerryyan.top/q792602257/jerry-rn-a-fitfullscreen"
},
"homepage": "http://git.jerryyan.top/q792602257/jerry-rn-a-fitfullscreen"
}