You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
555 B

/**
* Watch grunt task for CARTO.js
*
*/
module.exports = {
task: function () {
return {
scss: {
files: ['themes/scss/**/*.scss'],
tasks: ['sass', 'concat:themes', 'cssmin:themes'],
options: {
spawn: false,
livereload: 35730
}
},
livereload: {
options: {
livereload: '<%= connect.server.options.livereload %>'
},
files: [
'.tmp/css/**/*.css',
'<%= dist %>/internal/themes/css/cartodb.css'
]
}
};
}
};