├── .gitattributes ├── .github ├── CODEOWNERS ├── settings.yml ├── weekly-digest.yml └── workflows │ ├── new_release.yml │ └── release_notifications.yml ├── .gitignore ├── .yarn └── releases │ └── yarn-3.6.4.cjs ├── .yarnrc.yml ├── AUTHORS ├── LICENSE ├── README.md ├── README_MAINTAINERS.md ├── RELEASES ├── USAGE.md ├── docs ├── _index.html └── index.html ├── mise.toml ├── package.json ├── prettier.config.cjs └── scripts ├── compare-releases.js ├── generate-table.js ├── multiple-releases-diffs.sh ├── multiple-releases.sh ├── new-release.sh ├── notify-new-release.js ├── prune-diffs.js └── remove-something-from-diffs.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/weekly-digest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/.github/weekly-digest.yml -------------------------------------------------------------------------------- /.github/workflows/new_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/.github/workflows/new_release.yml -------------------------------------------------------------------------------- /.github/workflows/release_notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/.github/workflows/release_notifications.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.4.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/.yarn/releases/yarn-3.6.4.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/README.md -------------------------------------------------------------------------------- /README_MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/README_MAINTAINERS.md -------------------------------------------------------------------------------- /RELEASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/RELEASES -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/USAGE.md -------------------------------------------------------------------------------- /docs/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/docs/_index.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/docs/index.html -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/mise.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /scripts/compare-releases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/scripts/compare-releases.js -------------------------------------------------------------------------------- /scripts/generate-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/scripts/generate-table.js -------------------------------------------------------------------------------- /scripts/multiple-releases-diffs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/scripts/multiple-releases-diffs.sh -------------------------------------------------------------------------------- /scripts/multiple-releases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/scripts/multiple-releases.sh -------------------------------------------------------------------------------- /scripts/new-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/scripts/new-release.sh -------------------------------------------------------------------------------- /scripts/notify-new-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/scripts/notify-new-release.js -------------------------------------------------------------------------------- /scripts/prune-diffs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/scripts/prune-diffs.js -------------------------------------------------------------------------------- /scripts/remove-something-from-diffs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-native-community/rn-diff-purge/HEAD/scripts/remove-something-from-diffs.js --------------------------------------------------------------------------------