appwrite-utils-cli 0.0.250 → 0.0.251

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.
@@ -109,6 +109,9 @@ export class ImportController {
109
109
  throw error;
110
110
  });
111
111
  }
112
+ else {
113
+ return Promise.resolve();
114
+ }
112
115
  }
113
116
  }
114
117
  })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "appwrite-utils-cli",
3
3
  "description": "Appwrite Utility Functions to help with database management, data conversion, data import, migrations, and much more. Meant to be used as a CLI tool, I do not recommend installing this in frontend environments.",
4
- "version": "0.0.250",
4
+ "version": "0.0.251",
5
5
  "main": "src/main.ts",
6
6
  "type": "module",
7
7
  "repository": {
@@ -172,6 +172,8 @@ export class ImportController {
172
172
  );
173
173
  throw error;
174
174
  });
175
+ } else {
176
+ return Promise.resolve();
175
177
  }
176
178
  }
177
179
  }