├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── babel.config.js ├── definitions ├── react-native-community__cli-platform-android │ └── index.d.ts ├── react-native-community__cli-platform-ios │ └── index.d.ts └── react-native-community__cli-tools │ └── index.d.ts ├── jest.config.js ├── package.json ├── react-native.config.js ├── src ├── commands │ ├── common │ │ ├── ObjcPatcher.ts │ │ ├── __tests__ │ │ │ └── objcPatcher.test.ts │ │ └── buildIOS.ts │ ├── getAppSizeAndroid.ts │ ├── getAppSizeIOS.ts │ ├── index.ts │ └── measureIOS.ts └── index.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | coverage/ 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/babel.config.js -------------------------------------------------------------------------------- /definitions/react-native-community__cli-platform-android/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/definitions/react-native-community__cli-platform-android/index.d.ts -------------------------------------------------------------------------------- /definitions/react-native-community__cli-platform-ios/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/definitions/react-native-community__cli-platform-ios/index.d.ts -------------------------------------------------------------------------------- /definitions/react-native-community__cli-tools/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/definitions/react-native-community__cli-tools/index.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | module.exports = require('./build').pluginConfig; 6 | -------------------------------------------------------------------------------- /src/commands/common/ObjcPatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/src/commands/common/ObjcPatcher.ts -------------------------------------------------------------------------------- /src/commands/common/__tests__/objcPatcher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/src/commands/common/__tests__/objcPatcher.test.ts -------------------------------------------------------------------------------- /src/commands/common/buildIOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/src/commands/common/buildIOS.ts -------------------------------------------------------------------------------- /src/commands/getAppSizeAndroid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/src/commands/getAppSizeAndroid.ts -------------------------------------------------------------------------------- /src/commands/getAppSizeIOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/src/commands/getAppSizeIOS.ts -------------------------------------------------------------------------------- /src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/src/commands/index.ts -------------------------------------------------------------------------------- /src/commands/measureIOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/src/commands/measureIOS.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kudo/react-native-cli-plugin-benchmark/HEAD/yarn.lock --------------------------------------------------------------------------------