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.

29 lines
475 B

/**
* Css lint grunt task for CARTO.js
*
*/
module.exports = {
task: function() {
return {
dist: {
options: {
check: 'gzip'
}
},
themes: {
options: {
banner: '/* CartoDB.css minified version: <%= version %> */',
check: 'gzip'
},
files: {
'<%= dist %>/internal/themes/css/cartodb.css': ['<%= dist %>/internal/themes/css/cartodb.css']
}
}
}
}
}