mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
27ef13174c
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/48449 This is the simplest possible way to track changes to our public CPP / Objective-C API. This is going to be really noisy, and there's a good chance it's not complete. The tooling is also incomplete, as it just runs the preprocessor (then does some funky work to undo noise generated by the preprocessor). If we want more control over this, we're going to have to jump into the guts of each of our build targets (and tooling) OR more clearer layout the repo to separate public and private header files to our users. Changelog: [Internal] Reviewed By: cipolleschi Differential Revision: D67713408 fbshipit-source-id: 9578179bbc4d9be2f07d040b01f8a3ef105d7034
20 lines
408 B
JSON
20 lines
408 B
JSON
{
|
|
"name": "public-api",
|
|
"version": "0.0.1",
|
|
"description": "Captures the Objective-C / C++ public API of React Native",
|
|
"main": "public-api.js",
|
|
"files": [
|
|
"check-api.sh",
|
|
"public-api.conf",
|
|
"public-api.js"
|
|
],
|
|
"repository": "https://reactnative.dev/",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"dependencies": {
|
|
"chalk": "^4.0.0",
|
|
"glob": "^7.1.1",
|
|
"ini": "^5.0.0"
|
|
}
|
|
}
|