fix(dependencies): Update dependencies and improve bucket retrieval logging

This commit is contained in:
2024-07-28 12:46:39 +02:00
parent 99c3935d0c
commit 4647181807
5 changed files with 846 additions and 797 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartbucket',
version: '3.0.21',
version: '3.0.22',
description: 'A TypeScript library offering simple and cloud-agnostic object storage with advanced features like bucket creation, file and directory management, and data streaming.'
}

View File

@ -24,6 +24,7 @@ export class Bucket {
console.log(`Taking this as base for new Bucket instance`);
return new this(smartbucketRef, bucketNameArg);
} else {
console.log(`did not find bucket by name: ${bucketNameArg}`);
return null;
}
}