mirror of
https://github.com/scratchfoundation/scratch-desktop.git
synced 2024-12-23 06:02:30 -05:00
Add React dev tools
This commit is contained in:
parent
1de7228a8c
commit
99b172d893
3 changed files with 13 additions and 1 deletions
|
@ -20,6 +20,7 @@
|
||||||
"copy-webpack-plugin": "^4.5.2",
|
"copy-webpack-plugin": "^4.5.2",
|
||||||
"electron": "^3.0.2",
|
"electron": "^3.0.2",
|
||||||
"electron-builder": "^20.28.1",
|
"electron-builder": "^20.28.1",
|
||||||
|
"electron-devtools-installer": "^2.2.4",
|
||||||
"electron-webpack": "^2.1.2",
|
"electron-webpack": "^2.1.2",
|
||||||
"eslint": "^5.0.1",
|
"eslint": "^5.0.1",
|
||||||
"eslint-config-scratch": "^5.0.0",
|
"eslint-config-scratch": "^5.0.0",
|
||||||
|
|
|
@ -2,6 +2,8 @@ import {app, BrowserWindow} from 'electron';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import {format as formatUrl} from 'url';
|
import {format as formatUrl} from 'url';
|
||||||
|
|
||||||
|
import installExtension, {REACT_DEVELOPER_TOOLS} from 'electron-devtools-installer';
|
||||||
|
|
||||||
const isDevelopment = process.env.NODE_ENV !== 'production';
|
const isDevelopment = process.env.NODE_ENV !== 'production';
|
||||||
|
|
||||||
// global reference to mainWindow (necessary to prevent window from being garbage collected)
|
// global reference to mainWindow (necessary to prevent window from being garbage collected)
|
||||||
|
@ -16,6 +18,10 @@ const createMainWindow = () => {
|
||||||
|
|
||||||
if (isDevelopment) {
|
if (isDevelopment) {
|
||||||
window.webContents.openDevTools();
|
window.webContents.openDevTools();
|
||||||
|
installExtension(REACT_DEVELOPER_TOOLS);
|
||||||
|
// TODO: add logging package and bring back the lines below
|
||||||
|
// .then(name => console.log(`Added Extension: ${name}`))
|
||||||
|
// .catch(err => console.log('An error occurred: ', err));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isDevelopment) {
|
if (isDevelopment) {
|
||||||
|
|
|
@ -4,5 +4,10 @@ module.exports = {
|
||||||
browser: true,
|
browser: true,
|
||||||
node: true
|
node: true
|
||||||
},
|
},
|
||||||
extends: ['scratch', 'scratch/es6', 'scratch/react']
|
extends: ['scratch', 'scratch/es6', 'scratch/react'],
|
||||||
|
settings: {
|
||||||
|
react: {
|
||||||
|
version: '16.2' // Prevent 16.3 lifecycle method errors
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue