This commit is contained in:
Brian Vaughn
2019-08-13 18:12:19 -07:00
parent f7afe1b864
commit 51626ae2f9
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ const container = ((document.getElementById('devtools'): any): HTMLElement);
let isTestAppMounted = true;
const mountButton = ((document.getElementById(
'mountButton'
'mountButton',
): any): HTMLButtonElement);
mountButton.addEventListener('click', function() {
if (isTestAppMounted) {
@@ -58,7 +58,7 @@ inject('dist/app.js', () => {
showTabBar: true,
showWelcomeToTheNewDevToolsDialog: true,
warnIfLegacyBackendDetected: true,
})
}),
);
},
@@ -32,7 +32,7 @@ const config = {
alias: {
'react-devtools-inline': resolve(
root,
'packages/react-devtools-inline/src/'
'packages/react-devtools-inline/src/',
),
src: resolve(root, 'src'),
},