1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
rsync: {
options: {
args: ['--verbose'],
exclude: ['.git*', '*.scss', 'node_modules'],
recursive: true
},
prod: {
options: {
src: '<%= config.dist %>/',
dest: '/home/user/www/website',
host: 'user@server.com',
syncDestIgnoreExcl: true
}
}
}
|