@hot-updater/aws 0.13.3-rc.0 → 0.13.3
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/dist/iac/index.cjs +4 -2
- package/dist/iac/index.js +4 -2
- package/package.json +4 -4
package/dist/iac/index.cjs
CHANGED
|
@@ -9205,8 +9205,10 @@ var S3Manager = class {
|
|
|
9205
9205
|
});
|
|
9206
9206
|
await s3Client.createBucket({
|
|
9207
9207
|
Bucket: bucketName,
|
|
9208
|
-
|
|
9209
|
-
|
|
9208
|
+
...region === "us-east-1" ? {} : {
|
|
9209
|
+
CreateBucketConfiguration: {
|
|
9210
|
+
LocationConstraint: region
|
|
9211
|
+
}
|
|
9210
9212
|
}
|
|
9211
9213
|
});
|
|
9212
9214
|
f2.info(`Created S3 bucket: ${bucketName}`);
|
package/dist/iac/index.js
CHANGED
|
@@ -9217,8 +9217,10 @@ var S3Manager = class {
|
|
|
9217
9217
|
});
|
|
9218
9218
|
await s3Client.createBucket({
|
|
9219
9219
|
Bucket: bucketName,
|
|
9220
|
-
|
|
9221
|
-
|
|
9220
|
+
...region === "us-east-1" ? {} : {
|
|
9221
|
+
CreateBucketConfiguration: {
|
|
9222
|
+
LocationConstraint: region
|
|
9223
|
+
}
|
|
9222
9224
|
}
|
|
9223
9225
|
});
|
|
9224
9226
|
f2.info(`Created S3 bucket: ${bucketName}`);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hot-updater/aws",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.13.3
|
|
4
|
+
"version": "0.13.3",
|
|
5
5
|
"description": "React Native OTA solution for self-hosted",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
],
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@aws-sdk/cloudfront-signer": "3.772.0",
|
|
39
|
-
"@hot-updater/core": "0.13.3
|
|
40
|
-
"@hot-updater/js": "0.13.3
|
|
39
|
+
"@hot-updater/core": "0.13.3",
|
|
40
|
+
"@hot-updater/js": "0.13.3",
|
|
41
41
|
"@types/aws-lambda": "^8.10.147",
|
|
42
42
|
"@types/node": "^22.13.1",
|
|
43
43
|
"aws-sdk-client-mock": "^4.1.0",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@aws-sdk/client-ssm": "3.772.0",
|
|
57
57
|
"@aws-sdk/credential-providers": "3.772.0",
|
|
58
58
|
"@aws-sdk/lib-storage": "3.772.0",
|
|
59
|
-
"@hot-updater/plugin-core": "0.13.3
|
|
59
|
+
"@hot-updater/plugin-core": "0.13.3",
|
|
60
60
|
"aws-lambda": "1.0.7"
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|