smoonb 0.0.28 → 0.0.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smoonb",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "Complete Supabase backup and migration tool - EXPERIMENTAL VERSION - USE AT YOUR OWN RISK",
5
5
  "preferGlobal": false,
6
6
  "preventGlobalInstall": true,
@@ -706,7 +706,7 @@ ORDER BY rolname;
706
706
  await fs.writeFile(jsonFile, JSON.stringify(result, null, 2));
707
707
 
708
708
  // Limpar arquivo temporário
709
- await fs.unlink(sqlFile);
709
+ await fs.promises.unlink(sqlFile);
710
710
 
711
711
  const stats = fs.statSync(jsonFile);
712
712
  const sizeKB = (stats.size / 1024).toFixed(1);