├── .github └── ISSUE_TEMPLATE │ └── issues-have-been-disabled.md ├── README.md └── LICENSE /.github/ISSUE_TEMPLATE/issues-have-been-disabled.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Issues have been disabled 3 | about: Please report new issues at github.com/facebook/react 4 | title: NEW ISSUES ARE NOT MONITORED 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | This repository has been merged into the main React repo (github.com/facebook/react) 11 | 12 | Please open issues there: 13 | https://github.com/facebook/react/issues/new 14 | 15 | New issues opened in this repository will be ignored. 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #### This project has migrated to [github.com/facebook/react](https://github.com/facebook/react) 2 | 3 | The old source code can still be found in the [`source` branch](https://github.com/bvaughn/react-devtools-experimental/tree/source). 4 | 5 | Thanks to everyone who tested the early release of DevTools version 4. 6 | Your feedback helped improve this initial release significantly. 7 | 8 | We still have many exciting features planned and feedback is always welcome! 9 | Please continue to share feedback and report issues [in the new repository](https://github.com/facebook/react/issues/new?labels=Component:%20Developer%20Tools). -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Facebook, Inc. and its affiliates. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. --------------------------------------------------------------------------------