carto.js/grunt/tasks/copy.js
2020-06-13 18:34:34 +08:00

13 lines
259 B
JavaScript

module.exports = {
task: function () {
return {
fonts: {
expand: true,
cwd: 'node_modules/cartoassets/src/fonts/',
src: [ '**/*.{eot,ttf,woff,svg}' ],
dest: '<%= dist %>/internal/themes/fonts'
}
};
}
};