Skip to content

Commit

Permalink
feat(newarch)!: React Native new architecture support done in android…
Browse files Browse the repository at this point in the history
… and ios (#526)

This brings in support for the new architecture
  • Loading branch information
SolankiYogesh authored Feb 24, 2025
1 parent 32aab8b commit 6ae9c96
Show file tree
Hide file tree
Showing 97 changed files with 16,639 additions and 16,078 deletions.
47 changes: 27 additions & 20 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
version: 2.1
orbs:
rn: react-native-community/react-native@3.0.0
rn: react-native-community/react-native@8.0.1

jobs:
checkout_code:
executor: rn/linux_js
executor:
name: rn/linux_js
node_version: "20.18.3"
steps:
- checkout
- persist_to_workspace:
root: .
paths: .

analyse_js:
executor: rn/linux_js
executor:
name: rn/linux_js
node_version: "20.18.3"
steps:
- attach_workspace:
at: .
Expand All @@ -22,7 +26,9 @@ jobs:
command: yarn lint

type_check:
executor: rn/linux_js
executor:
name: rn/linux_js
node_version: "20.18.3"
steps:
- attach_workspace:
at: .
Expand All @@ -31,31 +37,32 @@ jobs:
name: Check for Typings
command: yarn type-check


release:
executor: rn/linux_js
executor:
name: rn/linux_js
node_version: "20.18.3"
steps:
- attach_workspace:
at: .
- rn/yarn_install
- run:
name: Publish to NPM
command: yarn semantic-release || true
name: Publish to NPM
command: yarn semantic-release || true

workflows:
ci:
jobs:
- checkout_code
- analyse_js:
requires:
- checkout_code
- type_check:
requires:
- checkout_code
- release:
requires:
- analyse_js
- type_check
filters:
- checkout_code
- analyse_js:
requires:
- checkout_code
- type_check:
requires:
- checkout_code
- release:
requires:
- analyse_js
- type_check
filters:
branches:
only: master
3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ dist
plugin/build

# user-specific files
local.properties
local.properties

.xcode.env.local
126 changes: 0 additions & 126 deletions android/android.iml

This file was deleted.

Loading

0 comments on commit 6ae9c96

Please sign in to comment.