When installing devtools extensions in electron 41.1.1, I get this warning thrown in the console:
(node:12656) [DEP0147] DeprecationWarning: In future versions of Node.js, fs.rmdir(path, { recursive: true }) will be removed. Use fs.rm(path, { recursive: true }) instead
It seems that in downloadChromeExtension.ts, this
await fs.promises.rmdir(extensionFolder, {
recursive: true,
});
should be changed to this instead
await fs.promises.rm(extensionFolder, {
recursive: true,
});
When installing devtools extensions in electron 41.1.1, I get this warning thrown in the console:
It seems that in downloadChromeExtension.ts, this
should be changed to this instead