Closed
Description
For example,
const installed = await installExtensions([REACT_DEVELOPER_TOOLS, REDUX_DEVTOOLS]);
console.log('installed:', installed);
will print
installed: Redux DevTools
whereas the jsdocs suggest it should return the names of all the extensions:
electron-devtools-installer/src/index.ts
Line 44 in 19fd4dd
It looks like this is because the reduce
in install
throws away previous string values:
electron-devtools-installer/src/index.ts
Line 64 in 19fd4dd