@awsless/awsless 0.0.48 → 0.0.49
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.
|
@@ -28340,13 +28340,14 @@ const listLocalFiles = async (localDirectory)=>{
|
|
|
28340
28340
|
});
|
|
28341
28341
|
const files = [];
|
|
28342
28342
|
await Promise.all(paths.map(async (key)=>{
|
|
28343
|
-
const
|
|
28343
|
+
const file = join$1(localDirectory, key);
|
|
28344
|
+
const stats = await stat(file);
|
|
28344
28345
|
if (!stats.isFile()) {
|
|
28345
28346
|
return;
|
|
28346
28347
|
}
|
|
28347
28348
|
files.push({
|
|
28348
28349
|
key,
|
|
28349
|
-
etag: await createETag(
|
|
28350
|
+
etag: await createETag(file)
|
|
28350
28351
|
});
|
|
28351
28352
|
}));
|
|
28352
28353
|
return files;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awsless/awsless",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.49",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"@awsless/lambda": "^0.0.6",
|
|
27
27
|
"@awsless/sns": "^0.0.6",
|
|
28
|
-
"@awsless/
|
|
29
|
-
"@awsless/
|
|
28
|
+
"@awsless/sqs": "^0.0.6",
|
|
29
|
+
"@awsless/ssm": "^0.0.7"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@aws-sdk/client-cloudformation": "^3.369.0",
|