UNPKG

svg-sprite-generator

Version:
15 lines (12 loc) 293 B
module.exports = function(grunt) { grunt.initConfig({ exec: { babel: { command: 'babel src -d lib', stdout: true } } }); grunt.loadNpmTasks('grunt-exec'); grunt.registerTask('default', ['exec']); }