mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
This is a patch version to fix some bugs in a previous internal release. I am expecting this one also to be internal-only, need to make sure that extension is stable in Chrome. Some changes and improvements are expected for Firefox, though, before going public. * refactor[devtools/extension]: handle ports disconnection, instead of frequent reconnection ([hoxyq](https://github.com/hoxyq) in [#27336](https://github.com/facebook/react/pull/27336)) * refactor[devtools/extension]: migrate from using setInterval for polling if react is loaded ([hoxyq](https://github.com/hoxyq) in [#27323](https://github.com/facebook/react/pull/27323)) * fix[devtools/extension]: fixed duplicating panels in firefox ([hoxyq](https://github.com/hoxyq) in [#27320](https://github.com/facebook/react/pull/27320))
39 lines
1.4 KiB
JSON
39 lines
1.4 KiB
JSON
{
|
|
"name": "react-devtools-core",
|
|
"version": "4.28.3",
|
|
"description": "Use react-devtools outside of the browser",
|
|
"license": "MIT",
|
|
"main": "./dist/backend.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react.git",
|
|
"directory": "packages/react-devtools-core"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"backend.js",
|
|
"standalone.js"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn build:backend && yarn build:standalone",
|
|
"build:backend": "cross-env NODE_ENV=production webpack --config webpack.backend.js",
|
|
"build:backend:fb": "cross-env NODE_ENV=production FEATURE_FLAG_TARGET=core/backend-fb webpack --config webpack.backend.js",
|
|
"build:standalone": "cross-env NODE_ENV=production webpack --config webpack.standalone.js",
|
|
"build:standalone:fb": "cross-env NODE_ENV=production FEATURE_FLAG_TARGET=core/standalone-fb webpack --config webpack.standalone.js",
|
|
"prepublish": "yarn run build",
|
|
"start:backend": "cross-env NODE_ENV=development webpack --config webpack.backend.js --watch",
|
|
"start:standalone": "cross-env NODE_ENV=development webpack --config webpack.standalone.js --watch"
|
|
},
|
|
"dependencies": {
|
|
"shell-quote": "^1.6.1",
|
|
"ws": "^7"
|
|
},
|
|
"devDependencies": {
|
|
"cross-env": "^3.1.4",
|
|
"process": "0.11.10",
|
|
"webpack": "^5.82.1",
|
|
"webpack-cli": "^5.1.1",
|
|
"workerize-loader": "^2.0.2"
|
|
}
|
|
}
|