This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//for Linus | |
#!/bin/bash | |
for lessfile in $(find -name "*.less"); do | |
cssfile=$(echo $lessfile | sed 's/\.less$/.css/i') | |
echo "Comiling $lessfile to $cssfile"; | |
rm -f $cssfile; | |
lessc $lessfile > $cssfile; | |
done; | |
//for macOS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/lottie-react-native/lottie-react-native.podspec b/node_modules/lottie-react-native/lottie-react-native.podspec | |
index 006d118..63caf4a 100644 | |
--- a/node_modules/lottie-react-native/lottie-react-native.podspec | |
+++ b/node_modules/lottie-react-native/lottie-react-native.podspec | |
@@ -14,7 +14,11 @@ Pod::Spec.new do |s| | |
s.source = { :git => "https://github.com/react-community/lottie-react-native.git", :tag => "v#{s.version}" } | |
s.source_files = "src/ios/**/*.{h,m,swift}" | |
- s.swift_version = "5.0" | |
- s.dependency 'React' |