* switch from custom eslint config to standard + prettier * fix new standard eslint violations * add editorconfig file * auto-fix all other violations * update lint yarn script * remove jshint comment
22 lines
463 B
JavaScript
22 lines
463 B
JavaScript
module.exports = {
|
|
upload_archives: {
|
|
files: [
|
|
{
|
|
expand: true,
|
|
cwd: '<%= distDir %>/archives',
|
|
src: '*',
|
|
dest: 'elasticsearch/elasticsearch-js/',
|
|
},
|
|
],
|
|
options: {
|
|
accessKeyId: process.env.AWS_KEY,
|
|
secretAccessKey: process.env.AWS_SECRET,
|
|
bucket: 'download.elasticsearch.org',
|
|
access: 'public-read',
|
|
params: {
|
|
ContentDisposition: 'attachment',
|
|
},
|
|
},
|
|
},
|
|
};
|