@alexbainter/s3-sync
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -25,3 +25,3 @@ 'use strict'; | ||
const mutableFilenameSet = new Set(mutableFilenames); | ||
const invalidationPaths = uploadedFiles.map((filename) => | ||
const invalidationPaths = uploadedFiles.filter((filename) => | ||
mutableFilenameSet.has(filename) | ||
@@ -28,0 +28,0 @@ ); |
{ | ||
"name": "@alexbainter/s3-sync", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Transfer files to and from S3", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -88,1 +88,13 @@ # @alexbainter/s3-sync | ||
- Environment variable: `S3_SYNC_DRY_RUN=<true/false>` | ||
## AWS authentication | ||
See [Setting Credentials is Node.js](https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/setting-credentials-node.html) from AWS for all authentication options. | ||
### Environment variables | ||
- `AWS_ACCESS_KEY_ID=<access key id>` | ||
- `AWS_SECRET_ACCESS_KEY=<secret access key>` | ||
See [Loading Credentials in Node.js from Environment Variables | ||
](https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/loading-node-credentials-environment.html) from AWS for more information. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19240
100