-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doesn't do anything #121
Comments
My current configuration are s3: {
options: {
key: '<%= aws.key %>',
secret: '<%= aws.secret %>',
bucket: '<%= aws.bucket %>',
access: 'public-read',
region: 'ap-southeast-1'
},
prod: {
// These options override the defaults
options: {
maxOperations: 10
},
// Files to be uploaded.
sync: [{
src: 'dist/**/*.*',
dest: 'static/',
rel: 'dist',
options: {
gzip: true,
gzipExclude: ['.jpg', '.jpeg', '.png', '.gif', '.woff', '.wav', '.webp']
}
}]
}
} and default grunt task is grunt.registerTask('default', [
'clean:dist',
'less:build',
'cssmin',
'uglify',
'copy:dist',
'copy:template',
'requirejs:dist',
'useminPrepare',
'rev',
'usemin',
'cdn',
'clean:minified',
's3:prod'
]); |
Same boat over here, I'm already trying a couple options. I'll let you know if something comes up. |
Confirmed, same with me. |
Yup, does nothing here too |
run grunt s3 -v to see if module is able to select any file. |
its not picking up any files as well. I tried absolute/relate/yeoman paths nothing seems to work |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I try to run s3 task, along with other tasks, It doesn't do anything.
But if I run this task by specifically mentioning task name, it runs perfectly fine.
The text was updated successfully, but these errors were encountered: