Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
robertying committed Jan 21, 2022
1 parent f456e9b commit 4956304
Show file tree
Hide file tree
Showing 4 changed files with 151 additions and 322 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@
}
},
"dependencies": {
"@babel/core": "7.16.7",
"@babel/core": "7.16.10",
"@babel/runtime": "7.16.7",
"@react-native-async-storage/async-storage": "1.15.15",
"@react-native-async-storage/async-storage": "1.15.16",
"@react-native-community/eslint-config": "3.0.1",
"@react-native-masked-view/masked-view": "0.2.6",
"@react-navigation/bottom-tabs": "6.0.9",
"@react-navigation/native": "6.0.6",
"@react-navigation/native-stack": "6.2.5",
"@types/jest": "27.4.0",
"@types/mime-types": "2.1.1",
"@types/react-native": "0.66.12",
"@types/react-native": "0.66.15",
"@types/react-native-share": "3.3.3",
"@types/react-native-vector-icons": "6.4.10",
"@types/react-redux": "7.1.22",
Expand All @@ -57,7 +57,7 @@
"eslint": "8.7.0",
"expo": "44.0.5",
"expo-calendar": "10.1.0",
"expo-file-system": "13.2.0",
"expo-file-system": "13.2.1",
"expo-haptics": "11.1.0",
"expo-intent-launcher": "10.1.0",
"expo-secure-store": "11.1.0",
Expand All @@ -72,10 +72,10 @@
"postinstall-postinstall": "2.1.0",
"prettier": "2.5.1",
"react": "17.0.2",
"react-native": "0.67.0",
"react-native": "0.67.1",
"react-native-code-push": "7.0.4",
"react-native-device-info": "8.4.8",
"react-native-document-picker": "7.1.3",
"react-native-document-picker": "8.0.0",
"react-native-fs": "2.18.0",
"react-native-gesture-handler": "2.2.0",
"react-native-interactable": "2.0.1",
Expand All @@ -98,6 +98,6 @@
"semver": "7.3.5",
"thu-learn-lib-no-native": "https://github.com/robertying/thu-learn-lib-no-native.git",
"typesafe-actions": "5.1.0",
"typescript": "4.5.4"
"typescript": "4.5.5"
}
}
210 changes: 0 additions & 210 deletions patches/expo-file-system+13.2.0.patch

This file was deleted.

44 changes: 44 additions & 0 deletions patches/expo-file-system+13.2.1.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
diff --git a/node_modules/expo-file-system/android/build.gradle b/node_modules/expo-file-system/android/build.gradle
index fd2598b..99c634f 100644
--- a/node_modules/expo-file-system/android/build.gradle
+++ b/node_modules/expo-file-system/android/build.gradle
@@ -1,6 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
-apply plugin: 'maven'
+apply plugin: 'maven-publish'

group = 'host.exp.exponent'
version = '13.2.1'
@@ -20,27 +20,16 @@ buildscript {
}
}

-//Upload android library to maven with javadoc and android sources
-configurations {
- deployerJars
-}
-
//Creating sources with comments
task androidSourcesJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.java.srcDirs
}

-//Put the androidSources and javadoc to the artifacts
-artifacts {
- archives androidSourcesJar
-}
-
-uploadArchives {
- repositories {
- mavenDeployer {
- configuration = configurations.deployerJars
- repository(url: mavenLocal().url)
+publishing {
+ publications {
+ mavenLocal(MavenPublication) {
+ artifact androidSourcesJar
}
}
}
Loading

0 comments on commit 4956304

Please sign in to comment.