smoonb 0.0.30 → 0.0.31

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.30",
3
+ "version": "0.0.31",
4
4
  "description": "Complete Supabase backup and migration tool - EXPERIMENTAL VERSION - USE AT YOUR OWN RISK",
5
5
  "preferGlobal": false,
6
6
  "preventGlobalInstall": true,
@@ -358,7 +358,7 @@ async function backupEdgeFunctionsWithDocker(projectId, accessToken, backupDir)
358
358
  name: func.name,
359
359
  slug: func.name,
360
360
  version: func.version || 'unknown',
361
- files: await fs.access(targetDir).then(() => await fs.readdir(targetDir)).catch(() => [])
361
+ files: await fs.access(targetDir).then(() => fs.readdir(targetDir)).catch(() => [])
362
362
  });
363
363
  } else {
364
364
  throw new Error('Diretório não encontrado após download');