22 lines
336 B
JavaScript
22 lines
336 B
JavaScript
|
|
/**
|
|
* Fastly invalidation grunt task for CARTO.js
|
|
*
|
|
*/
|
|
|
|
module.exports = {
|
|
task: function() {
|
|
return {
|
|
options: {
|
|
key: '<%= secrets.FASTLY_API_KEY %>'
|
|
},
|
|
dist: {
|
|
options: {
|
|
purgeAll: true,
|
|
serviceId: '<%= secrets.FASTLY_CARTODB_SERVICE %>'
|
|
}
|
|
},
|
|
}
|
|
}
|
|
}
|