diff --git a/.DS_Store b/.DS_Store index 81e678a6..86e0f598 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.github/workflows/react-native-cicd.yml b/.github/workflows/react-native-cicd.yml index 158e3610..30a6c36b 100644 --- a/.github/workflows/react-native-cicd.yml +++ b/.github/workflows/react-native-cicd.yml @@ -147,27 +147,6 @@ jobs: echo "EAS CLI version:" eas --version - - name: 📋 Fix package.json main entry - run: | - # Check if jq is installed, if not install it - if ! command -v jq &> /dev/null; then - echo "Installing jq..." - sudo apt-get update && sudo apt-get install -y jq - fi - - # Fix the main entry in package.json - if [ -f ./package.json ]; then - # Create a backup - cp package.json package.json.bak - # Update the package.json - jq '.main = "node_modules/expo/AppEntry.js"' package.json > package.json.tmp && mv package.json.tmp package.json - echo "Updated package.json main entry" - cat package.json | grep "main" - else - echo "package.json not found" - exit 1 - fi - - name: 📱 Build Development APK if: github.event.inputs.buildType == 'all' || github.event.inputs.buildType == 'dev' || github.event_name == 'push' && (matrix.platform == 'android' || github.event.inputs.platform == 'all' || github.event.inputs.platform == 'android') run: | diff --git a/tailwind.config.js b/tailwind.config.js index 69fea544..064e2747 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,3 +1,4 @@ +// @ts-nocheck const gluestackPlugin = require('@gluestack-ui/nativewind-utils/tailwind-plugin'); /** @type {import('tailwindcss').Config} */