appwrite-utils-cli 0.0.8 → 0.0.9
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.
|
@@ -236,6 +236,7 @@ export class ImportController {
|
|
|
236
236
|
results.forEach((result) => {
|
|
237
237
|
if (result.status === "rejected") {
|
|
238
238
|
console.error("A process batch promise was rejected:", result.reason);
|
|
239
|
+
logger.error("An error occurred during creation: ", result.reason);
|
|
239
240
|
}
|
|
240
241
|
});
|
|
241
242
|
}
|
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.
|
|
4
|
+
"version": "0.0.9",
|
|
5
5
|
"main": "src/main.ts",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
@@ -396,6 +396,7 @@ export class ImportController {
|
|
|
396
396
|
results.forEach((result) => {
|
|
397
397
|
if (result.status === "rejected") {
|
|
398
398
|
console.error("A process batch promise was rejected:", result.reason);
|
|
399
|
+
logger.error("An error occurred during creation: ", result.reason);
|
|
399
400
|
}
|
|
400
401
|
});
|
|
401
402
|
}
|