@tstdl/base 0.93.103 → 0.93.104

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.
@@ -49,6 +49,9 @@ let S3ObjectStorage = S3ObjectStorage_1 = class S3ObjectStorage extends ObjectSt
49
49
  await this.client.makeBucket(this.bucket, region ?? '', { ObjectLocking: options?.objectLocking ?? false });
50
50
  }
51
51
  async configureBucket(configuration) {
52
+ if (isUndefined(configuration.lifecycle)) {
53
+ return;
54
+ }
52
55
  let currentLifecycle = null;
53
56
  try {
54
57
  currentLifecycle = await this.client.getBucketLifecycle(this.bucket);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.93.103",
3
+ "version": "0.93.104",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"