clipboard icon indicating copy to clipboard operation
clipboard copied to clipboard

feat: prepare lib for RN 0.74

Open WoLewicki opened this issue 1 year ago • 2 comments

Overview

PR preparing lib for RN 0.74. by bumping the FabricExample app and aligning spec with newest codegen.

Test Plan

WoLewicki avatar Mar 25 '24 14:03 WoLewicki

Any updates on this? Right now getting error when updating react-native to 0.74.1

Jonnboy91 avatar Jun 03 '24 10:06 Jonnboy91

Jonnboy91

If you are stuck on this problem, until they fix it you can add override to package.json.

{
  "name": "Test",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "android": "react-native run-android",
    "ios": "react-native run-ios",
    "lint": "eslint .",
    "start": "react-native start",
    "test": "jest"
  },
  "dependencies": {
    "react": "18.2.0",
    "react-native": "0.74.1",
    "realm": "12.6.2"
  },
  "devDependencies": {
    "@babel/core": "^7.20.0",
    "@babel/preset-env": "^7.20.0",
    "@babel/runtime": "^7.20.0",
    "@react-native/babel-preset": "0.74.83",
    "@react-native/eslint-config": "0.74.83",
    "@react-native/metro-config": "0.74.83",
    "@react-native/typescript-config": "0.74.83",
    "@types/react": "^18.2.6",
    "@types/react-test-renderer": "^18.0.0",
    "babel-jest": "^29.6.3",
    "eslint": "^8.19.0",
    "jest": "^29.6.3",
    "prettier": "2.8.8",
    "react-test-renderer": "18.2.0",
    "typescript": "5.0.4"
  },
  "engines": {
    "node": ">=18"
  },
  "overrides": {
    "@react-native-clipboard/clipboard": {
      "react-native": "~0.74.1",
      "react-native-windows": "~0.74.1"
    }
  }
}

alexandrubichis avatar Jun 03 '24 10:06 alexandrubichis