Closed Jexah closed 1 year ago
There was an issue where we were calling .promises on fs.promises and an error was being thrown.
.promises
fs.promises
const fs = require('fs').promises; ... await fs.promises.mkdir(...
Nice catch, merged it
There was an issue where we were calling
.promises
onfs.promises
and an error was being thrown.