gulp-s3
gulp-s3 copied to clipboard
Newly added regions only supports v4 signatures. What is sufficient to support this needs to be added to gulp-s3 since many will be using new regions in future. The lack...
Hello! First of all i wish to thank you guys for the great project. Sometimes, when you got any problem with your network, and your upload fails, you can't retry...
If you are uploading the same / similar files to multiple buckets, you can't tell which bucket failed
This PR is to add the ability to add a --dry flag to gulp commands in order to preview upload paths to s3
I have removed the hard coded x-amz-acl header (set to public-read) we should not assume that the credentials being used have that permission. If it is something that needs to...
Using this to deploy directory-versioned assets, so nice to modify upload path on per-file basis.
I added a way for users to upload directories to s3 rather than just the parent directories of individual files. For example. If I have a css file(s), *.css, and...
``` var aws = JSON.parse(fs.readFileSync('./aws.json')), options = { uploadPath: '/site/js' }; gulp.src('./dist/file.js').pipe(s3(aws, options)); ``` Results in the file being uploaded as: `/site/jsfile.js` instead of `/site/js/file.js`.