Skip to content

Commit

Permalink
fix: move all files
Browse files Browse the repository at this point in the history
  • Loading branch information
okwasniewski committed Sep 18, 2024
1 parent 39a28d6 commit c9864be
Show file tree
Hide file tree
Showing 41 changed files with 699 additions and 3,113 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
run: yarn build

build-android:
runs-on: macos-latest-large
runs-on: macos-latest
env:
TURBO_CACHE_DIR: .turbo/android
steps:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}"
build-ios:
runs-on: macos-latest-large
runs-on: macos-latest
env:
TURBO_CACHE_DIR: .turbo/ios
steps:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Yarn
.package/.yarn/*
.yarn/*
!.yarn/patches
!.yarn/plugins
Expand Down Expand Up @@ -72,7 +73,7 @@ packages/webgpu/lib

# Cocoapods
#
apps/example/ios/Pods
apps/example/**/Pods
# Ruby
apps/vendor/

Expand Down
8 changes: 8 additions & 0 deletions apps/example/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": "react-native-wcandillon",
"ignorePatterns": ["**/*/components/meshes", "**/Pods/**"],
"rules": {
"no-bitwise": "off",
"@typescript-eslint/no-require-imports": "off"
}
}
2 changes: 1 addition & 1 deletion apps/example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
.idea/
.vs/
.xcode.env
Pods/
**/Pods/**
build/
dist/*
!dist/.gitignore
Expand Down
2 changes: 2 additions & 0 deletions apps/example/android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ android.jetifier.ignorelist=hermes-android,react-android
# You can also override it from the CLI using
# ./gradlew <task> -PreactNativeArchitectures=x86_64
reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
newArchEnabled=false
hermesEnabled=true

# Use this property to enable support to the new architecture.
# This will allow you to use TurboModules and the Fabric render in
Expand Down
8 changes: 3 additions & 5 deletions apps/example/app.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"name": "Example",
"displayName": "Example",
"singleApp": "example-app",
"components": [
{
"appKey": "Example",
"displayName": "Example"
"displayName": "Example",
"slug": "example-app"
}
],
"resources": {
Expand All @@ -23,10 +25,6 @@
"visionos": [
"dist/assets",
"dist/main.visionos.jsbundle"
],
"windows": [
"dist/assets",
"dist/main.windows.bundle"
]
}
}
3 changes: 3 additions & 0 deletions apps/example/babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
module.exports = {
presets: ['module:@react-native/babel-preset'],
plugins: [
'react-native-reanimated/plugin'
],
};
6 changes: 5 additions & 1 deletion apps/example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@ require "#{ws_dir}/node_modules/react-native-test-app/test_app.rb"

workspace 'Example.xcworkspace'

use_test_app!
options = {
:hermes_enabled => true
}

use_test_app! options
Loading

0 comments on commit c9864be

Please sign in to comment.