-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
96 lines (86 loc) · 3.07 KB
/
Gruntfile.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
module.exports = function (grunt) {
// 1. Вся настройка находится здесь
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// 2. Настройка для объединения файлов находится тут
stylus: {
compile: {
options: {
compress: false,
paths: ['www/common/css/import']
},
files: {
'www/common/css/style.css': 'www/common/css/style.styl'
}
}
},
jshint: {
all: ['Gruntfile.js', 'www/common/js/style.js']
},
sprite: {
all: {
src: ['www/common/img/forsprites/*.png'],
destImg: 'www/common/img/sprite.png',
destCSS: 'www/common/css/sprites.styl',
imgPath: '../img/sprite/sprite.png',
algorithm: 'binary-tree',
padding: 2,
engine: 'pngsmith',
cssFormat: 'stylus',
cssTemplate: 'www/common/css/stylus.template.mustache',
imgOpts: {
'format': 'png'
}
}
},
// imagemin: {
// dynamic: {
// files: [{
// expand: true,
// cwd: 'www/common/img/simple/',
// src: ['*.{png,jpg,gif}'],
// dest: 'www/common/img/'
// }]
// }
// },
watch: {
css: {
files: ['www/common/css/*.styl'],
tasks: ['stylus'],
options: {
spawn: false,
livereload: true
}
},
scripts: {
files: ['www/common/js/*.js'],
tasks: ['jshint'],
options: {
interrupt: true,
}
},
sprite: {
files: ['www/common/img/forsprites/*.{png,jpg,gif}'],
tasks: ['sprite:all'],
options: {
event: ['added']
}
}
// images: {
// files: ['www/common/img/simple/*.{png,jpg,gif}'],
// tasks: ['imagemin'],
// options: {
// spawn: false,
// }
// }
}
});
// 3. Тут мы указываем Grunt, что хотим использовать этот плагин
grunt.loadNpmTasks('grunt-contrib-stylus');
grunt.loadNpmTasks('grunt-spritesmith');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jshint');
//grunt.loadNpmTasks('grunt-contrib-imagemin');
// 4. Указываем, какие задачи выполняются, когда мы вводим «grunt» в терминале
grunt.registerTask('default', ['stylus', 'jshint', 'sprite', 'watch']);
};