UNPKG

275 BJavaScriptView Raw
1'use strict';
2/**
3 * svg-sprite module
4 * @module svg-sprite
5 * @see module:index
6 */
7const gulp = require('gulp');
8const shell = require('gulp-shell');
9
10gulp.task('svg-sprite', shell.task([
11 './node_modules/.bin/svg-icon build -s lib/data/icons.json -t dist -n xmind'
12]));