-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
79 lines (76 loc) · 2.25 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
module.exports = function(grunt) {
grunt.initConfig({
watch: {
options: {
livereload: 8585
},
css: {
files: ['less/**/*.less'],
tasks: ['less', 'autoprefixer', 'csso']
},
html: {
files: ['debug/**/*.html']
},
js: {
files: ['src/**/*.js'],
tasks: ['uglify']
}
},
less: {
development: {
options: {
paths: ["less"]
},
files: {
"dist/DGSoundScreen.css": "less/main.less"
}
}
},
autoprefixer: {
options: {
browsers: ['last 2 versions', 'ie 9']
},
your_target: {
src: 'dist/DGSoundScreen.css',
dest: 'dist/DGSoundScreen.css'
}
},
csso: {
compress: {
options: {
report: 'gzip'
},
files: {
'dist/DGSoundScreen.min.css': ['dist/DGSoundScreen.css']
}
}
},
eslint: {
options:{
fix: true,
outputFile: 'eslint.log'
},
target: ['src/Soundscreen/src/**/*.js']
},
uglify: {
options: {
mangle: false
},
my_target: {
files: {
'src/Soundscreen/dist/Soundscreen.min.js': ['src/Soundscreen/src/**/*.js', 'src/Soundscreen/lang/**/*.js'],
'src/SoundscreenControl/dist/SoundscreenControl.min.js': ['src/SoundscreenControl/src/**/*.js', 'src/SoundscreenControl/lang/**/*.js'],
'dist/DGSoundscreen.js': ['src/**/dist/*.js']
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-csso');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-eslint');
grunt.registerTask('build', ['less', 'autoprefixer', 'csso', 'eslint', 'uglify', 'watch']);
grunt.registerTask('default', ['uglify', 'watch']);
};