From f94cec56aa4227731c7a22e32b4329d702ace970 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Wed, 26 Feb 2020 09:04:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitattributes | 1 + .gitignore | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++ .npmignore | 1 + package.json | 24 ++++++++++++++++++ 4 files changed, 93 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .npmignore create mode 100644 package.json diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d42ff18 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.pbxproj -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8f4d128 --- /dev/null +++ b/.gitignore @@ -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* diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..a6107ad --- /dev/null +++ b/.npmignore @@ -0,0 +1 @@ +/android/build diff --git a/package.json b/package.json new file mode 100644 index 0000000..d2178e4 --- /dev/null +++ b/package.json @@ -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" +}