-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
41 lines (38 loc) · 1.28 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
// Обязательная обёртка
module.exports = function(grunt) {
// Задачи
grunt.initConfig({
// Склеиваем
concat: {
main: {
src: [
'js/vendor/jquery-ui.min.js',
'js/vendor/jquery.*.js',
'js/*.js' // Все JS-файлы в папке
],
dest: 'js/build/scripts.js'
}
},
// Сжимаем
uglify: {
main: {
files: {
// Результат задачи concat
'js/build/scripts.min.js': '<%= concat.main.dest %>'
}
}
},
watch: {
concat: {
files: '<%= concat.main.src %>',
tasks: ['concat', 'uglify'] // Можно несколько: ['lint', 'concat']
}
}
});
// Загрузка плагинов, установленных с помощью npm install
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
// Задача по умолчанию
grunt.registerTask('default', ['concat', 'uglify', 'watch']);
};