forked from juliakloiber/superrr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile-spritesheet.js
67 lines (61 loc) · 1.66 KB
/
gulpfile-spritesheet.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
var basePaths = {
src: 'assets/svg-build/',
dest: 'assets/svg-build/'
};
var paths = {
images: {},
sprite: {
src: basePaths.src + 'sprite/*',
svg: 'spritesheet.svg',
css: '../../' + basePaths.src + 'sass/src/_sprite.scss'
},
templates: {
src: basePaths.src + 'tpl/'
}
};
/*
Let the magic begin
*/
var gulp = require('gulp');
var $ = {
gutil: require('gulp-util'),
svgSprite: require('gulp-svg-sprite'),
size: require('gulp-size')
};
var changeEvent = function(evt) {
$.gutil.log('File', $.gutil.colors.cyan(evt.path.replace(new RegExp('/.*(?=/' + basePaths.src + ')/'), '')), 'was', $.gutil.colors.magenta(evt.type));
};
gulp.task('sprite', function () {
return gulp.src(paths.sprite.src)
.pipe($.svgSprite({
shape: {
spacing: {
padding: 5
}
},
mode: {
css: {
dest: "./",
layout: "diagonal",
sprite: paths.sprite.svg,
bust: false,
render: {
scss: {
dest: "sass/_sprite.scss",
template: basePaths.src + "/tpl/sprite-template.scss"
}
}
}
},
variables: {
mapname: "icons"
}
}))
.pipe(gulp.dest(basePaths.dest));
});
gulp.task('watch', function(){
gulp.watch(paths.sprite.src, ['sprite']).on('change', function(evt) {
changeEvent(evt);
});
});
gulp.task('default', ['sprite']);