We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ebc7d5 commit a8e2a94Copy full SHA for a8e2a94
src/constants.ts
@@ -1,2 +1,4 @@
1
+/** @internal */
2
export const TO_WEB_EVENT_KEY = "rn-web-bridge";
3
4
export const WEB_ROOT_ID = "rnrb-root";
src/plugin/babel.ts
@@ -1,6 +1,9 @@
import { parseSync } from "@babel/core";
import traverse from "@babel/traverse";
+/**
5
+ * @internal
6
+ */
7
export const isEntryFile = (src: string, filename: string) => {
8
// TODO try lighter approach
9
const ast = parseSync(src, { filename })!;
0 commit comments