-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
77 lines (74 loc) · 2.5 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
module.exports = function (grunt) {
grunt.initConfig({
concat: {
options: {
separator: ';'
},
dist: {
src: [
'vendor/jquery/dist/jquery.js',
//'vendor/chosen/chosen.jquery.js',
'vendor/select2/select2.js',
'vendor/select2/select2_locale_ru.js',
'vendor/social-likes/src/social-likes.js',
'vendor/jquery-maskedinput/src/jquery.maskedinput.js',
'assets/js/src/main.js'
],
dest: 'assets/js/script.js'
}
},
less: {
dist: {
options: {
compress: true,
yuicompress: true,
optimization: 2
},
files: {
// target.css file: source.less file
"assets/css/style.css": "assets/css/src/style.less"
}
}
},
uglify: {
options: {
mangle: false // Use if you want the names of your functions and variables unchanged
},
dist: {
files: {
'assets/js/script.js': 'assets/js/script.js',
}
}
},
watch: {
styles: {
// Which files to watch (all .less files recursively in the less directory)
files: ['assets/css/src/*.less'],
tasks: ['less'],
options: {
nospawn: true
}
},
scripts: {
files: [
'vendor/jquery/dist/jquery.min.js',
//'vendor/chosen/chosen.jquery.js',
'vendor/select2/select2.min.js',
'vendor/select2/select2_locale_ru.js',
'vendor/social-likes/src/social-likes.js',
'vendor/jquery-maskedinput/src/jquery.maskedinput.min.js',
'assets/js/src/main.js'
],
tasks: ['concat', 'uglify'],
options: {
nospawn: true
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.registerTask('default', ['watch']);
};