├── .editorconfig ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .ruby-version ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ ├── AndroidManifestNew.xml │ └── java │ └── com │ └── releaseprofiler │ ├── ReleaseProfilerModule.kt │ └── ReleaseProfilerPackage.kt ├── babel.config.js ├── example ├── .bundle │ └── config ├── .ruby-version ├── .watchmanconfig ├── Gemfile ├── Gemfile.lock ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── releaseprofilerexample │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.html ├── index.js ├── index.web.js ├── ios │ ├── .xcode.env │ ├── File.swift │ ├── Podfile │ ├── Podfile.lock │ ├── ReleaseProfilerExample-Bridging-Header.h │ ├── ReleaseProfilerExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ReleaseProfilerExample.xcscheme │ ├── ReleaseProfilerExample.xcworkspace │ │ └── contents.xcworkspacedata │ ├── ReleaseProfilerExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ └── ReleaseProfilerExampleTests │ │ ├── Info.plist │ │ └── ReleaseProfilerExampleTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js ├── src │ ├── App.tsx │ └── Share │ │ ├── index.ts │ │ └── index.web.ts └── webpack.config.js ├── img ├── banner.svg └── perfetto.png ├── ios ├── ReleaseProfiler-Bridging-Header.h ├── ReleaseProfiler.mm └── ReleaseProfiler.swift ├── lefthook.yml ├── package.json ├── react-native-release-profiler.podspec ├── src ├── __tests__ │ └── index.test.tsx ├── cli.ts ├── getConfig.ts ├── getMetroBundleOptions.ts ├── index.tsx ├── index.web.tsx └── sourcemapUtils.ts ├── tsconfig.build.json ├── tsconfig.json ├── turbo.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.10 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /android/src/main/java/com/releaseprofiler/ReleaseProfilerModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/android/src/main/java/com/releaseprofiler/ReleaseProfilerModule.kt -------------------------------------------------------------------------------- /android/src/main/java/com/releaseprofiler/ReleaseProfilerPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/android/src/main/java/com/releaseprofiler/ReleaseProfilerPackage.kt -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.10 2 | -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/Gemfile.lock -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- 1 | Example App 2 | -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/releaseprofilerexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/java/com/releaseprofilerexample/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/releaseprofilerexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/java/com/releaseprofilerexample/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/index.js -------------------------------------------------------------------------------- /example/index.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/index.web.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExample.xcodeproj/xcshareddata/xcschemes/ReleaseProfilerExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExample.xcodeproj/xcshareddata/xcschemes/ReleaseProfilerExample.xcscheme -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExample/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExample/AppDelegate.mm -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExample/Info.plist -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExample/main.m -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/ReleaseProfilerExampleTests/ReleaseProfilerExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/ios/ReleaseProfilerExampleTests/ReleaseProfilerExampleTests.m -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/Share/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/src/Share/index.ts -------------------------------------------------------------------------------- /example/src/Share/index.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/src/Share/index.web.ts -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /img/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/img/banner.svg -------------------------------------------------------------------------------- /img/perfetto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/img/perfetto.png -------------------------------------------------------------------------------- /ios/ReleaseProfiler-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/ios/ReleaseProfiler-Bridging-Header.h -------------------------------------------------------------------------------- /ios/ReleaseProfiler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/ios/ReleaseProfiler.mm -------------------------------------------------------------------------------- /ios/ReleaseProfiler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/ios/ReleaseProfiler.swift -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/package.json -------------------------------------------------------------------------------- /react-native-release-profiler.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/react-native-release-profiler.podspec -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/getConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/src/getConfig.ts -------------------------------------------------------------------------------- /src/getMetroBundleOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/src/getMetroBundleOptions.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/index.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/src/index.web.tsx -------------------------------------------------------------------------------- /src/sourcemapUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/src/sourcemapUtils.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/margelo/react-native-release-profiler/HEAD/yarn.lock --------------------------------------------------------------------------------