fbt icon indicating copy to clipboard operation
fbt copied to clipboard

New release?

Open TJ09 opened this issue 2 years ago • 1 comments

💬 Questions and Help

#372 was resolved back in September, but it is still not easily possible to use FBT with React 18 since there has not been a new release since v1.0.0 last April. I'm not sure what the state of the main branch is, but a new point release would be nice.

Alternatively I'm willing to backport #374 to the v1.0.0 branch to enable a v1.0.1.

TJ09 avatar Mar 13 '23 21:03 TJ09

You can now specify an overrides property in your package.json to override and enforce nested dependency versions.

{
  "dependencies": {
    // ...
    "fbt": "^1.0.0",
    "react": "^18.2.0"
    // ...
-  }
+  },
+  "overrides": {
+    "fbt@^1.0.0": {
+      "react": "^18.2.0"
+    }
+  }
}

richardDobron avatar Mar 22 '23 23:03 richardDobron

Closing as I published v1.0.2 to npm today: https://www.npmjs.com/package/fbt

voideanvalue avatar Apr 23 '24 13:04 voideanvalue