mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
1ad8d81292
* Remove object-assign polyfill We really rely on a more modern environment where this is typically polyfilled anyway and we don't officially support IE with more extensive polyfilling anyway. So all environments should have the native version by now. * Use shared/assign instead of Object.assign in code This is so that we have one cached local instance in the bundle. Ideally we should have a compile do this for us but we already follow this pattern with hasOwnProperty, isArray, Object.is etc. * Transform Object.assign to now use shared/assign We need this to use the shared instance when Object.spread is used.
41 lines
791 B
JSON
41 lines
791 B
JSON
{
|
|
"name": "react-reconciler",
|
|
"description": "React package for creating custom renderers.",
|
|
"version": "0.26.1",
|
|
"keywords": [
|
|
"react"
|
|
],
|
|
"homepage": "https://reactjs.org/",
|
|
"bugs": "https://github.com/facebook/react/issues",
|
|
"license": "MIT",
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"constants.js",
|
|
"index.js",
|
|
"reflection.js",
|
|
"cjs/"
|
|
],
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react.git",
|
|
"directory": "packages/react-reconciler"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^17.0.3"
|
|
},
|
|
"dependencies": {
|
|
"loose-envify": "^1.1.0",
|
|
"scheduler": "^0.20.1"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
"loose-envify"
|
|
]
|
|
}
|
|
}
|