carto.js/grunt/tasks/clean.js

22 lines
336 B
JavaScript
Raw Permalink Normal View History

2020-06-13 18:34:34 +08:00
/**
* Clean grunt task for CARTO.js
*
*/
module.exports = {
task: function() {
return {
dist_internal: {
files: [{
dot: true,
src: [
'.sass-cache',
'.tmp',
'<%= dist %>/internal',
'!<%= dist %>/.git*'
]
}]
}
}
}
}