cartodb-4.42/lib/build/tasks/clean.js

20 lines
285 B
JavaScript
Raw Normal View History

2024-04-06 13:25:13 +08:00
/**
* Clean task config
*/
exports.task = function () {
return {
options: {
force: true
},
dist: [
'.grunt',
'.sass-cache',
'tmp/sass',
'lib/build/app_config.js',
'<%= assets_dir %>',
'<%= editor_assets_dir %>'
]
};
};