├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── config.yml ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── build-templates.yml │ ├── check-project.yml │ ├── cleanup-cache.yml │ ├── deploy-docs.yml │ ├── pull-request-title.yml │ └── rebase.yml ├── .gitignore ├── .nvmrc ├── .yarn ├── patches │ └── @rspress-plugin-llms-npm-2.0.0-beta.34-d374542281.patch └── releases │ └── yarn-4.11.0.cjs ├── .yarnrc.yml ├── README.md ├── docs ├── CHANGELOG.md ├── assets │ ├── banner.png │ ├── create-react-native-library.svg │ ├── favicon.png │ └── react-native-builder-bob.svg ├── components │ ├── Hero.module.css │ └── Hero.tsx ├── index.d.ts ├── package.json ├── pages │ ├── build.md │ ├── create.md │ ├── esm.md │ ├── faq.md │ ├── index.mdx │ └── public │ │ ├── logo-dark.svg │ │ └── logo-light.svg ├── rspress.config.ts ├── theme │ └── styles.css └── tsconfig.json ├── eslint.config.mjs ├── lefthook.yml ├── lerna.json ├── package.json ├── packages ├── create-react-native-library │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── babel.config.js │ ├── bin │ │ ├── create-react-native-library │ │ └── create-react-native-library.cmd │ ├── package.json │ ├── src │ │ ├── constants.ts │ │ ├── exampleApp │ │ │ ├── dependencies.ts │ │ │ └── generateExampleApp.ts │ │ ├── index.ts │ │ ├── inform.ts │ │ ├── prompt.ts │ │ ├── template.ts │ │ └── utils │ │ │ ├── assert.ts │ │ │ ├── configureTools.ts │ │ │ ├── createMetadata.ts │ │ │ ├── initialCommit.ts │ │ │ ├── local.ts │ │ │ ├── packageManager.ts │ │ │ ├── resolveNpmPackageVersion.ts │ │ │ ├── sortObjectKeys.ts │ │ │ └── spawn.ts │ └── templates │ │ ├── common-local │ │ └── $package.json │ │ ├── common │ │ ├── $.editorconfig │ │ ├── $.gitattributes │ │ ├── $.github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.yml │ │ │ │ └── config.yml │ │ │ ├── actions │ │ │ │ └── setup │ │ │ │ │ └── action.yml │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ ├── $.gitignore │ │ ├── $.nvmrc │ │ ├── $.watchmanconfig │ │ ├── $.yarn │ │ │ └── releases │ │ │ │ └── yarn-4.11.0.cjs │ │ ├── $.yarnrc.yml │ │ ├── $package.json │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── babel.config.js │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ │ ├── example-common │ │ └── example │ │ │ └── metro.config.js │ │ ├── example-module-new │ │ └── example │ │ │ └── src │ │ │ └── App.tsx │ │ ├── example-view │ │ └── example │ │ │ └── src │ │ │ └── App.tsx │ │ ├── expo-library │ │ └── example │ │ │ ├── babel.config.js │ │ │ ├── index.js │ │ │ ├── metro.config.js │ │ │ └── tsconfig.json │ │ ├── js-library │ │ └── src │ │ │ └── index.tsx │ │ ├── kotlin-library-new │ │ └── android │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── {%- project.package_dir %} │ │ │ ├── {%- project.name %}Module.kt │ │ │ └── {%- project.name %}Package.kt │ │ ├── kotlin-view-new │ │ └── android │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── {%- project.package_dir %} │ │ │ ├── {%- project.name %}Package.kt │ │ │ ├── {%- project.name %}View.kt │ │ │ └── {%- project.name %}ViewManager.kt │ │ ├── native-common-example │ │ └── example │ │ │ ├── babel.config.js │ │ │ ├── index.js │ │ │ └── react-native.config.js │ │ ├── native-common │ │ ├── android │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── AndroidManifest.xml │ │ └── {%- project.name %}.podspec │ │ ├── native-library-new │ │ └── src │ │ │ ├── Native{%- project.name %}.ts │ │ │ └── index.tsx │ │ ├── native-view-new │ │ └── src │ │ │ ├── index.tsx │ │ │ └── {%- project.name %}ViewNativeComponent.ts │ │ ├── nitro-module │ │ ├── android │ │ │ ├── CMakeLists.txt │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── cpp │ │ │ │ └── cpp-adapter.cpp │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── margelo │ │ │ │ └── nitro │ │ │ │ └── {%- project.package_dir %} │ │ │ │ ├── {%- project.name %}.kt │ │ │ │ └── {%- project.name %}Package.kt │ │ ├── ios │ │ │ └── {%- project.name %}.swift │ │ ├── nitro.json │ │ └── src │ │ │ ├── index.tsx │ │ │ └── {%- project.name %}.nitro.ts │ │ ├── nitro-view │ │ ├── android │ │ │ ├── CMakeLists.txt │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── cpp │ │ │ │ └── cpp-adapter.cpp │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── margelo │ │ │ │ └── nitro │ │ │ │ └── {%- project.package_dir %} │ │ │ │ ├── {%- project.name %}.kt │ │ │ │ └── {%- project.name %}Package.kt │ │ ├── ios │ │ │ └── {%- project.name %}.swift │ │ ├── nitro.json │ │ └── src │ │ │ ├── index.tsx │ │ │ └── {%- project.name %}.nitro.ts │ │ ├── objc-library │ │ └── ios │ │ │ ├── {%- project.name %}.h │ │ │ └── {%- project.name %}.mm │ │ ├── objc-view-new │ │ └── ios │ │ │ ├── {%- project.name %}View.h │ │ │ └── {%- project.name %}View.mm │ │ └── tools │ │ ├── eslint │ │ └── eslint.config.mjs │ │ ├── jest │ │ └── src │ │ │ └── __tests__ │ │ │ └── index.test.tsx │ │ ├── lefthook │ │ └── lefthook.yml │ │ └── turborepo │ │ └── turbo.json └── react-native-builder-bob │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── babel-config.js │ ├── babel-preset.js │ ├── babel.config.js │ ├── bin │ ├── bob │ └── bob.cmd │ ├── metro-config.js │ ├── package.json │ ├── src │ ├── __fixtures__ │ │ └── project │ │ │ ├── MyNativeComponent.js │ │ │ ├── MyNativeComponent.jsx │ │ │ ├── MyNativeComponent.ts │ │ │ ├── MyNativeComponent.tsx │ │ │ ├── NativeMyLib.js │ │ │ ├── NativeMyLib.jsx │ │ │ ├── NativeMyLib.ts │ │ │ ├── NativeMyLib.tsx │ │ │ ├── code │ │ │ ├── $exports-input.ts │ │ │ ├── $exports-output.ts │ │ │ ├── $imports-input.ts │ │ │ ├── $imports-output.ts │ │ │ ├── MyNativeComponent.js │ │ │ ├── MyNativeComponent.jsx │ │ │ ├── MyNativeComponent.ts │ │ │ ├── MyNativeComponent.tsx │ │ │ ├── NativeMyLib.js │ │ │ ├── NativeMyLib.jsx │ │ │ ├── NativeMyLib.ts │ │ │ ├── NativeMyLib.tsx │ │ │ ├── a.ts │ │ │ ├── b.ts │ │ │ ├── c.mjs │ │ │ ├── d │ │ │ │ └── .gitkeep │ │ │ └── e.story.ts │ │ │ ├── f.ts │ │ │ └── index.ts │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ └── init.test.ts.snap │ │ ├── babel.test.ts │ │ └── init.test.ts │ ├── babel.ts │ ├── build.ts │ ├── index.ts │ ├── init.ts │ ├── schema.ts │ ├── targets │ │ ├── codegen │ │ │ ├── index.ts │ │ │ └── patches │ │ │ │ ├── patchCodegenAndroidPackage.test.ts │ │ │ │ ├── patchCodegenAndroidPackage.ts │ │ │ │ ├── removeCodegenAppLevelCode.test.ts │ │ │ │ └── removeCodegenAppLevelCode.ts │ │ ├── commonjs.ts │ │ ├── custom.ts │ │ ├── module.ts │ │ └── typescript.ts │ ├── types.ts │ └── utils │ │ ├── androidAssemble.ts │ │ ├── compile.ts │ │ ├── isCodegenSpec.ts │ │ ├── loadConfig.ts │ │ ├── logger.ts │ │ ├── prompts.ts │ │ ├── spawn.ts │ │ └── workerize.ts │ └── vitest.config.mjs ├── tsconfig.json └── yarn.lock /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/build-templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.github/workflows/build-templates.yml -------------------------------------------------------------------------------- /.github/workflows/check-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.github/workflows/check-project.yml -------------------------------------------------------------------------------- /.github/workflows/cleanup-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.github/workflows/cleanup-cache.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.github/workflows/pull-request-title.yml -------------------------------------------------------------------------------- /.github/workflows/rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.github/workflows/rebase.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.20.0 2 | -------------------------------------------------------------------------------- /.yarn/patches/@rspress-plugin-llms-npm-2.0.0-beta.34-d374542281.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.yarn/patches/@rspress-plugin-llms-npm-2.0.0-beta.34-d374542281.patch -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.11.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.yarn/releases/yarn-4.11.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/README.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/assets/banner.png -------------------------------------------------------------------------------- /docs/assets/create-react-native-library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/assets/create-react-native-library.svg -------------------------------------------------------------------------------- /docs/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/assets/favicon.png -------------------------------------------------------------------------------- /docs/assets/react-native-builder-bob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/assets/react-native-builder-bob.svg -------------------------------------------------------------------------------- /docs/components/Hero.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/components/Hero.module.css -------------------------------------------------------------------------------- /docs/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/components/Hero.tsx -------------------------------------------------------------------------------- /docs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/index.d.ts -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pages/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/pages/build.md -------------------------------------------------------------------------------- /docs/pages/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/pages/create.md -------------------------------------------------------------------------------- /docs/pages/esm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/pages/esm.md -------------------------------------------------------------------------------- /docs/pages/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/pages/faq.md -------------------------------------------------------------------------------- /docs/pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/pages/index.mdx -------------------------------------------------------------------------------- /docs/pages/public/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/pages/public/logo-dark.svg -------------------------------------------------------------------------------- /docs/pages/public/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/pages/public/logo-light.svg -------------------------------------------------------------------------------- /docs/rspress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/rspress.config.ts -------------------------------------------------------------------------------- /docs/theme/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/theme/styles.css -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/lefthook.yml -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/package.json -------------------------------------------------------------------------------- /packages/create-react-native-library/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/CHANGELOG.md -------------------------------------------------------------------------------- /packages/create-react-native-library/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/LICENSE.md -------------------------------------------------------------------------------- /packages/create-react-native-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/README.md -------------------------------------------------------------------------------- /packages/create-react-native-library/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/babel.config.js -------------------------------------------------------------------------------- /packages/create-react-native-library/bin/create-react-native-library: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../lib/index'); 4 | -------------------------------------------------------------------------------- /packages/create-react-native-library/bin/create-react-native-library.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\create-react-native-library" %* 4 | -------------------------------------------------------------------------------- /packages/create-react-native-library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/package.json -------------------------------------------------------------------------------- /packages/create-react-native-library/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/constants.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/exampleApp/dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/exampleApp/dependencies.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/exampleApp/generateExampleApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/exampleApp/generateExampleApp.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/index.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/inform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/inform.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/prompt.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/template.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/utils/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/utils/assert.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/utils/configureTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/utils/configureTools.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/utils/createMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/utils/createMetadata.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/utils/initialCommit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/utils/initialCommit.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/utils/local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/utils/local.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/utils/packageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/utils/packageManager.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/utils/resolveNpmPackageVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/utils/resolveNpmPackageVersion.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/utils/sortObjectKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/utils/sortObjectKeys.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/src/utils/spawn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/src/utils/spawn.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common-local/$package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common-local/$package.json -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/$.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/$.editorconfig -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/$.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/$.gitattributes -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/$.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/$.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/$.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/$.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/$.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/$.github/actions/setup/action.yml -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/$.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/$.github/workflows/ci.yml -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/$.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/$.gitignore -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/$.nvmrc: -------------------------------------------------------------------------------- 1 | v22.20.0 2 | -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/$.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/$.yarn/releases/yarn-4.11.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/$.yarn/releases/yarn-4.11.0.cjs -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/$.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/$.yarnrc.yml -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/$package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/$package.json -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/CONTRIBUTING.md -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/LICENSE -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/README.md -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/babel.config.js -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/tsconfig.build.json -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/common/tsconfig.json -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/example-common/example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/example-common/example/metro.config.js -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/example-module-new/example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/example-module-new/example/src/App.tsx -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/example-view/example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/example-view/example/src/App.tsx -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/expo-library/example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/expo-library/example/babel.config.js -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/expo-library/example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/expo-library/example/index.js -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/expo-library/example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/expo-library/example/metro.config.js -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/expo-library/example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/expo-library/example/tsconfig.json -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/js-library/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/js-library/src/index.tsx -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/kotlin-library-new/android/src/main/java/com/{%- project.package_dir %}/{%- project.name %}Module.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/kotlin-library-new/android/src/main/java/com/{%- project.package_dir %}/{%- project.name %}Module.kt -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/kotlin-library-new/android/src/main/java/com/{%- project.package_dir %}/{%- project.name %}Package.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/kotlin-library-new/android/src/main/java/com/{%- project.package_dir %}/{%- project.name %}Package.kt -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/kotlin-view-new/android/src/main/java/com/{%- project.package_dir %}/{%- project.name %}Package.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/kotlin-view-new/android/src/main/java/com/{%- project.package_dir %}/{%- project.name %}Package.kt -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/kotlin-view-new/android/src/main/java/com/{%- project.package_dir %}/{%- project.name %}View.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/kotlin-view-new/android/src/main/java/com/{%- project.package_dir %}/{%- project.name %}View.kt -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/kotlin-view-new/android/src/main/java/com/{%- project.package_dir %}/{%- project.name %}ViewManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/kotlin-view-new/android/src/main/java/com/{%- project.package_dir %}/{%- project.name %}ViewManager.kt -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/native-common-example/example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/native-common-example/example/babel.config.js -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/native-common-example/example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/native-common-example/example/index.js -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/native-common-example/example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/native-common-example/example/react-native.config.js -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/native-common/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/native-common/android/build.gradle -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/native-common/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/native-common/android/gradle.properties -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/native-common/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/native-common/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/native-common/{%- project.name %}.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/native-common/{%- project.name %}.podspec -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/native-library-new/src/Native{%- project.name %}.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/native-library-new/src/Native{%- project.name %}.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/native-library-new/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/native-library-new/src/index.tsx -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/native-view-new/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/native-view-new/src/index.tsx -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/native-view-new/src/{%- project.name %}ViewNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/native-view-new/src/{%- project.name %}ViewNativeComponent.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-module/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-module/android/CMakeLists.txt -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-module/android/src/main/cpp/cpp-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-module/android/src/main/cpp/cpp-adapter.cpp -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-module/android/src/main/java/com/margelo/nitro/{%- project.package_dir %}/{%- project.name %}.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-module/android/src/main/java/com/margelo/nitro/{%- project.package_dir %}/{%- project.name %}.kt -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-module/android/src/main/java/com/margelo/nitro/{%- project.package_dir %}/{%- project.name %}Package.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-module/android/src/main/java/com/margelo/nitro/{%- project.package_dir %}/{%- project.name %}Package.kt -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-module/ios/{%- project.name %}.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-module/ios/{%- project.name %}.swift -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-module/nitro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-module/nitro.json -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-module/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-module/src/index.tsx -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-module/src/{%- project.name %}.nitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-module/src/{%- project.name %}.nitro.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-view/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-view/android/CMakeLists.txt -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-view/android/src/main/cpp/cpp-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-view/android/src/main/cpp/cpp-adapter.cpp -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-view/android/src/main/java/com/margelo/nitro/{%- project.package_dir %}/{%- project.name %}.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-view/android/src/main/java/com/margelo/nitro/{%- project.package_dir %}/{%- project.name %}.kt -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-view/android/src/main/java/com/margelo/nitro/{%- project.package_dir %}/{%- project.name %}Package.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-view/android/src/main/java/com/margelo/nitro/{%- project.package_dir %}/{%- project.name %}Package.kt -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-view/ios/{%- project.name %}.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-view/ios/{%- project.name %}.swift -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-view/nitro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-view/nitro.json -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-view/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-view/src/index.tsx -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/nitro-view/src/{%- project.name %}.nitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/nitro-view/src/{%- project.name %}.nitro.ts -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/objc-library/ios/{%- project.name %}.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/objc-library/ios/{%- project.name %}.h -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/objc-library/ios/{%- project.name %}.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/objc-library/ios/{%- project.name %}.mm -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/objc-view-new/ios/{%- project.name %}View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/objc-view-new/ios/{%- project.name %}View.h -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/objc-view-new/ios/{%- project.name %}View.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/objc-view-new/ios/{%- project.name %}View.mm -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/tools/eslint/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/tools/eslint/eslint.config.mjs -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/tools/jest/src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/tools/lefthook/lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/tools/lefthook/lefthook.yml -------------------------------------------------------------------------------- /packages/create-react-native-library/templates/tools/turborepo/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/create-react-native-library/templates/tools/turborepo/turbo.json -------------------------------------------------------------------------------- /packages/react-native-builder-bob/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-native-builder-bob/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/LICENSE.md -------------------------------------------------------------------------------- /packages/react-native-builder-bob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/README.md -------------------------------------------------------------------------------- /packages/react-native-builder-bob/babel-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/babel-config.js -------------------------------------------------------------------------------- /packages/react-native-builder-bob/babel-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/babel-preset.js -------------------------------------------------------------------------------- /packages/react-native-builder-bob/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/babel.config.js -------------------------------------------------------------------------------- /packages/react-native-builder-bob/bin/bob: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../lib/index'); 4 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/bin/bob.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\bob" %* 4 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/metro-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/metro-config.js -------------------------------------------------------------------------------- /packages/react-native-builder-bob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/package.json -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/MyNativeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__fixtures__/project/MyNativeComponent.js -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/MyNativeComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__fixtures__/project/MyNativeComponent.jsx -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/MyNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__fixtures__/project/MyNativeComponent.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/MyNativeComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__fixtures__/project/MyNativeComponent.tsx -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/NativeMyLib.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/NativeMyLib.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/NativeMyLib.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/NativeMyLib.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/$exports-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__fixtures__/project/code/$exports-input.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/$exports-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__fixtures__/project/code/$exports-output.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/$imports-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__fixtures__/project/code/$imports-input.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/$imports-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__fixtures__/project/code/$imports-output.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/MyNativeComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__fixtures__/project/code/MyNativeComponent.js -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/MyNativeComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__fixtures__/project/code/MyNativeComponent.jsx -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/MyNativeComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__fixtures__/project/code/MyNativeComponent.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/MyNativeComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__fixtures__/project/code/MyNativeComponent.tsx -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/NativeMyLib.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/NativeMyLib.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/NativeMyLib.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/NativeMyLib.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/a.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/b.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/c.mjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/d/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/code/e.story.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/f.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__fixtures__/project/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__tests__/__snapshots__/init.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__tests__/__snapshots__/init.test.ts.snap -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__tests__/babel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__tests__/babel.test.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/__tests__/init.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/__tests__/init.test.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/babel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/babel.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/build.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/index.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/init.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/schema.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/targets/codegen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/targets/codegen/index.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/targets/codegen/patches/patchCodegenAndroidPackage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/targets/codegen/patches/patchCodegenAndroidPackage.test.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/targets/codegen/patches/patchCodegenAndroidPackage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/targets/codegen/patches/patchCodegenAndroidPackage.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/targets/codegen/patches/removeCodegenAppLevelCode.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/targets/codegen/patches/removeCodegenAppLevelCode.test.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/targets/codegen/patches/removeCodegenAppLevelCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/targets/codegen/patches/removeCodegenAppLevelCode.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/targets/commonjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/targets/commonjs.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/targets/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/targets/custom.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/targets/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/targets/module.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/targets/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/targets/typescript.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/types.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/utils/androidAssemble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/utils/androidAssemble.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/utils/compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/utils/compile.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/utils/isCodegenSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/utils/isCodegenSpec.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/utils/loadConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/utils/loadConfig.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/utils/logger.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/utils/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/utils/prompts.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/utils/spawn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/utils/spawn.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/src/utils/workerize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/src/utils/workerize.ts -------------------------------------------------------------------------------- /packages/react-native-builder-bob/vitest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/packages/react-native-builder-bob/vitest.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callstack/react-native-builder-bob/HEAD/yarn.lock --------------------------------------------------------------------------------