@react-native-vector-icons/common 0.0.1-alpha.17 → 0.0.1-alpha.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/android/build.gradle
CHANGED
|
@@ -114,7 +114,7 @@ if (isNewArchitectureEnabled()) {
|
|
|
114
114
|
android.sourceSets.main.assets.srcDirs += file("$buildDir/intermediates/RNVI")
|
|
115
115
|
|
|
116
116
|
task copyFonts(type: Exec) {
|
|
117
|
-
commandLine 'node', '../lib/commonjs/scripts/getFonts.js', rootDir.parentFile.absolutePath
|
|
117
|
+
commandLine 'node', '../lib/commonjs/scripts/getFonts.js', "${rootDir.parentFile.absolutePath}/package.json"
|
|
118
118
|
def fonts = new ByteArrayOutputStream()
|
|
119
119
|
standardOutput = fonts
|
|
120
120
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-vector-icons/common",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.19",
|
|
4
4
|
"description": "Customizable Icons for React Native with support for image source and full styling.",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|
|
@@ -135,5 +135,5 @@
|
|
|
135
135
|
"javaPackageName": "com.reactnativevectoricons.common"
|
|
136
136
|
}
|
|
137
137
|
},
|
|
138
|
-
"gitHead": "
|
|
138
|
+
"gitHead": "1d1b223014a6615de11f2d8f965ddec8f6960635"
|
|
139
139
|
}
|
|
@@ -42,7 +42,7 @@ Pod::Spec.new do |s|
|
|
|
42
42
|
# Items we need to copy for rsync
|
|
43
43
|
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
|
|
44
44
|
|
|
45
|
-
node \"
|
|
45
|
+
node \"${PODS_TARGET_SRCROOT}/lib/commonjs/scripts/getFonts.js\" \"$PROJECT_ROOT\"/package.json > \"$RESOURCES_TO_COPY\"
|
|
46
46
|
|
|
47
47
|
#############
|
|
48
48
|
# Find the destination we copy to
|