├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── compress-images.yml │ ├── deploy-docs.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.MD ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.MD ├── LICENSE ├── README.MD ├── ROADMAP.MD ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── blog │ ├── 2019-08-13-new-version-1.0.0.md │ ├── 2021-03-20-new-2.0.0-version-with-web-support.md │ ├── 2022-10-01-upgraded-site-engine.md │ └── authors.yml ├── docs │ ├── api │ │ ├── _category_.json │ │ ├── is-cached.md │ │ ├── preload.md │ │ └── register.md │ ├── fundamentals │ │ ├── _category_.json │ │ ├── basic-usage.md │ │ ├── enabling-lazy-bundle.md │ │ └── getting-started.mdx │ ├── guides │ │ ├── _category_.json │ │ ├── async-loading.md │ │ ├── metro.md │ │ ├── navigation.md │ │ ├── static-options.md │ │ ├── upgrading-from-1.x.md │ │ └── upgrading-from-2.x.md │ └── recipes │ │ ├── _category_.json │ │ ├── bundle-analysis.md │ │ ├── capturing-startup-time.md │ │ └── jest-testing-guide.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── markdown-page.md ├── static │ ├── .nojekyll │ └── img │ │ ├── bundle-splitting.png │ │ ├── bundle-visualizer-before.png │ │ ├── caching.png │ │ ├── favicon.ico │ │ ├── nested-node-modules.png │ │ ├── route-svgrepo-com.svg │ │ └── time.svg ├── tsconfig.json ├── versioned_docs │ ├── version-1.x │ │ ├── api │ │ │ ├── _category_.json │ │ │ ├── is-cached.md │ │ │ ├── preload.md │ │ │ └── register.md │ │ ├── fundamentals │ │ │ ├── _category_.json │ │ │ ├── basic-usage.md │ │ │ ├── enabling-ram-bundle.md │ │ │ └── getting-started.mdx │ │ ├── guides │ │ │ ├── _category_.json │ │ │ ├── async-loading.md │ │ │ ├── metro.md │ │ │ ├── navigation.md │ │ │ └── static-options.md │ │ └── recipes │ │ │ ├── _category_.json │ │ │ ├── bundle-analysis.md │ │ │ └── capturing-startup-time.md │ ├── version-2.x │ │ ├── api │ │ │ ├── _category_.json │ │ │ ├── is-cached.md │ │ │ ├── preload.md │ │ │ └── register.md │ │ ├── fundamentals │ │ │ ├── _category_.json │ │ │ ├── basic-usage.md │ │ │ ├── enabling-ram-bundle.md │ │ │ └── getting-started.mdx │ │ ├── guides │ │ │ ├── _category_.json │ │ │ ├── async-loading.md │ │ │ ├── metro.md │ │ │ ├── navigation.md │ │ │ ├── static-options.md │ │ │ └── upgrading-from-1.x.md │ │ └── recipes │ │ │ ├── _category_.json │ │ │ ├── bundle-analysis.md │ │ │ ├── capturing-startup-time.md │ │ │ └── jest-testing-guide.md │ └── version-3.x │ │ ├── api │ │ ├── _category_.json │ │ ├── is-cached.md │ │ ├── preload.md │ │ └── register.md │ │ ├── fundamentals │ │ ├── _category_.json │ │ ├── basic-usage.md │ │ ├── enabling-lazy-bundle.md │ │ └── getting-started.mdx │ │ ├── guides │ │ ├── _category_.json │ │ ├── async-loading.md │ │ ├── metro.md │ │ ├── navigation.md │ │ ├── static-options.md │ │ ├── upgrading-from-1.x.md │ │ └── upgrading-from-2.x.md │ │ └── recipes │ │ ├── _category_.json │ │ ├── bundle-analysis.md │ │ ├── capturing-startup-time.md │ │ └── jest-testing-guide.md ├── versioned_sidebars │ ├── version-1.x-sidebars.json │ ├── version-2.x-sidebars.json │ └── version-3.x-sidebars.json ├── versions.json └── yarn.lock ├── gifs └── demo.gif ├── package.json ├── src ├── bundler.ts ├── index.ts ├── interface.ts ├── map.ts ├── optimized.tsx └── utils.ts ├── tsconfig.json └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/compress-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/.github/workflows/compress-images.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/CHANGELOG.MD -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/README.MD -------------------------------------------------------------------------------- /ROADMAP.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/ROADMAP.MD -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/blog/2019-08-13-new-version-1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/blog/2019-08-13-new-version-1.0.0.md -------------------------------------------------------------------------------- /docs/blog/2021-03-20-new-2.0.0-version-with-web-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/blog/2021-03-20-new-2.0.0-version-with-web-support.md -------------------------------------------------------------------------------- /docs/blog/2022-10-01-upgraded-site-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/blog/2022-10-01-upgraded-site-engine.md -------------------------------------------------------------------------------- /docs/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/blog/authors.yml -------------------------------------------------------------------------------- /docs/docs/api/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/api/_category_.json -------------------------------------------------------------------------------- /docs/docs/api/is-cached.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/api/is-cached.md -------------------------------------------------------------------------------- /docs/docs/api/preload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/api/preload.md -------------------------------------------------------------------------------- /docs/docs/api/register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/api/register.md -------------------------------------------------------------------------------- /docs/docs/fundamentals/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/fundamentals/_category_.json -------------------------------------------------------------------------------- /docs/docs/fundamentals/basic-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/fundamentals/basic-usage.md -------------------------------------------------------------------------------- /docs/docs/fundamentals/enabling-lazy-bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/fundamentals/enabling-lazy-bundle.md -------------------------------------------------------------------------------- /docs/docs/fundamentals/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/fundamentals/getting-started.mdx -------------------------------------------------------------------------------- /docs/docs/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/guides/_category_.json -------------------------------------------------------------------------------- /docs/docs/guides/async-loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/guides/async-loading.md -------------------------------------------------------------------------------- /docs/docs/guides/metro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/guides/metro.md -------------------------------------------------------------------------------- /docs/docs/guides/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/guides/navigation.md -------------------------------------------------------------------------------- /docs/docs/guides/static-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/guides/static-options.md -------------------------------------------------------------------------------- /docs/docs/guides/upgrading-from-1.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/guides/upgrading-from-1.x.md -------------------------------------------------------------------------------- /docs/docs/guides/upgrading-from-2.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/guides/upgrading-from-2.x.md -------------------------------------------------------------------------------- /docs/docs/recipes/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/recipes/_category_.json -------------------------------------------------------------------------------- /docs/docs/recipes/bundle-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/recipes/bundle-analysis.md -------------------------------------------------------------------------------- /docs/docs/recipes/capturing-startup-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/recipes/capturing-startup-time.md -------------------------------------------------------------------------------- /docs/docs/recipes/jest-testing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docs/recipes/jest-testing-guide.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/bundle-splitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/static/img/bundle-splitting.png -------------------------------------------------------------------------------- /docs/static/img/bundle-visualizer-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/static/img/bundle-visualizer-before.png -------------------------------------------------------------------------------- /docs/static/img/caching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/static/img/caching.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/nested-node-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/static/img/nested-node-modules.png -------------------------------------------------------------------------------- /docs/static/img/route-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/static/img/route-svgrepo-com.svg -------------------------------------------------------------------------------- /docs/static/img/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/static/img/time.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/api/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/api/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/api/is-cached.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/api/is-cached.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/api/preload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/api/preload.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/api/register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/api/register.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/fundamentals/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/fundamentals/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/fundamentals/basic-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/fundamentals/basic-usage.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/fundamentals/enabling-ram-bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/fundamentals/enabling-ram-bundle.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/fundamentals/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/fundamentals/getting-started.mdx -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/guides/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/guides/async-loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/guides/async-loading.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/guides/metro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/guides/metro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/guides/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/guides/navigation.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/guides/static-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/guides/static-options.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/recipes/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/recipes/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/recipes/bundle-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/recipes/bundle-analysis.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-1.x/recipes/capturing-startup-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-1.x/recipes/capturing-startup-time.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/api/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/api/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/api/is-cached.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/api/is-cached.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/api/preload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/api/preload.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/api/register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/api/register.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/fundamentals/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/fundamentals/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/fundamentals/basic-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/fundamentals/basic-usage.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/fundamentals/enabling-ram-bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/fundamentals/enabling-ram-bundle.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/fundamentals/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/fundamentals/getting-started.mdx -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/guides/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/guides/async-loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/guides/async-loading.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/guides/metro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/guides/metro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/guides/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/guides/navigation.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/guides/static-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/guides/static-options.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/guides/upgrading-from-1.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/guides/upgrading-from-1.x.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/recipes/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/recipes/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/recipes/bundle-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/recipes/bundle-analysis.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/recipes/capturing-startup-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/recipes/capturing-startup-time.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-2.x/recipes/jest-testing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-2.x/recipes/jest-testing-guide.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/api/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/api/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/api/is-cached.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/api/is-cached.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/api/preload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/api/preload.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/api/register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/api/register.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/fundamentals/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/fundamentals/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/fundamentals/basic-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/fundamentals/basic-usage.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/fundamentals/enabling-lazy-bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/fundamentals/enabling-lazy-bundle.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/fundamentals/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/fundamentals/getting-started.mdx -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/guides/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/guides/async-loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/guides/async-loading.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/guides/metro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/guides/metro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/guides/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/guides/navigation.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/guides/static-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/guides/static-options.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/guides/upgrading-from-1.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/guides/upgrading-from-1.x.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/guides/upgrading-from-2.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/guides/upgrading-from-2.x.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/recipes/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/recipes/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/recipes/bundle-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/recipes/bundle-analysis.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/recipes/capturing-startup-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/recipes/capturing-startup-time.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-3.x/recipes/jest-testing-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_docs/version-3.x/recipes/jest-testing-guide.md -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-1.x-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_sidebars/version-1.x-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-2.x-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_sidebars/version-2.x-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-3.x-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versioned_sidebars/version-3.x-sidebars.json -------------------------------------------------------------------------------- /docs/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/versions.json -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /gifs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/gifs/demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/package.json -------------------------------------------------------------------------------- /src/bundler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/src/bundler.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/src/interface.ts -------------------------------------------------------------------------------- /src/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/src/map.ts -------------------------------------------------------------------------------- /src/optimized.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/src/optimized.tsx -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirillzyusko/react-native-bundle-splitter/HEAD/yarn.lock --------------------------------------------------------------------------------