mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-08 08:32:31 -06:00
22 lines
279 B
JavaScript
22 lines
279 B
JavaScript
module.exports = function(grunt) {
|
|
|
|
grunt.initConfig({
|
|
svg2png: {
|
|
all: {
|
|
options:{
|
|
size: 256
|
|
},
|
|
files: [
|
|
{
|
|
src: ['icons/*.svg']
|
|
}
|
|
]
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-svg2png');
|
|
|
|
grunt.registerTask('default', ['svg2png']);
|
|
|
|
} |