electron-userland / electron-installer-dmg

Create DMG installers for your electron apps using appdmg.
https://github.com/electron-userland/electron-installer-dmg
Apache License 2.0
316 stars 39 forks source link

test: fix `fs.rmdir` deprecation warning #212

Closed erickzhao closed 2 months ago

erickzhao commented 2 months ago
(node:23706) [DEP0147] DeprecationWarning: In future versions of Node.js, fs.rmdir(path, { recursive: true }) will be removed. Use fs.rm(path, { recursive: true }) instead
(Use `node --trace-deprecation ...` to show where the warning was created)

Node 16: https://nodejs.org/api/deprecations.html#DEP0147

Supersedes #133