mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Fixed broken feature flag import for DT inline package (#21237)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "react-devtools-inline",
|
||||
"version": "4.11.0",
|
||||
"version": "4.11.1",
|
||||
"description": "Embed react-devtools within a website",
|
||||
"license": "MIT",
|
||||
"main": "./dist/backend.js",
|
||||
|
||||
@@ -33,11 +33,15 @@ module.exports = {
|
||||
react: 'react',
|
||||
// TODO: Once this package is published, remove the external
|
||||
// 'react-debug-tools': 'react-debug-tools',
|
||||
'react-devtools-feature-flags': resolveFeatureFlags('inline'),
|
||||
'react-dom': 'react-dom',
|
||||
'react-is': 'react-is',
|
||||
scheduler: 'scheduler',
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
'react-devtools-feature-flags': resolveFeatureFlags('inline'),
|
||||
},
|
||||
},
|
||||
optimization: {
|
||||
minimize: false,
|
||||
},
|
||||
|
||||
@@ -9,6 +9,10 @@
|
||||
<!-- Upcoming changes go here -->
|
||||
</details>
|
||||
|
||||
## 4.11.1 (April 11, 2021)
|
||||
#### Bugfix
|
||||
* Fixed broken import in `react-devtools-inline` for feature flags file ([bvaughn](https://github.com/bvaughn) in [#21235](https://github.com/facebook/react/issues/21235))
|
||||
|
||||
## 4.11.0 (April 9, 2021)
|
||||
#### Bugfix
|
||||
* `$r` should contain hooks property when it is `forwardRef` or `memo` component ([meowtec](https://github.com/meowtec) in [#20626](https://github.com/facebook/react/pull/20626))
|
||||
|
||||
Reference in New Issue
Block a user