File tree 5 files changed +5
-26
lines changed
packages/react-devtools-extensions 5 files changed +5
-26
lines changed Original file line number Diff line number Diff line change 32
32
" main.html" ,
33
33
" panel.html" ,
34
34
" build/react_devtools_backend.js" ,
35
- " build/renderer.js" ,
36
- " build/background.js.map" ,
37
- " build/contentScript.js.map" ,
38
- " build/injectGlobalHook.js.map" ,
39
- " build/main.js.map" ,
40
- " build/panel.js.map" ,
41
- " build/renderer.js.map" ,
42
- " build/react_devtools_backend.js.map"
35
+ " build/renderer.js"
43
36
],
44
37
45
38
"background" : {
Original file line number Diff line number Diff line change 32
32
" main.html" ,
33
33
" panel.html" ,
34
34
" build/react_devtools_backend.js" ,
35
- " build/renderer.js" ,
36
- " build/background.js.map" ,
37
- " build/contentScript.js.map" ,
38
- " build/injectGlobalHook.js.map" ,
39
- " build/main.js.map" ,
40
- " build/panel.js.map" ,
41
- " build/renderer.js.map" ,
42
- " build/react_devtools_backend.js.map"
35
+ " build/renderer.js"
43
36
],
44
37
45
38
"background" : {
Original file line number Diff line number Diff line change 37
37
" main.html" ,
38
38
" panel.html" ,
39
39
" build/react_devtools_backend.js" ,
40
- " build/renderer.js" ,
41
- " build/background.js.map" ,
42
- " build/contentScript.js.map" ,
43
- " build/injectGlobalHook.js.map" ,
44
- " build/main.js.map" ,
45
- " build/panel.js.map" ,
46
- " build/renderer.js.map" ,
47
- " build/react_devtools_backend.js.map"
40
+ " build/renderer.js"
48
41
],
49
42
50
43
"background" : {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const DEVTOOLS_VERSION = getVersionString();
18
18
19
19
module . exports = {
20
20
mode : __DEV__ ? 'development' : 'production' ,
21
- devtool : __DEV__ ? 'cheap-module-eval-source-map' : 'source-map' ,
21
+ devtool : __DEV__ ? 'cheap-module-eval-source-map' : false ,
22
22
entry : {
23
23
backend : './src/backend.js' ,
24
24
} ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const DEVTOOLS_VERSION = getVersionString();
19
19
20
20
module . exports = {
21
21
mode : __DEV__ ? 'development' : 'production' ,
22
- devtool : __DEV__ ? 'cheap-module-eval-source-map' : 'source-map' ,
22
+ devtool : __DEV__ ? 'cheap-module-eval-source-map' : false ,
23
23
entry : {
24
24
background : './src/background.js' ,
25
25
contentScript : './src/contentScript.js' ,
You can’t perform that action at this time.
0 commit comments